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