2011-07-07 07:08:37 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-07 07:08:37 +04:00
|
|
|
* FreeRDP Interface
|
|
|
|
*
|
|
|
|
* Copyright 2009-2011 Jay Sorg
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-09-03 18:47:45 +04:00
|
|
|
#ifndef FREERDP_API_H
|
|
|
|
#define FREERDP_API_H
|
2011-07-07 07:08:37 +04:00
|
|
|
|
2020-04-25 09:26:37 +03:00
|
|
|
#include <winpr/winpr.h>
|
2023-08-04 11:14:42 +03:00
|
|
|
#include <winpr/wlog.h>
|
2016-08-10 18:01:54 +03:00
|
|
|
#include <winpr/platform.h>
|
|
|
|
|
2023-08-25 14:41:09 +03:00
|
|
|
/* To silence missing prototype warnings for library entry points use this macro.
|
|
|
|
* It first declares the function as prototype and then again as function implementation
|
|
|
|
*/
|
|
|
|
#define FREERDP_ENTRY_POINT(fkt) \
|
|
|
|
fkt; \
|
|
|
|
fkt
|
|
|
|
|
2012-09-03 18:47:45 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define FREERDP_CC __cdecl
|
|
|
|
#else
|
|
|
|
#define FREERDP_CC
|
|
|
|
#endif
|
|
|
|
|
2011-07-07 07:08:37 +04:00
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
2016-08-10 10:12:55 +03:00
|
|
|
#ifdef FREERDP_EXPORTS
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define FREERDP_API __attribute__((dllexport))
|
2011-07-07 07:08:37 +04:00
|
|
|
#else
|
2016-08-10 10:12:55 +03:00
|
|
|
#define FREERDP_API __declspec(dllexport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define FREERDP_API __attribute__((dllimport))
|
|
|
|
#else
|
|
|
|
#define FREERDP_API __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#else
|
2023-11-10 10:56:14 +03:00
|
|
|
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
2019-11-06 17:24:51 +03:00
|
|
|
#define FREERDP_API __attribute__((visibility("default")))
|
2016-08-10 10:12:55 +03:00
|
|
|
#else
|
|
|
|
#define FREERDP_API
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2022-09-26 12:22:02 +03:00
|
|
|
#if defined(EXPORT_ALL_SYMBOLS)
|
2016-08-10 10:12:55 +03:00
|
|
|
#define FREERDP_LOCAL FREERDP_API
|
|
|
|
#else
|
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
|
|
|
#define FREERDP_LOCAL
|
|
|
|
#else
|
2023-11-10 10:56:14 +03:00
|
|
|
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
2019-11-06 17:24:51 +03:00
|
|
|
#define FREERDP_LOCAL __attribute__((visibility("hidden")))
|
2016-08-10 10:12:55 +03:00
|
|
|
#else
|
|
|
|
#define FREERDP_LOCAL
|
|
|
|
#endif
|
|
|
|
#endif
|
2011-07-07 07:08:37 +04:00
|
|
|
#endif
|
|
|
|
|
2023-08-04 11:14:42 +03:00
|
|
|
#define IFCALL(_cb, ...) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (_cb != NULL) \
|
|
|
|
_cb(__VA_ARGS__); \
|
|
|
|
else \
|
|
|
|
WLog_VRB("com.freerdp.api", "IFCALL(" #_cb ") == NULL"); \
|
2019-11-06 17:24:51 +03:00
|
|
|
} while (0)
|
2023-08-04 11:14:42 +03:00
|
|
|
#define IFCALLRET(_cb, _ret, ...) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (_cb != NULL) \
|
|
|
|
_ret = _cb(__VA_ARGS__); \
|
|
|
|
else \
|
|
|
|
WLog_VRB("com.freerdp.api", "IFCALLRET(" #_cb ") == NULL"); \
|
2019-11-06 17:24:51 +03:00
|
|
|
} while (0)
|
2023-08-04 11:14:42 +03:00
|
|
|
|
2023-10-16 17:32:56 +03:00
|
|
|
#if 0 // defined(__GNUC__)
|
2023-08-04 11:14:42 +03:00
|
|
|
#define IFCALLRESULT(_default_return, _cb, ...) \
|
|
|
|
({ \
|
|
|
|
(_cb != NULL) ? _cb(__VA_ARGS__) : ({ \
|
|
|
|
WLog_VRB("com.freerdp.api", "IFCALLRESULT(" #_cb ") == NULL"); \
|
|
|
|
(_default_return); \
|
|
|
|
}); \
|
|
|
|
})
|
|
|
|
#else
|
2023-08-12 10:01:30 +03:00
|
|
|
#define IFCALLRESULT(_default_return, _cb, ...) \
|
|
|
|
((_cb != NULL) ? _cb(__VA_ARGS__) : (_default_return))
|
2023-08-04 11:14:42 +03:00
|
|
|
#endif
|
2011-07-28 08:38:25 +04:00
|
|
|
|
2023-10-16 17:32:56 +03:00
|
|
|
#if defined(__GNUC__)
|
2023-03-14 12:39:18 +03:00
|
|
|
#define ALIGN64 __attribute__((aligned(8)))
|
|
|
|
#else
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define ALIGN64 __declspec(align(8))
|
|
|
|
#else
|
|
|
|
#define ALIGN64
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-09-03 18:47:45 +04:00
|
|
|
#endif /* FREERDP_API */
|