Release 970329
[wine/multimedia.git] / include / static.h
blob45a8fff02ff3078928c76f5ccda013af706e1258
1 /*
2 * Static-class extra info
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_STATIC_H
8 #define __WINE_STATIC_H
10 #include "windows.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 StaticWndProc( HWND16 hWnd, UINT16 uMsg, WPARAM16 wParam,
21 LPARAM lParam );
23 #endif /* __WINE_STATIC_H */