mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
15 lines
515 B
C
Executable File
15 lines
515 B
C
Executable File
// Windows/PropVariantConversions.h
|
|
|
|
#ifndef __PROP_VARIANT_CONVERSIONS_H
|
|
#define __PROP_VARIANT_CONVERSIONS_H
|
|
|
|
#include "Common/MyString.h"
|
|
#include "Common/Types.h"
|
|
|
|
bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeconds = true);
|
|
UString ConvertFileTimeToString(const FILETIME &ft, bool includeTime = true, bool includeSeconds = true);
|
|
UString ConvertPropVariantToString(const PROPVARIANT &prop);
|
|
UInt64 ConvertPropVariantToUInt64(const PROPVARIANT &prop);
|
|
|
|
#endif
|