FreeRDP
include/freerdp/api.h File Reference
#include <winpr/winpr.h>
#include <winpr/wlog.h>
#include <winpr/platform.h>

Macros

#define FREERDP_ENTRY_POINT(fkt)
 
#define FREERDP_CC
 
#define FREERDP_API
 
#define FREERDP_LOCAL
 
#define IFCALL(_cb, ...)
 
#define IFCALLRET(_cb, _ret, ...)
 
#define IFCALLRESULT(_default_return, _cb, ...)    ((_cb != NULL) ? _cb(__VA_ARGS__) : (_default_return))
 
#define ALIGN64
 

Macro Definition Documentation

◆ ALIGN64

#define ALIGN64

◆ FREERDP_API

#define FREERDP_API

◆ FREERDP_CC

#define FREERDP_CC

◆ FREERDP_ENTRY_POINT

#define FREERDP_ENTRY_POINT (   fkt )
Value:
fkt; \
fkt
static t_corkscrew * fkt
Definition: corkscrew/debug.c:99

FreeRDP: A Remote Desktop Protocol Implementation 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.

◆ FREERDP_LOCAL

#define FREERDP_LOCAL

◆ IFCALL

#define IFCALL (   _cb,
  ... 
)
Value:
do \
{ \
if (_cb != NULL) \
_cb(__VA_ARGS__); \
WLog_VRB("com.freerdp.api", "IFCALL(" #_cb ") == NULL"); \
} while (0)
if availableBytes return NULL
Definition: TPCircularBuffer.h:109
#define WLog_VRB(tag,...)
Definition: include/winpr/wlog.h:202

◆ IFCALLRESULT

#define IFCALLRESULT (   _default_return,
  _cb,
  ... 
)     ((_cb != NULL) ? _cb(__VA_ARGS__) : (_default_return))

◆ IFCALLRET

#define IFCALLRET (   _cb,
  _ret,
  ... 
)
Value:
do \
{ \
if (_cb != NULL) \
_ret = _cb(__VA_ARGS__); \
WLog_VRB("com.freerdp.api", "IFCALLRET(" #_cb ") == NULL"); \
} while (0)