Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
d9b673f9
Commit
d9b673f9
authored
May 26, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
May 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi/tests: Turn guid into a global variable.
parent
b1b4063c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
21 deletions
+3
-21
devinst.c
dlls/setupapi/tests/devinst.c
+3
-21
No files found.
dlls/setupapi/tests/devinst.c
View file @
d9b673f9
...
@@ -57,6 +57,9 @@ static BOOL (WINAPI *pSetupDiSetDeviceRegistryPropertyW)(HDEVINFO, PSP_DEVIN
...
@@ -57,6 +57,9 @@ static BOOL (WINAPI *pSetupDiSetDeviceRegistryPropertyW)(HDEVINFO, PSP_DEVIN
static
BOOL
(
WINAPI
*
pSetupDiGetDeviceRegistryPropertyA
)(
HDEVINFO
,
PSP_DEVINFO_DATA
,
DWORD
,
PDWORD
,
PBYTE
,
DWORD
,
PDWORD
);
static
BOOL
(
WINAPI
*
pSetupDiGetDeviceRegistryPropertyA
)(
HDEVINFO
,
PSP_DEVINFO_DATA
,
DWORD
,
PDWORD
,
PBYTE
,
DWORD
,
PDWORD
);
static
BOOL
(
WINAPI
*
pSetupDiGetDeviceRegistryPropertyW
)(
HDEVINFO
,
PSP_DEVINFO_DATA
,
DWORD
,
PDWORD
,
PBYTE
,
DWORD
,
PDWORD
);
static
BOOL
(
WINAPI
*
pSetupDiGetDeviceRegistryPropertyW
)(
HDEVINFO
,
PSP_DEVINFO_DATA
,
DWORD
,
PDWORD
,
PBYTE
,
DWORD
,
PDWORD
);
/* This is a unique guid for testing purposes */
static
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
static
void
init_function_pointers
(
void
)
static
void
init_function_pointers
(
void
)
{
{
hSetupAPI
=
GetModuleHandleA
(
"setupapi.dll"
);
hSetupAPI
=
GetModuleHandleA
(
"setupapi.dll"
);
...
@@ -194,9 +197,6 @@ static void test_SetupDiCreateDeviceInfoListEx(void)
...
@@ -194,9 +197,6 @@ static void test_SetupDiCreateDeviceInfoListEx(void)
static
void
test_SetupDiOpenClassRegKeyExA
(
void
)
static
void
test_SetupDiOpenClassRegKeyExA
(
void
)
{
{
/* This is a unique guid for testing purposes */
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
static
const
CHAR
guidString
[]
=
"{6a55b5a4-3f65-11db-b704-0011955c2bdb}"
;
static
const
CHAR
guidString
[]
=
"{6a55b5a4-3f65-11db-b704-0011955c2bdb}"
;
HKEY
hkey
;
HKEY
hkey
;
...
@@ -340,8 +340,6 @@ static void testCreateDeviceInfo(void)
...
@@ -340,8 +340,6 @@ static void testCreateDeviceInfo(void)
{
{
BOOL
ret
;
BOOL
ret
;
HDEVINFO
set
;
HDEVINFO
set
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiEnumDeviceInfo
||
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiEnumDeviceInfo
||
!
pSetupDiDestroyDeviceInfoList
||
!
pSetupDiCreateDeviceInfoA
)
!
pSetupDiDestroyDeviceInfoList
||
!
pSetupDiCreateDeviceInfoA
)
...
@@ -424,8 +422,6 @@ static void testGetDeviceInstanceId(void)
...
@@ -424,8 +422,6 @@ static void testGetDeviceInstanceId(void)
{
{
BOOL
ret
;
BOOL
ret
;
HDEVINFO
set
;
HDEVINFO
set
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
SP_DEVINFO_DATA
devInfo
=
{
0
};
SP_DEVINFO_DATA
devInfo
=
{
0
};
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
...
@@ -494,8 +490,6 @@ static void testGetDeviceInstanceId(void)
...
@@ -494,8 +490,6 @@ static void testGetDeviceInstanceId(void)
static
void
testRegisterDeviceInfo
(
void
)
static
void
testRegisterDeviceInfo
(
void
)
{
{
BOOL
ret
;
BOOL
ret
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
HDEVINFO
set
;
HDEVINFO
set
;
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
...
@@ -550,8 +544,6 @@ static void testRegisterDeviceInfo(void)
...
@@ -550,8 +544,6 @@ static void testRegisterDeviceInfo(void)
static
void
testCreateDeviceInterface
(
void
)
static
void
testCreateDeviceInterface
(
void
)
{
{
BOOL
ret
;
BOOL
ret
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
HDEVINFO
set
;
HDEVINFO
set
;
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
...
@@ -623,8 +615,6 @@ static void testCreateDeviceInterface(void)
...
@@ -623,8 +615,6 @@ static void testCreateDeviceInterface(void)
static
void
testGetDeviceInterfaceDetail
(
void
)
static
void
testGetDeviceInterfaceDetail
(
void
)
{
{
BOOL
ret
;
BOOL
ret
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
HDEVINFO
set
;
HDEVINFO
set
;
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
...
@@ -736,8 +726,6 @@ static void testDevRegKey(void)
...
@@ -736,8 +726,6 @@ static void testDevRegKey(void)
'1'
,
'1'
,
'd'
,
'b'
,
'-'
,
'b'
,
'7'
,
'0'
,
'4'
,
'-'
,
'1'
,
'1'
,
'd'
,
'b'
,
'-'
,
'b'
,
'7'
,
'0'
,
'4'
,
'-'
,
'0'
,
'0'
,
'1'
,
'1'
,
'9'
,
'5'
,
'5'
,
'c'
,
'2'
,
'b'
,
'd'
,
'b'
,
'}'
,
0
};
'0'
,
'0'
,
'1'
,
'1'
,
'9'
,
'5'
,
'5'
,
'c'
,
'2'
,
'b'
,
'd'
,
'b'
,
'}'
,
0
};
BOOL
ret
;
BOOL
ret
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
HDEVINFO
set
;
HDEVINFO
set
;
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
if
(
!
pSetupDiCreateDeviceInfoList
||
!
pSetupDiDestroyDeviceInfoList
||
...
@@ -837,8 +825,6 @@ static void testRegisterAndGetDetail(void)
...
@@ -837,8 +825,6 @@ static void testRegisterAndGetDetail(void)
{
{
HDEVINFO
set
;
HDEVINFO
set
;
BOOL
ret
;
BOOL
ret
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
SP_DEVINFO_DATA
devInfo
=
{
sizeof
(
SP_DEVINFO_DATA
),
{
0
}
};
SP_DEVINFO_DATA
devInfo
=
{
sizeof
(
SP_DEVINFO_DATA
),
{
0
}
};
SP_DEVICE_INTERFACE_DATA
interfaceData
=
{
sizeof
(
interfaceData
),
{
0
}
};
SP_DEVICE_INTERFACE_DATA
interfaceData
=
{
sizeof
(
interfaceData
),
{
0
}
};
DWORD
dwSize
=
0
;
DWORD
dwSize
=
0
;
...
@@ -899,8 +885,6 @@ static void testRegisterAndGetDetail(void)
...
@@ -899,8 +885,6 @@ static void testRegisterAndGetDetail(void)
static
void
testDeviceRegistryPropertyA
()
static
void
testDeviceRegistryPropertyA
()
{
{
HDEVINFO
set
;
HDEVINFO
set
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
SP_DEVINFO_DATA
devInfo
=
{
sizeof
(
SP_DEVINFO_DATA
),
{
0
}
};
SP_DEVINFO_DATA
devInfo
=
{
sizeof
(
SP_DEVINFO_DATA
),
{
0
}
};
CHAR
devName
[]
=
"LEGACY_BOGUS"
;
CHAR
devName
[]
=
"LEGACY_BOGUS"
;
CHAR
friendlyName
[]
=
"Bogus"
;
CHAR
friendlyName
[]
=
"Bogus"
;
...
@@ -990,8 +974,6 @@ static void testDeviceRegistryPropertyA()
...
@@ -990,8 +974,6 @@ static void testDeviceRegistryPropertyA()
static
void
testDeviceRegistryPropertyW
()
static
void
testDeviceRegistryPropertyW
()
{
{
HDEVINFO
set
;
HDEVINFO
set
;
GUID
guid
=
{
0x6a55b5a4
,
0x3f65
,
0x11db
,
{
0xb7
,
0x04
,
0x00
,
0x11
,
0x95
,
0x5c
,
0x2b
,
0xdb
}};
SP_DEVINFO_DATA
devInfo
=
{
sizeof
(
SP_DEVINFO_DATA
),
{
0
}
};
SP_DEVINFO_DATA
devInfo
=
{
sizeof
(
SP_DEVINFO_DATA
),
{
0
}
};
WCHAR
devName
[]
=
{
'L'
,
'E'
,
'G'
,
'A'
,
'C'
,
'Y'
,
'_'
,
'B'
,
'O'
,
'G'
,
'U'
,
'S'
,
0
};
WCHAR
devName
[]
=
{
'L'
,
'E'
,
'G'
,
'A'
,
'C'
,
'Y'
,
'_'
,
'B'
,
'O'
,
'G'
,
'U'
,
'S'
,
0
};
WCHAR
friendlyName
[]
=
{
'B'
,
'o'
,
'g'
,
'u'
,
's'
,
0
};
WCHAR
friendlyName
[]
=
{
'B'
,
'o'
,
'g'
,
'u'
,
's'
,
0
};
...
...
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