Release 960225
[wine.git] / include / static.h
blobdfe71483b187b8f5aabb07e6e8b88acb3473404e
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 HFONT hFont; /* Control font (or 0 for system font) */
16 WORD dummy; /* Don't know what MS-Windows puts in there */
17 HICON hIcon; /* Icon handle for SS_ICON controls */
18 } STATICINFO;
20 extern LRESULT StaticWndProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam );
22 #endif /* STATIC_H */