Release 970215
[wine/multimedia.git] / include / static.h
blobc664cc45ef6473be730d947541bf9a4eecd71a92
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,UINT uMsg,WPARAM16 wParam,LPARAM lParam );
22 #endif /* __WINE_STATIC_H */