mirror of
https://github.com/reactos/reactos.git
synced 2025-05-14 23:03:53 +00:00

Not all files are included, but these are necessary to compile cdrom driver. So far it can only be statically linked with drivers, a proper implementation requires wdfldr helper driver
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()
|
|
{
|
|
}
|
|
|
|
|