21 lines
615 B
C
21 lines
615 B
C
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1994 **
|
|
//*********************************************************************
|
|
|
|
#ifndef _TREEVIEW_H_
|
|
#define _TREEVIEW_H_
|
|
|
|
// state image indexes
|
|
#define IMG_USER 0
|
|
#define IMG_USERS 1
|
|
#define IMG_MACHINE 2
|
|
#define IMG_MACHINES 3
|
|
#define IMG_BOOKOPEN 4
|
|
#define IMG_BOOKCLOSED 5
|
|
#define IMG_CHECKED 6
|
|
#define IMG_UNCHECKED 7
|
|
#define IMG_INDETERMINATE 8
|
|
#define IMG_EMPTY 9
|
|
#endif _TREEVIEW_H_
|