mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 05:42:57 +00:00
[SDK] Introduce the PO GUID library
This library aims to include all the public and global power manager related GUID identifiers into one shared library, of which they can be accessed across multiple modules of ReactOS, e.g. the kernel, ACPI, PCI, et al. This patch is needed for the development of the Power Manager (#5719) to continue. CORE-18969
This commit is contained in:
parent
c40624ae2a
commit
624c3fd847
8 changed files with 34 additions and 18 deletions
|
@ -38,6 +38,7 @@ add_subdirectory(ioevent)
|
|||
add_subdirectory(lsalib)
|
||||
add_subdirectory(nt)
|
||||
add_subdirectory(pathcch)
|
||||
add_subdirectory(poguid)
|
||||
add_subdirectory(pseh)
|
||||
|
||||
if(KDBG)
|
||||
|
|
3
sdk/lib/poguid/CMakeLists.txt
Normal file
3
sdk/lib/poguid/CMakeLists.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
|
||||
add_library(poguid poguid.c)
|
||||
add_dependencies(poguid psdk)
|
14
sdk/lib/poguid/poguid.c
Normal file
14
sdk/lib/poguid/poguid.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* PROJECT: ReactOS SDK
|
||||
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||
* PURPOSE: Power Manager GUID library
|
||||
* COPYRIGHT: Copyright 2011 Timo Kreuzer <timo.kreuzer@reactos.org>
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include <wdm.h>
|
||||
#include <initguid.h>
|
||||
#include <poclass.h>
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue