[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:
Amine Khaldi 2014-02-05 16:27:14 +00:00
parent f3ca729999
commit be1c410130
5 changed files with 16 additions and 26 deletions

View file

@ -28,5 +28,3 @@ CSR_API(SrvExitWindowsEx);
CSR_API(SrvEndTask);
CSR_API(SrvLogon);
CSR_API(SrvRecordShutdownReason);
/* EOF */

View file

@ -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

View file

@ -10,6 +10,7 @@
/* INCLUDES *******************************************************************/
#include "usersrv.h"
#include "api.h"
#define NDEBUG

View file

@ -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>

View file

@ -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__ */