Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 52 of file guicheck.c.
Referenced by DceCreateDisplayDC(), and Win32kProcessCallback().
{ PPROCESSINFO W32Data; W32Data = PsGetCurrentProcessWin32Process(); if (Create) { if (! (W32Data->W32PF_flags & W32PF_CREATEDWINORDC) && ! (W32Data->W32PF_flags & W32PF_MANUALGUICHECK)) { return co_AddGuiApp(W32Data); } } else { if ((W32Data->W32PF_flags & W32PF_CREATEDWINORDC) && ! (W32Data->W32PF_flags & W32PF_MANUALGUICHECK)) { RemoveGuiApp(W32Data); } } return TRUE; }