Elaztek Developer Hub
Blamite Game Engine - blam!  00367.02.08.23.1815.blamite
The core library for the Blamite Game Engine.
api.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 #ifdef BLAM_EXPORTS
6 #define BLAM_EXT_API __declspec(dllexport)
7 #else
8 #define BLAM_EXT_API __declspec(dllimport)
9 #endif
10 
11 namespace Blam::API::v1
12 {
13  namespace Logger
14  {
15  BLAM_EXT_API void LogEvent(std::string message);
16  }
17 }
Blam::API::v1
Definition: api.h:11
Blam::API::v1::Logger::LogEvent
BLAM_EXT_API void LogEvent(std::string message)
Definition: api.cpp:5
BLAM_EXT_API
#define BLAM_EXT_API
Definition: api.h:8