Line | |
---|
1 | /* $Id: static.h,v 1.2 1999-07-21 07:13:47 sandervl Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Static-class extra info
|
---|
5 | *
|
---|
6 | * Copyright 1994 Alexandre Julliard
|
---|
7 | * Copyright 1999 Christoph Bratschi
|
---|
8 | */
|
---|
9 |
|
---|
10 | #define ODINSTATICCLASSNAME "ODIN_STATIC"
|
---|
11 | #define WIN32STATICCLASSNAME "STATIC"
|
---|
12 |
|
---|
13 | #ifndef __WINE_STATIC_H
|
---|
14 | #define __WINE_STATIC_H
|
---|
15 |
|
---|
16 | #include "windef.h"
|
---|
17 |
|
---|
18 | /* Extra info for STATIC windows */
|
---|
19 | typedef struct
|
---|
20 | {
|
---|
21 | HFONT hFont; /* Control font (or 0 for system font) */
|
---|
22 | WORD dummy; /* Don't know what MS-Windows puts in there */
|
---|
23 | HICON hIcon; /* Icon handle for SS_ICON controls */
|
---|
24 | } STATICINFO;
|
---|
25 |
|
---|
26 | extern LRESULT WINAPI StaticWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam);
|
---|
27 |
|
---|
28 | BOOL STATIC_Register();
|
---|
29 | BOOL STATIC_Unregister();
|
---|
30 |
|
---|
31 | #endif /* __WINE_STATIC_H */
|
---|
32 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.