mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
615 B
20 lines
615 B
//*********************************************************************
|
|
//* 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_
|