mirror of
https://github.com/reactos/reactos.git
synced 2026-07-02 18:34:48 +08:00
21 lines
352 B
C++
21 lines
352 B
C++
#pragma once
|
|
#include "Node.h"
|
|
#include "DeviceNode.h"
|
|
#include "restypes.h"
|
|
|
|
class CResourceNode : public CNode
|
|
{
|
|
public:
|
|
|
|
CResourceNode(
|
|
_In_ CDeviceNode *Node,
|
|
_In_ PCM_PARTIAL_RESOURCE_DESCRIPTOR Descriptor,
|
|
_In_ PSP_CLASSIMAGELIST_DATA ImageListData
|
|
);
|
|
|
|
~CResourceNode();
|
|
|
|
virtual bool SetupNode();
|
|
|
|
};
|