Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PropVariantConversions.h « Windows « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68ad9612924783dfca2d1b9fb71d594f5597be08 (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/MyString.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