* Slap *some* sense into our header inclusions.
[reactos.git] / reactos / dll / win32 / winsta / winsta.h
1 /*
2 * PROJECT: ReactOS winsta.dll
3 * FILE: dll/win32/winsta/winsta.h
4 * PURPOSE: WinStation
5 * PROGRAMMER: Aleksey Bragin
6 * NOTES: This file contains exported functions relevant to
7 * userinit, winlogon, lsass and friends.
8 */
9
10 #ifndef _WINSTA_H
11 #define _WINSTA_H
12
13 /* Default header set */
14 #include <stdarg.h>
15 //#include <time.h>
16
17 #include <windef.h>
18 #include <winbase.h>
19 #include <winternl.h>
20
21 #include <wine/debug.h>
22
23 WINE_DEFAULT_DEBUG_CHANNEL(winsta);
24
25 /* WinSta calling convention */
26 #define WINSTAAPI WINAPI
27
28 #endif /* !def _WINSTA_H */
29