mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[USERSRV]
* Remove one time inclusions from the main header and put them back where they belong. * Improve header inclusions. CORE-7716 svn path=/trunk/; revision=61990
This commit is contained in:
parent
f3ca729999
commit
be1c410130
5 changed files with 16 additions and 26 deletions
|
@ -28,5 +28,3 @@ CSR_API(SrvExitWindowsEx);
|
|||
CSR_API(SrvEndTask);
|
||||
CSR_API(SrvLogon);
|
||||
CSR_API(SrvRecordShutdownReason);
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -11,11 +11,13 @@
|
|||
|
||||
#include "usersrv.h"
|
||||
|
||||
#include <ndk/mmfuncs.h>
|
||||
#include <pseh/pseh2.h>
|
||||
#include <strsafe.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
#include <strsafe.h>
|
||||
|
||||
#define IDTRYAGAIN 10
|
||||
#define IDCONTINUE 11
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
/* INCLUDES *******************************************************************/
|
||||
|
||||
#include "usersrv.h"
|
||||
|
||||
#include "api.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -11,8 +11,15 @@
|
|||
/* INCLUDES *******************************************************************/
|
||||
|
||||
#include "usersrv.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <winreg.h>
|
||||
#include <winlogon.h>
|
||||
#include <commctrl.h>
|
||||
#include <sddl.h>
|
||||
|
||||
#include "resource.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
|
|
@ -9,23 +9,19 @@
|
|||
#ifndef __USERSRV_H__
|
||||
#define __USERSRV_H__
|
||||
|
||||
#pragma once
|
||||
|
||||
/* PSDK/NDK Headers */
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <wingdi.h>
|
||||
#include <winreg.h>
|
||||
#include <winuser.h>
|
||||
|
||||
#define NTOS_MODE_USER
|
||||
#include <ndk/iofuncs.h>
|
||||
#include <ndk/kefuncs.h>
|
||||
#include <ndk/mmfuncs.h>
|
||||
#include <ndk/obfuncs.h>
|
||||
#include <ndk/psfuncs.h>
|
||||
#include <ndk/rtlfuncs.h>
|
||||
|
@ -33,29 +29,15 @@
|
|||
/* Public Win32K Headers */
|
||||
#include <ntuser.h>
|
||||
|
||||
/* PSEH for SEH Support */
|
||||
#include <pseh/pseh2.h>
|
||||
|
||||
/* External Winlogon Header */
|
||||
#include <winlogon.h>
|
||||
|
||||
/* CSRSS Header */
|
||||
#include <csr/csrsrv.h>
|
||||
|
||||
/* USER Headers */
|
||||
#include <win/winmsg.h>
|
||||
|
||||
/* Public Win32 Headers */
|
||||
#include <commctrl.h>
|
||||
|
||||
#include "resource.h"
|
||||
|
||||
|
||||
/* Globals */
|
||||
extern HINSTANCE UserServerDllInstance;
|
||||
extern HANDLE UserServerHeap;
|
||||
extern ULONG_PTR LogonProcessId;
|
||||
|
||||
#endif // __USERSRV_H__
|
||||
|
||||
/* EOF */
|
||||
#endif /* __USERSRV_H__ */
|
||||
|
|
Loading…
Reference in a new issue