Skip to content

Commit a5ab400

Browse files
committed
[SDK] Swap initguid and wdm headers
The WDM header contains power manager related GUIDs that were declared but never initialized properly due to the fact the initguid.h header wasn't at the top. This patch fixes a linker error in the kernel where GUIDs like GUID_LIDSWITCH_STATE_CHANGE are used. It's a hotfix for 624c3fd.
1 parent 624c3fd commit a5ab400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/lib/poguid/poguid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
/* INCLUDES *****************************************************************/
99

10-
#include <wdm.h>
1110
#include <initguid.h>
11+
#include <wdm.h>
1212
#include <poclass.h>
1313

1414
/* EOF */

0 commit comments

Comments
 (0)