Changeset 353 for trunk/include/win/static.h
- Timestamp:
- Jul 21, 1999, 9:13:47 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/static.h
r4 r353 1 /* $Id: static.h,v 1. 1 1999-05-24 20:19:19 ktkExp $ */1 /* $Id: static.h,v 1.2 1999-07-21 07:13:47 sandervl Exp $ */ 2 2 3 3 /* … … 5 5 * 6 6 * Copyright 1994 Alexandre Julliard 7 * Copyright 1999 Christoph Bratschi 7 8 */ 9 10 #define ODINSTATICCLASSNAME "ODIN_STATIC" 11 #define WIN32STATICCLASSNAME "STATIC" 8 12 9 13 #ifndef __WINE_STATIC_H … … 15 19 typedef struct 16 20 { 17 HFONT 16hFont; /* Control font (or 0 for system font) */21 HFONT hFont; /* Control font (or 0 for system font) */ 18 22 WORD dummy; /* Don't know what MS-Windows puts in there */ 19 HICON 16 hIcon; /* Icon handle for SS_ICON controls */23 HICON hIcon; /* Icon handle for SS_ICON controls */ 20 24 } STATICINFO; 21 25 22 extern LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, 23 LPARAM lParam ); 26 extern LRESULT WINAPI StaticWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam); 27 28 BOOL STATIC_Register(); 29 BOOL STATIC_Unregister(); 24 30 25 31 #endif /* __WINE_STATIC_H */ 32
Note:
See TracChangeset
for help on using the changeset viewer.