* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=62024
This commit is contained in:
Amine Khaldi 2014-02-07 17:38:56 +00:00
parent af07a1f3d9
commit 7c63179f24
4 changed files with 15 additions and 14 deletions

View file

@ -7,6 +7,9 @@
#include "msgina.h"
#include <wingdi.h>
#include <winnls.h>
typedef struct _DISPLAYSTATUSMSG
{
PGINA_CONTEXT Context;

View file

@ -26,6 +26,11 @@
#include "msgina.h"
#include <winreg.h>
#include <winsvc.h>
#include <userenv.h>
#include <ndk/sefuncs.h>
HINSTANCE hDllInstance;
extern GINA_UI GinaGraphicalUI;

View file

@ -1,24 +1,17 @@
#ifndef _MSGINA_H
#define _MSGINA_H
#define WIN32_NO_STATUS
#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 <wincon.h>
#include <winreg.h>
#include <wingdi.h>
#include <winnls.h>
#include <winsvc.h>
#include <winuser.h>
#include <userenv.h>
#include <winwlx.h>
#include <ndk/obfuncs.h>
#include <ndk/rtlfuncs.h>
#include <ndk/sefuncs.h>
#include <ntlsa.h>
#include <ntsecapi.h>
#include <wine/debug.h>
@ -116,5 +109,3 @@ DoLoginTasks(
IN PWSTR Password);
#endif /* _MSGINA_H */
/* EOF */

View file

@ -7,6 +7,8 @@
#include "msgina.h"
#include <wincon.h>
static BOOL
TUIInitialize(
IN OUT PGINA_CONTEXT pgContext)