Added missing `extern "C"` block in `String.h`

This commit is contained in:
flobernd 2018-03-07 14:56:45 +01:00
parent bad25117d2
commit 74c3211dd0
No known key found for this signature in database
GPG Key ID: 9C3AE0ED4A969F10
1 changed files with 8 additions and 0 deletions

View File

@ -31,6 +31,10 @@
#include <Zydis/Status.h>
#include <Zydis/Internal/LibC.h>
#ifdef __cplusplus
extern "C" {
#endif
/* ============================================================================================== */
/* Enums and types */
/* ============================================================================================== */
@ -349,4 +353,8 @@ ZYDIS_EXPORT ZydisStatus ZydisStringAppendHexS(ZydisString* string, ZydisI64 val
/* ============================================================================================== */
#ifdef __cplusplus
}
#endif
#endif // ZYDIS_STRING_H