libultraship
Reimplementations of libultra (N64 SDK) functions for modern hardware
Loading...
Searching...
No Matches
Api.h
Go to the documentation of this file.
1
9#pragma once
10
17#ifdef __cplusplus
18#define API_EXTERN extern "C"
19#else
20#define API_EXTERN extern
21#endif
22
30#ifdef _WIN32
31#ifndef __DLL__
32#define API_EXPORT API_EXTERN __declspec(dllexport)
33#else
34#define API_EXPORT API_EXTERN __declspec(dllimport)
35#endif
36#else
37#define API_EXPORT API_EXTERN
38#endif