Source code of Windows XP (NT5)
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.
|
|
//+---------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1993 - 1997.
//
// File: cstrings.h
//
// Contents: Defines the class CStrings to manage a dynamically
// expandable array of string pairs which may be enumerated
//
// Classes:
//
// Methods:
//
// History: 23-Apr-96 BruceMa Created.
//
//----------------------------------------------------------------------
const DWORD INCREMENT_SIZE = 1024;
class SItem : public CObject { public:
SItem(LPCTSTR sItem, LPCTSTR sTitle, LPCTSTR sAppid); ~SItem();
// data members
CString szItem; CString szTitle; CString szAppid; ULONG fMarked:1; ULONG fChecked:1; ULONG fHasAppid:1; ULONG fDontDisplay:1; UINT ulClsids; UINT ulClsidTbl; TCHAR **ppszClsids; };
class CStrings { public:
CStrings(void); ~CStrings(void);
SItem *PutItem(TCHAR *szString, TCHAR *szTitle, TCHAR *szAppid); SItem *FindItem(TCHAR *szItem); SItem *FindAppid(TCHAR *szAppid); BOOL AddClsid(SItem *pItem, TCHAR *szClsid); DWORD InitGetNext(void); SItem *GetNextItem(void); SItem *GetItem(DWORD dwItem); DWORD GetNumItems(void); BOOL RemoveItem(DWORD dwItem); BOOL RemoveAll(void);
private:
CObArray arrSItems; int m_nCount; };
|