Release 970112
[wine.git] / include / desktop.h
blob129f96e6842a9080b07e8b962dc2e982a880f86b
1 /*
2 * Desktop window definitions.
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_DESKTOP_H
8 #define __WINE_DESKTOP_H
10 #include "windows.h"
12 typedef struct
14 HBRUSH32 hbrushPattern;
15 HBITMAP32 hbitmapWallPaper;
16 SIZE32 bitmapSize;
17 BOOL32 fTileWallPaper;
18 } DESKTOPINFO;
20 extern BOOL32 DESKTOP_SetPattern( LPCSTR pattern );
21 extern LRESULT DesktopWndProc( HWND32 hwnd, UINT32 message,
22 WPARAM32 wParam, LPARAM lParam );
24 #endif /* __WINE_DESKTOP_H */