Release 960811
[wine] / include / static.h
1 /*
2  * Static-class extra info
3  *
4  * Copyright 1994 Alexandre Julliard
5  */
6
7 #ifndef STATIC_H
8 #define STATIC_H
9
10 #include "windows.h"
11
12   /* Extra info for STATIC windows */
13 typedef struct
14 {
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;
19
20 extern LRESULT StaticWndProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam );
21
22 #endif  /* STATIC_H */