Make winelauncher work better for source tree builds.
[wine/hacks.git] / include / desktop.h
blob9e130ab921b7dd76b5dc5ccec58fd69308440de8
1 /*
2 * Desktop window definitions.
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_DESKTOP_H
8 #define __WINE_DESKTOP_H
10 #include "windef.h"
12 typedef struct tagDESKTOP
14 HBRUSH hbrushPattern;
15 HBITMAP hbitmapWallPaper;
16 SIZE bitmapSize;
17 BOOL fTileWallPaper;
18 } DESKTOP;
20 extern BOOL DESKTOP_SetPattern( LPCSTR pattern );
21 extern LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message,
22 WPARAM wParam, LPARAM lParam );
24 #endif /* __WINE_DESKTOP_H */