Release 961023
[wine/multimedia.git] / include / static.h
blob42ebfe094dc81e1e1dbad4473e7b0fb5b6fd92fe
1 /*
2 * Static-class extra info
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef STATIC_H
8 #define 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(HWND hWnd,UINT uMsg,WPARAM16 wParam,LPARAM lParam );
22 #endif /* STATIC_H */