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.
27 lines
324 B
27 lines
324 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Listdata.h : class implementation of list member data
|
|
|
|
File History:
|
|
|
|
JonY Jan-96 created
|
|
|
|
--*/
|
|
|
|
|
|
//
|
|
|
|
class CItemData : public CObject
|
|
{
|
|
public:
|
|
HICON hIcon;
|
|
HICON hSelIcon;
|
|
CString csName;
|
|
CString csDesc;
|
|
CString csAppStart1;
|
|
CString csAppStart2;
|
|
};
|