2025-09-28 06:52:49 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
#ifndef __MILSKO_MACHDEP_H__
|
|
|
|
|
#define __MILSKO_MACHDEP_H__
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
2025-09-28 08:49:49 +00:00
|
|
|
#include <stdarg.h>
|
2025-09-28 08:37:12 +00:00
|
|
|
#ifdef _WIN32
|
2025-09-28 21:55:50 +00:00
|
|
|
#include <windows.h>
|
2025-09-28 08:37:12 +00:00
|
|
|
#else
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
2025-09-28 06:52:49 +00:00
|
|
|
|
2025-09-28 07:03:05 +00:00
|
|
|
#if defined(_MILSKO) && defined(_WIN32)
|
2025-09-28 21:15:34 +00:00
|
|
|
#define MILSKODECL extern __declspec(dllexport)
|
2025-09-28 07:03:05 +00:00
|
|
|
#elif defined(_WIN32)
|
2025-09-28 21:15:34 +00:00
|
|
|
#define MILSKODECL extern __declspec(dllimport)
|
2025-09-28 07:03:05 +00:00
|
|
|
#else
|
|
|
|
|
#define MILSKODECL extern
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-09-28 06:52:49 +00:00
|
|
|
#endif
|