23 lines
359 B
C
23 lines
359 B
C
#pragma once
|
|
|
|
#ifndef UTILES_EXPORT
|
|
#ifdef _WINDLL
|
|
#define UTILES_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define UTILES_EXPORT __declspec(dllimport)
|
|
#endif
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#ifndef UINT16_MAX
|
|
#define UINT16_MAX 0xffff
|
|
#endif
|
|
#ifdef _WIN64
|
|
typedef __int64 ssize_t;
|
|
#else
|
|
typedef _w64 int ssize_t;
|
|
|
|
#endif
|
|
|
|
#pragma warning(disable:4996)
|