Files
milsko/include/Mw/MachDep.h
NishiOwO cd7600f0f2 gdi backend is functional
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@45 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-09-29 04:11:24 +00:00

24 lines
403 B
C

/* $Id$ */
#ifndef __MW_MACHDEP_H__
#define __MW_MACHDEP_H__
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h>
#endif
#if defined(_MILSKO) && defined(_WIN32)
#define MWDECL extern __declspec(dllexport)
#elif defined(_WIN32)
#define MWDECL extern __declspec(dllimport)
#else
#define MWDECL extern
#endif
#endif