mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00
39 lines
453 B
C++
39 lines
453 B
C++
/*++
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
FxResourceCollection.cpp
|
|
|
|
Abstract:
|
|
|
|
This module implements a base object for derived collection classes and
|
|
the derived collection classes.
|
|
|
|
Author:
|
|
|
|
|
|
|
|
Environment:
|
|
|
|
Kernel mode only
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "FxSupportPch.hpp"
|
|
|
|
#if defined(EVENT_TRACING)
|
|
// Tracing support
|
|
extern "C" {
|
|
#include "FxResourceCollectionKm.tmh"
|
|
}
|
|
#endif
|
|
|
|
FxCmResList::~FxCmResList()
|
|
{
|
|
}
|
|
|
|
|