summaryrefslogtreecommitdiffstats
path: root/other-licenses/7zstub/src/Windows/PropVariantConversions.h
blob: ea7e72417e92c327b9aff56755c64d45f45c8b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Windows/PropVariantConversions.h

#ifndef __PROPVARIANTCONVERSIONS_H
#define __PROPVARIANTCONVERSIONS_H

#include "Common/Types.h"
#include "Common/String.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 &propVariant);
UInt64 ConvertPropVariantToUInt64(const PROPVARIANT &propVariant);

#endif