svn path=/trunk/; revision=34414
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
-<module name="devenum" type="win32dll" baseaddress="${BASEADDRESS_DEVENUM}" installbase="system32" installname="devenum.dll" allowwarnings="true" unicode="yes">
+<module name="devenum" type="win32dll" baseaddress="${BASEADDRESS_DEVENUM}" installbase="system32" installname="devenum.dll" unicode="yes">
<!-- Won't load correctly in ReactOS yet autoregister infsection="OleControlDlls" type="DllRegisterServer" -->
<importlibrary definition="devenum.spec.def" />
<include base="devenum">.</include>
typedef struct
{
IEnumMonikerVtbl *lpVtbl;
- DWORD ref;
+ LONG ref;
DWORD index;
HKEY hkey;
} EnumMonikerImpl;
{
IMonikerVtbl *lpVtbl;
- ULONG ref;
+ LONG ref;
HKEY hkey;
} MediaCatMoniker;
typedef struct
{
IPropertyBagVtbl *lpVtbl;
- DWORD ref;
+ LONG ref;
HKEY hkey;
} RegPropBagImpl;
IErrorLog* pErrorLog)
{
LPVOID pData = NULL;
- LONG received;
+ DWORD received;
DWORD type = 0;
RegPropBagImpl *This = (RegPropBagImpl *)iface;
HRESULT res = S_OK;