1baa3858d3f5d128a5c8466b700098109edcad5f2repo sync// PropIDUtils.h
2baa3858d3f5d128a5c8466b700098109edcad5f2repo sync
3baa3858d3f5d128a5c8466b700098109edcad5f2repo sync#ifndef __PROPID_UTILS_H
4baa3858d3f5d128a5c8466b700098109edcad5f2repo sync#define __PROPID_UTILS_H
5baa3858d3f5d128a5c8466b700098109edcad5f2repo sync
6cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbecky#include "../../../Common/MyString.h"
7baa3858d3f5d128a5c8466b700098109edcad5f2repo sync
8cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbecky// provide at least 64 bytes for buffer including zero-end
9cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbeckyvoid ConvertPropertyToShortString(char *dest, const PROPVARIANT &propVariant, PROPID propID, bool full = true) throw();
10cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbeckyvoid ConvertPropertyToString(UString &dest, const PROPVARIANT &propVariant, PROPID propID, bool full = true);
11cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbecky
12cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbeckybool ConvertNtReparseToString(const Byte *data, UInt32 size, UString &s);
13cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbeckyvoid ConvertNtSecureToString(const Byte *data, UInt32 size, AString &s);
14cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbeckybool CheckNtSecure(const Byte *data, UInt32 size);
15cd66d540cead3f8200b0c73bad9c276d67896c3dDavid Srbeckyvoid ConvertWinAttribToString(char *s, UInt32 wa);
16baa3858d3f5d128a5c8466b700098109edcad5f2repo sync
17baa3858d3f5d128a5c8466b700098109edcad5f2repo sync#endif
18