25 lines
529 B
C
25 lines
529 B
C
/*
|
|
* Desktop window definitions.
|
|
*
|
|
* Copyright 1994 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_DESKTOP_H
|
|
#define __WINE_DESKTOP_H
|
|
|
|
#include "windows.h"
|
|
|
|
typedef struct
|
|
{
|
|
HBRUSH32 hbrushPattern;
|
|
HBITMAP32 hbitmapWallPaper;
|
|
SIZE32 bitmapSize;
|
|
BOOL32 fTileWallPaper;
|
|
} DESKTOPINFO;
|
|
|
|
extern BOOL32 DESKTOP_SetPattern( LPCSTR pattern );
|
|
extern LRESULT WINAPI DesktopWndProc( HWND32 hwnd, UINT32 message,
|
|
WPARAM32 wParam, LPARAM lParam );
|
|
|
|
#endif /* __WINE_DESKTOP_H */
|