getic_ut_plug.cpp
来自「一个类似QUAKE的CSG关卡编辑器」· C++ 代码 · 共 37 行
CPP
37 行
// getic_ms3d_plug.cpp : Defines the entry point for the DLL application.
//
#include "stdafx.h"
#include "P3dsLoader.h"
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
return TRUE;
}
extern "C"
{
EX_IN IGeticPlug* CreateInstance()
{
return new P3dsLoader();
}
EX_IN void DestroyInstance(IGeticPlug* pr)
{
delete pr;
}
const char* GetCatName(void)
{
return "getic plugin, 3ds";
}
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?