/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-21.6
Code/Samples/SampleGamePlugin/SampleGamePluginDLL.h
17 строк
477 B
Jan Krassnigg
Added sample components for how to send messages
22 май 2020, 11:50
22 май 2020, 11:50
e4d7834
Код
Авторство
О чём код?
#pragma once #include <Foundation/Basics.h> #include <Foundation/Configuration/Plugin.h> // BEGIN-DOCS-CODE-SNIPPET: dll-export-defines // Configure the DLL Import/Export Define #if EZ_ENABLED(EZ_COMPILE_ENGINE_AS_DLL) # ifdef BUILDSYSTEM_BUILDING_SAMPLEGAMEPLUGIN_LIB # define EZ_SAMPLEGAMEPLUGIN_DLL __declspec(dllexport) # else # define EZ_SAMPLEGAMEPLUGIN_DLL __declspec(dllimport) # endif #else # define EZ_SAMPLEGAMEPLUGIN_DLL #endif // END-DOCS-CODE-SNIPPET