Comments for IMGUI_API

This commit is contained in:
ocornut
2015-02-25 23:10:17 +00:00
parent 8bcf2f25f2
commit fe48562171
2 changed files with 7 additions and 1 deletions

View File

@ -23,11 +23,13 @@ struct ImGuiWindow;
#include <stdlib.h> // NULL, malloc
#include <string.h> // memset, memmove
// Define assertion handler.
#ifndef IM_ASSERT
#include <assert.h>
#define IM_ASSERT(_EXPR) assert(_EXPR)
#endif
// Define attributes of all API symbols declarations, e.g. for DLL under Windows.
#ifndef IMGUI_API
#define IMGUI_API
#endif