mirror of
https://github.com/maxDcb/DreamWalkers
synced 2026-06-08 15:49:24 +00:00
24 lines
304 B
C++
24 lines
304 B
C++
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
#include <comdef.h>
|
|
#include <mscoree.h>
|
|
#include <metahost.h>
|
|
|
|
#include <string>
|
|
|
|
#include "HostControl.hpp"
|
|
|
|
#include "mscorlib.tlh"
|
|
|
|
struct AssemblyModule
|
|
{
|
|
mscorlib::_AssemblyPtr spAssembly;
|
|
std::string name;
|
|
std::string type;
|
|
};
|
|
|
|
#endif
|