mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-17 07:34:18 +00:00
* Add libhv and test http client * Remove cpp-httplib * Update premake5.lua * Update client.cpp * Update premake5.lua * Add more windows libs * Use mintaka http client
19 lines
295 B
C
19 lines
295 B
C
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
#define TRIBUFU_CPP
|
|
#endif
|
|
|
|
#ifdef TRIBUFU_LIBRARY
|
|
#define TRIBUFU_API DLLEXPORT
|
|
#else
|
|
#define TRIBUFU_API DLLIMPORT
|
|
#endif
|
|
|
|
// Macros Utils
|
|
|
|
#define TRIBUFU_EXPAND_MACRO(x) x
|
|
#define TRIBUFU_STRINGIFY_MACRO(x) #x
|