Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ffae0123
Commit
ffae0123
authored
Jan 28, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Remove superfluous pointer casts.
parent
90358516
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
30 deletions
+30
-30
devinst.c
dlls/setupapi/devinst.c
+22
-22
diskspace.c
dlls/setupapi/diskspace.c
+2
-2
fakedll.c
dlls/setupapi/fakedll.c
+1
-1
parser.c
dlls/setupapi/parser.c
+1
-1
queue.c
dlls/setupapi/queue.c
+2
-2
setupcab.c
dlls/setupapi/setupcab.c
+2
-2
No files found.
dlls/setupapi/devinst.c
View file @
ffae0123
...
...
@@ -1242,7 +1242,7 @@ HKEY WINAPI SetupDiCreateDevRegKeyW(
HINF
InfHandle
,
PCWSTR
InfSectionName
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
HKEY
key
=
INVALID_HANDLE_VALUE
;
...
...
@@ -1381,7 +1381,7 @@ BOOL WINAPI SetupDiCreateDeviceInfoW(
DWORD
CreationFlags
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
BOOL
ret
=
FALSE
,
allocatedInstanceId
=
FALSE
;
LPCWSTR
instanceId
=
NULL
;
...
...
@@ -1520,7 +1520,7 @@ BOOL WINAPI SetupDiRegisterDeviceInfo(
PVOID
CompareContext
,
PSP_DEVINFO_DATA
DupDeviceInfoData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
TRACE
(
"%p %p %08x %p %p %p
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
Flags
,
...
...
@@ -1575,7 +1575,7 @@ BOOL WINAPI SetupDiEnumDeviceInfo(
}
if
(
devinfo
&&
devinfo
!=
INVALID_HANDLE_VALUE
)
{
struct
DeviceInfoSet
*
list
=
(
struct
DeviceInfoSet
*
)
devinfo
;
struct
DeviceInfoSet
*
list
=
devinfo
;
if
(
list
->
magic
==
SETUP_DEVICE_INFO_SET_MAGIC
)
{
if
(
index
<
list
->
cDevices
)
...
...
@@ -1676,7 +1676,7 @@ BOOL WINAPI SetupDiGetDeviceInstanceIdW(
DWORD
DeviceInstanceIdSize
,
PDWORD
RequiredSize
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
TRACE
(
"%p %p %p %d %p
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
DeviceInstanceId
,
...
...
@@ -2029,7 +2029,7 @@ static void SETUPDI_AddDeviceInterfaces(SP_DEVINFO_DATA *dev, HKEY key,
static
void
SETUPDI_EnumerateMatchingInterfaces
(
HDEVINFO
DeviceInfoSet
,
HKEY
key
,
const
GUID
*
interface
,
LPCWSTR
enumstr
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
DWORD
i
,
len
;
WCHAR
subKeyName
[
MAX_PATH
];
LONG
l
;
...
...
@@ -2227,7 +2227,7 @@ static void SETUPDI_EnumerateMatchingDeviceInstances(struct DeviceInfoSet *set,
static
void
SETUPDI_EnumerateMatchingDevices
(
HDEVINFO
DeviceInfoSet
,
LPCWSTR
parent
,
HKEY
key
,
const
GUID
*
class
,
DWORD
flags
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
DWORD
i
,
len
;
WCHAR
subKeyName
[
MAX_PATH
];
LONG
l
=
ERROR_SUCCESS
;
...
...
@@ -2378,7 +2378,7 @@ BOOL WINAPI SetupDiGetDeviceInfoListDetailA(
HDEVINFO
DeviceInfoSet
,
PSP_DEVINFO_LIST_DETAIL_DATA_A
DevInfoData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
TRACE
(
"%p %p
\n
"
,
DeviceInfoSet
,
DevInfoData
);
...
...
@@ -2411,7 +2411,7 @@ BOOL WINAPI SetupDiGetDeviceInfoListDetailW(
HDEVINFO
DeviceInfoSet
,
PSP_DEVINFO_LIST_DETAIL_DATA_W
DevInfoData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
TRACE
(
"%p %p
\n
"
,
DeviceInfoSet
,
DevInfoData
);
...
...
@@ -2481,7 +2481,7 @@ BOOL WINAPI SetupDiCreateDeviceInterfaceW(
DWORD
CreationFlags
,
PSP_DEVICE_INTERFACE_DATA
DeviceInterfaceData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
SP_DEVICE_INTERFACE_DATA
*
iface
=
NULL
;
BOOL
ret
;
...
...
@@ -2606,7 +2606,7 @@ HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyW(
HINF
InfHandle
,
PCWSTR
InfSectionName
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
HKEY
key
=
INVALID_HANDLE_VALUE
,
interfacesKey
;
LONG
l
;
...
...
@@ -2714,7 +2714,7 @@ BOOL WINAPI SetupDiDeleteDeviceInterfaceRegKey(
PSP_DEVICE_INTERFACE_DATA
DeviceInterfaceData
,
DWORD
Reserved
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
HKEY
parent
;
BOOL
ret
=
FALSE
;
...
...
@@ -2786,7 +2786,7 @@ BOOL WINAPI SetupDiEnumDeviceInterfaces(
DWORD
MemberIndex
,
PSP_DEVICE_INTERFACE_DATA
DeviceInterfaceData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
BOOL
ret
=
FALSE
;
TRACE
(
"%p, %p, %s, %d, %p
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
...
...
@@ -2882,7 +2882,7 @@ BOOL WINAPI SetupDiDestroyDeviceInfoList(HDEVINFO devinfo)
TRACE
(
"%p
\n
"
,
devinfo
);
if
(
devinfo
&&
devinfo
!=
INVALID_HANDLE_VALUE
)
{
struct
DeviceInfoSet
*
list
=
(
struct
DeviceInfoSet
*
)
devinfo
;
struct
DeviceInfoSet
*
list
=
devinfo
;
if
(
list
->
magic
==
SETUP_DEVICE_INFO_SET_MAGIC
)
{
...
...
@@ -2917,7 +2917,7 @@ BOOL WINAPI SetupDiGetDeviceInterfaceDetailA(
PDWORD
RequiredSize
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
InterfaceInfo
*
info
;
DWORD
bytesNeeded
=
offsetof
(
SP_DEVICE_INTERFACE_DETAIL_DATA_A
,
DevicePath
)
+
1
;
...
...
@@ -2989,7 +2989,7 @@ BOOL WINAPI SetupDiGetDeviceInterfaceDetailW(
PDWORD
RequiredSize
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
InterfaceInfo
*
info
;
DWORD
bytesNeeded
=
offsetof
(
SP_DEVICE_INTERFACE_DETAIL_DATA_W
,
DevicePath
)
+
sizeof
(
WCHAR
);
/* include NULL terminator */
...
...
@@ -3088,7 +3088,7 @@ BOOL WINAPI SetupDiGetDeviceRegistryPropertyA(
PDWORD
RequiredSize
)
{
BOOL
ret
=
FALSE
;
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
TRACE
(
"%04x %p %d %p %p %d %p
\n
"
,
(
DWORD
)
DeviceInfoSet
,
DeviceInfoData
,
...
...
@@ -3149,7 +3149,7 @@ BOOL WINAPI SetupDiGetDeviceRegistryPropertyW(
PDWORD
RequiredSize
)
{
BOOL
ret
=
FALSE
;
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
TRACE
(
"%04x %p %d %p %p %d %p
\n
"
,
(
DWORD
)
DeviceInfoSet
,
DeviceInfoData
,
...
...
@@ -3208,7 +3208,7 @@ BOOL WINAPI SetupDiSetDeviceRegistryPropertyA(
DWORD
PropertyBufferSize
)
{
BOOL
ret
=
FALSE
;
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
TRACE
(
"%p %p %d %p %d
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
Property
,
...
...
@@ -3256,7 +3256,7 @@ BOOL WINAPI SetupDiSetDeviceRegistryPropertyW(
DWORD
PropertyBufferSize
)
{
BOOL
ret
=
FALSE
;
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
TRACE
(
"%p %p %d %p %d
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
Property
,
...
...
@@ -3733,7 +3733,7 @@ HKEY WINAPI SetupDiOpenDevRegKey(
DWORD
KeyType
,
REGSAM
samDesired
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
HKEY
key
=
INVALID_HANDLE_VALUE
;
...
...
@@ -3849,7 +3849,7 @@ BOOL WINAPI SetupDiDeleteDevRegKey(
DWORD
HwProfile
,
DWORD
KeyType
)
{
struct
DeviceInfoSet
*
set
=
(
struct
DeviceInfoSet
*
)
DeviceInfoSet
;
struct
DeviceInfoSet
*
set
=
DeviceInfoSet
;
struct
DeviceInfo
*
devInfo
;
BOOL
ret
=
FALSE
;
...
...
dlls/setupapi/diskspace.c
View file @
ffae0123
...
...
@@ -115,7 +115,7 @@ BOOL WINAPI SetupQuerySpaceRequiredOnDriveA(HDSKSPC DiskSpace,
{
WCHAR
driveW
[
20
];
unsigned
int
i
;
LPDISKSPACELIST
list
=
(
LPDISKSPACELIST
)
DiskSpace
;
LPDISKSPACELIST
list
=
DiskSpace
;
BOOL
rc
=
FALSE
;
static
const
WCHAR
bkslsh
[]
=
{
'\\'
,
0
};
...
...
@@ -144,7 +144,7 @@ BOOL WINAPI SetupQuerySpaceRequiredOnDriveA(HDSKSPC DiskSpace,
*/
BOOL
WINAPI
SetupDestroyDiskSpaceList
(
HDSKSPC
DiskSpace
)
{
LPDISKSPACELIST
list
=
(
LPDISKSPACELIST
)
DiskSpace
;
LPDISKSPACELIST
list
=
DiskSpace
;
HeapFree
(
GetProcessHeap
(),
0
,
list
);
return
TRUE
;
}
dlls/setupapi/fakedll.c
View file @
ffae0123
...
...
@@ -76,7 +76,7 @@ static void add_section( struct dll_info *info, const char *name, DWORD size, DW
IMAGE_SECTION_HEADER
*
sec
=
(
IMAGE_SECTION_HEADER
*
)(
info
->
nt
+
1
);
sec
+=
info
->
nt
->
FileHeader
.
NumberOfSections
;
memcpy
(
(
char
*
)
sec
->
Name
,
name
,
min
(
strlen
(
name
),
sizeof
(
sec
->
Name
))
);
memcpy
(
sec
->
Name
,
name
,
min
(
strlen
(
name
),
sizeof
(
sec
->
Name
))
);
sec
->
Misc
.
VirtualSize
=
ALIGN
(
size
,
section_alignment
);
sec
->
VirtualAddress
=
info
->
mem_pos
;
sec
->
SizeOfRawData
=
size
;
...
...
dlls/setupapi/parser.c
View file @
ffae0123
...
...
@@ -982,7 +982,7 @@ static struct inf_file *parse_file( HANDLE handle, const WCHAR *class, DWORD sty
}
else
{
WCHAR
*
new_buff
=
(
WCHAR
*
)
buffer
;
WCHAR
*
new_buff
=
buffer
;
/* UCS-16 files should start with the Unicode BOM; we should skip it */
if
(
*
new_buff
==
0xfeff
)
new_buff
++
;
...
...
dlls/setupapi/queue.c
View file @
ffae0123
...
...
@@ -1493,7 +1493,7 @@ UINT WINAPI SetupDefaultQueueCallbackA( PVOID context, UINT notification,
UINT_PTR
param1
,
UINT_PTR
param2
)
{
FILEPATHS_A
*
paths
=
(
FILEPATHS_A
*
)
param1
;
struct
default_callback_context
*
ctx
=
(
struct
default_callback_context
*
)
context
;
struct
default_callback_context
*
ctx
=
context
;
switch
(
notification
)
{
...
...
@@ -1557,7 +1557,7 @@ UINT WINAPI SetupDefaultQueueCallbackW( PVOID context, UINT notification,
UINT_PTR
param1
,
UINT_PTR
param2
)
{
FILEPATHS_W
*
paths
=
(
FILEPATHS_W
*
)
param1
;
struct
default_callback_context
*
ctx
=
(
struct
default_callback_context
*
)
context
;
struct
default_callback_context
*
ctx
=
context
;
switch
(
notification
)
{
...
...
dlls/setupapi/setupcab.c
View file @
ffae0123
...
...
@@ -287,7 +287,7 @@ static INT_PTR CDECL sc_FNNOTIFY_A(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION p
TRACE
(
"(fdint == %d, pfdin == ^%p)
\n
"
,
fdint
,
pfdin
);
if
(
pfdin
&&
pfdin
->
pv
&&
(
*
((
void
**
)
pfdin
->
pv
)
==
(
void
*
)
SC_HSC_A_MAGIC
))
phsc
=
(
PSC_HSC_A
)
pfdin
->
pv
;
phsc
=
pfdin
->
pv
;
else
{
ERR
(
"pv %p is not an SC_HSC_A.
\n
"
,
(
pfdin
)
?
pfdin
->
pv
:
NULL
);
return
-
1
;
...
...
@@ -412,7 +412,7 @@ static INT_PTR CDECL sc_FNNOTIFY_W(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION p
TRACE
(
"(fdint == %d, pfdin == ^%p)
\n
"
,
fdint
,
pfdin
);
if
(
pfdin
&&
pfdin
->
pv
&&
(
*
((
void
**
)
pfdin
->
pv
)
==
(
void
*
)
SC_HSC_W_MAGIC
))
phsc
=
(
PSC_HSC_W
)
pfdin
->
pv
;
phsc
=
pfdin
->
pv
;
else
{
ERR
(
"pv %p is not an SC_HSC_W.
\n
"
,
(
pfdin
)
?
pfdin
->
pv
:
NULL
);
return
-
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment