2010-05-26 09:54:30 -06:00
|
|
|
#ifndef DFHACK_API_H
|
2010-05-25 22:48:23 -06:00
|
|
|
#define DFHACK_API_H
|
|
|
|
|
2011-03-18 01:53:59 -06:00
|
|
|
/**
|
|
|
|
* \defgroup grp_context Context and Process management
|
|
|
|
* \defgroup grp_modules DFHack Module classes
|
|
|
|
* \defgroup grp_cwrap C Wrapper
|
|
|
|
*/
|
|
|
|
|
2011-04-10 05:12:28 -06:00
|
|
|
#pragma once
|
|
|
|
|
2010-06-24 23:11:26 -06:00
|
|
|
// Defines
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define DEPRECATED(func) func __attribute__ ((deprecated))
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#define DEPRECATED(func) __declspec(deprecated) func
|
|
|
|
#else
|
|
|
|
#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
|
|
|
|
#define DEPRECATED(func) func
|
|
|
|
#endif
|
|
|
|
|
2010-06-04 16:02:02 -06:00
|
|
|
// DFHack core classes and types
|
2010-05-25 22:48:23 -06:00
|
|
|
#include "dfhack/DFIntegers.h"
|
|
|
|
#include "dfhack/DFError.h"
|
|
|
|
#include "dfhack/DFContextManager.h"
|
|
|
|
#include "dfhack/DFContext.h"
|
2010-08-20 06:10:05 -06:00
|
|
|
#include "dfhack/VersionInfo.h"
|
2010-05-25 22:48:23 -06:00
|
|
|
#include "dfhack/DFProcess.h"
|
|
|
|
#include "dfhack/DFTypes.h"
|
|
|
|
|
2010-06-04 16:02:02 -06:00
|
|
|
// DFHack modules
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/modules/Buildings.h"
|
2011-04-02 16:15:47 -06:00
|
|
|
#include "dfhack/modules/Engravings.h"
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/modules/Materials.h"
|
|
|
|
#include "dfhack/modules/Constructions.h"
|
|
|
|
#include "dfhack/modules/Creatures.h"
|
|
|
|
#include "dfhack/modules/Translation.h"
|
|
|
|
#include "dfhack/modules/World.h"
|
|
|
|
#include "dfhack/modules/Items.h"
|
|
|
|
#include "dfhack/modules/Vegetation.h"
|
|
|
|
#include "dfhack/modules/Maps.h"
|
2010-09-03 23:43:39 -06:00
|
|
|
#include "dfhack/modules/Gui.h"
|
2010-05-25 22:48:23 -06:00
|
|
|
|
2010-06-05 16:56:09 -06:00
|
|
|
/*
|
|
|
|
* This is a header full of ugly, volatile things.
|
|
|
|
* Only for use of official DFHack tools!
|
|
|
|
*/
|
2010-06-04 16:02:02 -06:00
|
|
|
#ifdef DFHACK_WANT_MISCUTILS
|
|
|
|
#include "dfhack/DFMiscUtils.h"
|
|
|
|
#endif
|
2010-06-05 16:56:09 -06:00
|
|
|
|
|
|
|
// define this to get the static tiletype->properties mapping
|
2010-06-04 16:02:02 -06:00
|
|
|
#ifdef DFHACK_WANT_TILETYPES
|
|
|
|
#include "dfhack/DFTileTypes.h"
|
|
|
|
#endif
|
2010-06-05 16:56:09 -06:00
|
|
|
#endif
|