Better implementation of GetShortPathNameA/W.
[wine/multimedia.git] / include / static.h
blob817b5cb0208c6e38f1bf4ede32678740c9dc8e34
1 /*
2 * Static-class extra info
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_STATIC_H
8 #define __WINE_STATIC_H
10 #include "wintypes.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 WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
21 LPARAM lParam );
23 #endif /* __WINE_STATIC_H */