mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-29 05:41:29 +00:00
16 lines
256 B
C
16 lines
256 B
C
#pragma once
|
|
|
|
#ifndef __PRETTY_FUNCTION__
|
|
#ifdef _MSC_VER
|
|
#define __PRETTY_FUNCTION__ __FUNCSIG__
|
|
#else
|
|
#define __PRETTY_FUNCTION__ __FUNCTION__
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#define EQP_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define EQP_EXPORT
|
|
#endif
|