source: trunk/include/win/controls.h@ 316

Last change on this file since 316 was 316, checked in by sandervl, 26 years ago

* empty log message *

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
17void CONTROLS_Register();
18void CONTROLS_Unregister();
19
20#endif // __CONTROLS_H
21
Note: See TracBrowser for help on using the repository browser.