2009-11-10 20:37:28 -07:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
2012-09-29 20:03:37 -06:00
|
|
|
Copyright (c) 2009-2012 Petr Mrázek (peterix@gmail.com)
|
2009-11-10 20:37:28 -07:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any
|
|
|
|
damages arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
|
|
purpose, including commercial applications, and to alter it and
|
|
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
|
|
not claim that you wrote the original software. If you use this
|
|
|
|
software in a product, an acknowledgment in the product documentation
|
|
|
|
would be appreciated but is not required.
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
|
|
must not be misrepresented as being the original software.
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
distribution.
|
|
|
|
*/
|
|
|
|
|
2011-04-10 05:12:28 -06:00
|
|
|
#pragma once
|
|
|
|
|
2010-05-25 22:48:23 -06:00
|
|
|
// this makes everything that includes this file export symbols when using DFHACK_EXPORT (see DFExport.h)
|
2010-05-01 17:20:31 -06:00
|
|
|
#ifndef BUILD_DFHACK_LIB
|
|
|
|
#define BUILD_DFHACK_LIB
|
|
|
|
#endif
|
|
|
|
|
2011-04-10 01:21:32 -06:00
|
|
|
// force large file support
|
2011-04-09 12:54:45 -06:00
|
|
|
#ifdef LINUX_BUILD
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#endif
|
|
|
|
|
2010-05-01 17:20:31 -06:00
|
|
|
// one file for telling the MSVC compiler where it can shove its pointless warnings
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Pragma.h"
|
2010-02-21 16:18:44 -07:00
|
|
|
|
2010-05-01 17:20:31 -06:00
|
|
|
// C99 integer types
|
2011-06-15 09:35:47 -06:00
|
|
|
#include <stdint.h>
|