1.3 Update:
- Blitz functions are callable using __stdcall, use it instead of using tailored asm. - DLLs that rely on this DLL no longer have to load the DLL to call Blitz functions, just include BlitzPointer.h and use the typedefs BP_BlitzFunction#_t. - Removed Hybrid support until Hybrid is open-source.
This commit is contained in:
@@ -14,9 +14,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// STL Exceptions
|
||||
#include <exception>
|
||||
#include <stdexcept>
|
||||
#pragma once
|
||||
|
||||
// Memory Management
|
||||
#include <memory>
|
||||
@@ -25,4 +23,9 @@
|
||||
#include <windows.h>
|
||||
|
||||
// Macros
|
||||
#define DLL_EXPORT extern "C" //__declspec(dllexport)
|
||||
#ifndef IMPORT
|
||||
#define DLL_METHOD extern "C" //__declspec(dllexport)
|
||||
#else
|
||||
#define DLL_METHOD extern "c" __declspec(dllimport)
|
||||
#endif
|
||||
#define DLL_CALL __stdcall
|
||||
Reference in New Issue
Block a user