Yet another attempt at fixing CW_USEDEFAULT handling.
[wine.git] / include / static.h
blob2f5332ec53111c08df89973e685f658b2c6cfa35
1 /*
2 * Static-class extra info
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_STATIC_H
8 #define __WINE_STATIC_H
10 #include "windef.h"
12 /* Extra info for STATIC windows */
13 typedef struct
15 HFONT16 hFont; /* Control font (or 0 for system font) */
16 WORD dummy; /* Don't know what MS-Windows puts in there */
17 HICON16 hIcon; /* Icon handle for SS_ICON controls */
18 } STATICINFO;
20 extern LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
21 LPARAM lParam );
23 #endif /* __WINE_STATIC_H */