mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 06:07:05 -06:00
13 lines
282 B
C
Executable File
13 lines
282 B
C
Executable File
// PropIDUtils.h
|
|
|
|
#ifndef __PROPID_UTILS_H
|
|
#define __PROPID_UTILS_H
|
|
|
|
#include "Common/MyString.h"
|
|
#include "Common/Types.h"
|
|
|
|
void ConvertUInt32ToHex(UInt32 value, wchar_t *s);
|
|
UString ConvertPropertyToString(const PROPVARIANT &propVariant, PROPID propID, bool full = true);
|
|
|
|
#endif
|