File: PropVariantConversions.h

package info (click to toggle)
libphysfs 2.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,480 kB
  • sloc: cpp: 30,946; ansic: 27,446; cs: 4,374; java: 3,077; makefile: 798; ruby: 461; perl: 59; sh: 8
file content (14 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (11)
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