|
|
1.1 root 1: /*
2: * ICONBOX.H
3: *
4: * Structures and definitions for the IconBox control.
5: *
6: * Copyright (c)1992 Microsoft Corporation, All Right Reserved
7: */
8:
9:
10: #ifndef _ICONBOX_H_
11: #define _ICONBOX_H_
12:
13: //Function prototypes
14: BOOL FIconBoxInitialize(HINSTANCE);
15: void IconBoxUninitialize(void);
16: LONG CALLBACK EXPORT IconBoxWndProc(HWND, UINT, WPARAM, LPARAM);
17:
18:
19: //Window extra bytes contain the bitmap index we deal with currently.
20: #define CBICONBOXWNDEXTRA (sizeof(HGLOBAL)+sizeof(BOOL))
21: #define IBWW_HIMAGE 0
22: #define IBWW_FLABEL (sizeof(HGLOBAL))
23:
24: //Control messages
25: #define IBXM_IMAGESET (WM_USER+0)
26: #define IBXM_IMAGEGET (WM_USER+1)
27: #define IBXM_IMAGEFREE (WM_USER+2)
28: #define IBXM_LABELENABLE (WM_USER+3)
29:
30:
31: #endif //_ICONBOX_H_
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.