forked from reactos/reactos
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec148dc
commit 84fa53c
Showing
75 changed files
with
10,670 additions
and
2,299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* PROJECT: ReactOS Kernel | ||
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) | ||
* PURPOSE: Internal header for the Power Manager Platform Extension Plug-ins (PEPs) | ||
* COPYRIGHT: Copyright 2023 George Bișoc <[email protected]> | ||
*/ | ||
|
||
// | ||
// Platform Extension Plugin (PEP) handle | ||
// | ||
typedef struct _PEPHANDLE__ | ||
{ | ||
LONG unused; | ||
} PEPHANDLE__, *PPEPHANDLE__; | ||
|
||
// | ||
// PEP crash dump information | ||
// | ||
typedef struct _PEP_CRASHDUMP_INFORMATION | ||
{ | ||
PPEPHANDLE__ DeviceHandle; | ||
PVOID DeviceContext; | ||
} PEP_CRASHDUMP_INFORMATION, *PPEP_CRASHDUMP_INFORMATION; | ||
|
||
/* EOF */ |
Oops, something went wrong.