Module: wine Branch: master Commit: ae6f5616cb3dabaf47e3b48602db976d5ba6b0e7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ae6f5616cb3dabaf47e3b48602...
Author: Juan Lang juan.lang@gmail.com Date: Tue Sep 18 09:47:21 2007 -0700
setupapi: Correct type to match PSDK.
---
include/setupapi.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/setupapi.h b/include/setupapi.h index 60a794b..8bb2c3f 100644 --- a/include/setupapi.h +++ b/include/setupapi.h @@ -213,10 +213,10 @@ DECL_WINELIB_SETUPAPI_TYPE_AW(PSP_DEVINSTALL_PARAMS) of a device information set) */ typedef struct _SP_DEVINFO_DATA { - DWORD cbSize; - GUID ClassGuid; - DWORD DevInst; /* DEVINST handle */ - DWORD Reserved; + DWORD cbSize; + GUID ClassGuid; + DWORD DevInst; /* DEVINST handle */ + ULONG_PTR Reserved; } SP_DEVINFO_DATA, *PSP_DEVINFO_DATA;
typedef struct _SP_DEVICE_INTERFACE_DATA