Go to the documentation of this file.
37 #ifndef _VAMP_HOSTSDK_HOSTGUARD_H_
38 #define _VAMP_HOSTSDK_HOSTGUARD_H_
40 #ifdef _VAMP_IN_PLUGINSDK
41 #error You have included headers from both vamp-sdk and vamp-hostsdk in the same source file. Please include only vamp-sdk headers in plugin code, and only vamp-hostsdk headers in host code.
44 #define _VAMP_IN_HOSTSDK
46 #ifdef _VAMP_NO_HOST_NAMESPACE
47 #define _VAMP_SDK_HOSTSPACE_BEGIN(h)
48 #define _VAMP_SDK_HOSTSPACE_END(h)
49 #define _VAMP_SDK_PLUGSPACE_BEGIN(h)
50 #define _VAMP_SDK_PLUGSPACE_END(h)
52 #define _VAMP_SDK_HOSTSPACE_BEGIN(h) \
55 #define _VAMP_SDK_HOSTSPACE_END(h) \
57 using namespace _VampHost;
58 #define _VAMP_SDK_PLUGSPACE_BEGIN(h) \
61 #define _VAMP_SDK_PLUGSPACE_END(h) \
63 using namespace _VampHost;