mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 04:07:08 -06:00
18 lines
502 B
C
Executable File
18 lines
502 B
C
Executable File
// Windows/PropVariantConversions.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __PROPVARIANTCONVERSIONS_H
|
|
#define __PROPVARIANTCONVERSIONS_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
// CSysString ConvertFileTimeToString(const FILETIME &fileTime, bool includeTime = true);
|
|
UString ConvertFileTimeToString2(const FILETIME &fileTime, bool includeTime = true,
|
|
bool includeSeconds = true);
|
|
UString ConvertPropVariantToString(const PROPVARIANT &propVariant);
|
|
|
|
UINT64 ConvertPropVariantToUINT64(const PROPVARIANT &propVariant);
|
|
|
|
#endif
|