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.
29 lines
644 B
29 lines
644 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1995
|
|
//
|
|
// File: idlarray.cpp
|
|
//
|
|
// Contents: CIDListArray implementation
|
|
//
|
|
// Classes: CIDListArray
|
|
//
|
|
// History: 15-Aug-95 JonBe Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "precomp.h"
|
|
|
|
//
|
|
// Our derived class' constructors do nothing interesting, other than
|
|
// invoking their base class' constructor
|
|
//
|
|
|
|
CIDListArray::CIDListArray() : CPtrArray()
|
|
{
|
|
}
|
|
|
|
CIDListArray::CIDListArray(HANDLE hHeap) : CPtrArray(hHeap)
|
|
{
|
|
}
|