mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 09:10:56 +00:00
[WIN32K]
Sorry forgot to commit this file svn path=/trunk/; revision=57455
This commit is contained in:
parent
3ab700cd66
commit
835f8fc099
1 changed files with 5 additions and 1 deletions
|
@ -20,6 +20,7 @@ ATOM AtomFlashWndState; // Window Flash State atom.
|
||||||
BOOL gbInitialized;
|
BOOL gbInitialized;
|
||||||
HINSTANCE hModClient = NULL;
|
HINSTANCE hModClient = NULL;
|
||||||
BOOL ClientPfnInit = FALSE;
|
BOOL ClientPfnInit = FALSE;
|
||||||
|
PEPROCESS gpepCSRSS;
|
||||||
|
|
||||||
/* PRIVATE FUNCTIONS *********************************************************/
|
/* PRIVATE FUNCTIONS *********************************************************/
|
||||||
|
|
||||||
|
@ -176,6 +177,9 @@ NtUserInitialize(
|
||||||
return STATUS_UNSUCCESSFUL;
|
return STATUS_UNSUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Save EPROCESS of CSRSS */
|
||||||
|
gpepCSRSS = PsGetCurrentProcess();
|
||||||
|
|
||||||
// Initialize Power Request List.
|
// Initialize Power Request List.
|
||||||
// Initialize Media Change.
|
// Initialize Media Change.
|
||||||
// InitializeGreCSRSS();
|
// InitializeGreCSRSS();
|
||||||
|
|
Loading…
Reference in a new issue