mirror of https://github.com/lianthony/NT4.0
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.
25 lines
534 B
25 lines
534 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1995
|
|
//
|
|
// File: idlarray.h
|
|
//
|
|
// Contents: CIDListArray class declaration
|
|
//
|
|
// History: 15-Aug-95 JonBe Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _IDLARRAY_H_
|
|
#define _IDLARRAY_H_
|
|
|
|
class CIDListArray: public CPtrArray
|
|
{
|
|
public:
|
|
|
|
CIDListArray();
|
|
CIDListArray(HANDLE hHeap);
|
|
};
|
|
|
|
#endif // _IDLARRAY_H_
|