[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.
This commit is contained in:
George Bișoc 2025-07-16 22:03:31 +02:00
parent 624c3fd847
commit a5ab400689
No known key found for this signature in database
GPG key ID: 688C4FBE25D7DEF6

View file

@ -7,8 +7,8 @@
/* INCLUDES *****************************************************************/
#include <wdm.h>
#include <initguid.h>
#include <wdm.h>
#include <poclass.h>
/* EOF */