96d09ad1edfa9ebcdbc505469ea8483c0fe1cfe9
[reactos.git] / reactos / subsys / win32k / include / window.h
1 #ifndef __WIN32K_WINDOW_H
2 #define __WIN32K_WINDOW_H
3
4 #include <windows.h>
5 #include <ddk/ntddk.h>
6 #include <include/class.h>
7
8 typedef struct _WINDOW_OBJECT
9 {
10 PWNDCLASS_OBJECT Class;
11 DWORD ExStyle;
12 UNICODE_STRING WindowName;
13 DWORD Style;
14 int x;
15 int y;
16 int Width;
17 int Height;
18 HWND Parent;
19 HMENU Menu;
20 HINSTANCE Instance;
21 LPVOID Parameters;
22 LIST_ENTRY ListEntry;
23 } WINDOW_OBJECT, *PWINDOW_OBJECT;
24
25
26 NTSTATUS
27 InitWindowImpl(VOID);
28
29 NTSTATUS
30 CleanupWindowImpl(VOID);
31
32 #endif /* __WIN32K_WINDOW_H */
33
34 /* EOF */