Moved all Win16 definitions out of the standard Windows headers.
[wine] / include / desktop.h
1 /*
2  * Desktop window definitions.
3  *
4  * Copyright 1994 Alexandre Julliard
5  */
6
7 #ifndef __WINE_DESKTOP_H
8 #define __WINE_DESKTOP_H
9
10 #include "windef.h"
11
12 typedef struct tagDESKTOP
13 {
14   HBRUSH                hbrushPattern;
15   HBITMAP               hbitmapWallPaper;
16   SIZE                  bitmapSize;
17   BOOL                  fTileWallPaper;
18 } DESKTOP;
19
20 extern BOOL DESKTOP_SetPattern( LPCSTR pattern );
21 extern LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message,
22                                       WPARAM wParam, LPARAM lParam );
23
24 #endif  /* __WINE_DESKTOP_H */