source:
trunk/include/win/controls.h@
316
Last change on this file since 316 was 316, checked in by , 26 years ago | |
---|---|
File size: 336 bytes |
Line | |
---|---|
1 | /* |
2 | * Win32 common controls |
3 | * |
4 | * Copyright (c) 1999 Christoph Bratschi |
5 | * |
6 | */ |
7 | |
8 | #ifndef __CONTROLS_H |
9 | #define __CONTROLS_H |
10 | |
11 | #include "wingdi.h" |
12 | |
13 | #define GetInfoPtr(hwnd) (GetWindowLongA(hwnd,0)) |
14 | #define SetInfoPtr(hwnd,data) \ |
15 | SetWindowLongA(hwnd,0,data) |
16 | |
17 | void CONTROLS_Register(); |
18 | void CONTROLS_Unregister(); |
19 | |
20 | #endif // __CONTROLS_H |
21 |
Note:
See TracBrowser
for help on using the repository browser.