mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 03:43:44 +00:00
* Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
This commit is contained in:
parent
28d8ba0d3e
commit
0ee830d7a4
23049 changed files with 0 additions and 1313991 deletions
120
sdk/include/psdk/propvarutil.h
Normal file
120
sdk/include/psdk/propvarutil.h
Normal file
|
@ -0,0 +1,120 @@
|
|||
/*
|
||||
* Copyright 2008 James Hawkins for CodeWeavers
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_PROPVARUTIL_H
|
||||
#define __WINE_PROPVARUTIL_H
|
||||
|
||||
#include <shtypes.h>
|
||||
#include <shlwapi.h>
|
||||
|
||||
enum tagPROPVAR_CHANGE_FLAGS
|
||||
{
|
||||
PVCHF_DEFAULT = 0x00000000,
|
||||
PVCHF_NOVALUEPROP = 0x00000001,
|
||||
PVCHF_ALPHABOOL = 0x00000002,
|
||||
PVCHF_NOUSEROVERRIDE = 0x00000004,
|
||||
PVCHF_LOCALBOOL = 0x00000008,
|
||||
PVCHF_NOHEXSTRING = 0x00000010,
|
||||
};
|
||||
|
||||
typedef int PROPVAR_CHANGE_FLAGS;
|
||||
|
||||
enum tagPROPVAR_COMPARE_UNIT
|
||||
{
|
||||
PVCU_DEFAULT = 0x00000000,
|
||||
PVCU_SECOND = 0x00000001,
|
||||
PVCU_MINUTE = 0x00000002,
|
||||
PVCU_HOUR = 0x00000003,
|
||||
PVCU_DAY = 0x00000004,
|
||||
PVCU_MONTH = 0x00000005,
|
||||
PVCU_YEAR = 0x00000006,
|
||||
};
|
||||
|
||||
typedef int PROPVAR_COMPARE_UNIT;
|
||||
|
||||
enum tagPROPVAR_COMPARE_FLAGS
|
||||
{
|
||||
PVCF_DEFAULT = 0x00000000,
|
||||
PVCF_TREATEMPTYASGREATERTHAN = 0x00000001,
|
||||
PVCF_USESTRCMP = 0x00000002,
|
||||
PVCF_USESTRCMPC = 0x00000004,
|
||||
PVCF_USESTRCMPI = 0x00000008,
|
||||
PVCF_USESTRCMPIC = 0x00000010,
|
||||
};
|
||||
|
||||
typedef int PROPVAR_COMPARE_FLAGS;
|
||||
|
||||
HRESULT WINAPI PropVariantChangeType(PROPVARIANT *ppropvarDest, REFPROPVARIANT propvarSrc,
|
||||
PROPVAR_CHANGE_FLAGS flags, VARTYPE vt);
|
||||
HRESULT WINAPI InitPropVariantFromGUIDAsString(REFGUID guid, PROPVARIANT *ppropvar);
|
||||
HRESULT WINAPI InitVariantFromGUIDAsString(REFGUID guid, VARIANT *pvar);
|
||||
HRESULT WINAPI InitPropVariantFromBuffer(const VOID *pv, UINT cb, PROPVARIANT *ppropvar);
|
||||
HRESULT WINAPI InitVariantFromBuffer(const VOID *pv, UINT cb, VARIANT *pvar);
|
||||
HRESULT WINAPI PropVariantToGUID(const PROPVARIANT *ppropvar, GUID *guid);
|
||||
HRESULT WINAPI VariantToGUID(const VARIANT *pvar, GUID *guid);
|
||||
INT WINAPI PropVariantCompareEx(REFPROPVARIANT propvar1, REFPROPVARIANT propvar2,
|
||||
PROPVAR_COMPARE_UNIT uint, PROPVAR_COMPARE_FLAGS flags);
|
||||
|
||||
HRESULT WINAPI PropVariantToInt16(REFPROPVARIANT propvarIn, SHORT *ret);
|
||||
HRESULT WINAPI PropVariantToInt32(REFPROPVARIANT propvarIn, LONG *ret);
|
||||
HRESULT WINAPI PropVariantToInt64(REFPROPVARIANT propvarIn, LONGLONG *ret);
|
||||
HRESULT WINAPI PropVariantToUInt16(REFPROPVARIANT propvarIn, USHORT *ret);
|
||||
HRESULT WINAPI PropVariantToUInt32(REFPROPVARIANT propvarIn, ULONG *ret);
|
||||
HRESULT WINAPI PropVariantToUInt64(REFPROPVARIANT propvarIn, ULONGLONG *ret);
|
||||
|
||||
HRESULT WINAPI PropVariantToStringAlloc(REFPROPVARIANT propvarIn, WCHAR **ret);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
HRESULT InitPropVariantFromBoolean(BOOL fVal, PROPVARIANT *ppropvar);
|
||||
HRESULT InitPropVariantFromString(PCWSTR psz, PROPVARIANT *ppropvar);
|
||||
HRESULT InitPropVariantFromInt64(LONGLONG llVal, PROPVARIANT *ppropvar);
|
||||
|
||||
#ifndef NO_PROPVAR_INLINES
|
||||
|
||||
inline HRESULT InitPropVariantFromBoolean(BOOL fVal, PROPVARIANT *ppropvar)
|
||||
{
|
||||
ppropvar->vt = VT_BOOL;
|
||||
ppropvar->boolVal = fVal ? VARIANT_TRUE : VARIANT_FALSE;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
inline HRESULT InitPropVariantFromString(PCWSTR psz, PROPVARIANT *ppropvar)
|
||||
{
|
||||
HRESULT hres;
|
||||
|
||||
hres = SHStrDupW(psz, &ppropvar->pwszVal);
|
||||
if(SUCCEEDED(hres))
|
||||
ppropvar->vt = VT_LPWSTR;
|
||||
else
|
||||
PropVariantInit(ppropvar);
|
||||
|
||||
return hres;
|
||||
}
|
||||
|
||||
inline HRESULT InitPropVariantFromInt64(LONGLONG llVal, PROPVARIANT *ppropvar)
|
||||
{
|
||||
ppropvar->vt = VT_I8;
|
||||
ppropvar->hVal.QuadPart = llVal;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_PROPVARUTIL_H */
|
Loading…
Add table
Add a link
Reference in a new issue