mirror of https://github.com/x64dbg/zydis
Added missing `extern "C"` block in `String.h`
This commit is contained in:
parent
bad25117d2
commit
74c3211dd0
|
@ -31,6 +31,10 @@
|
||||||
#include <Zydis/Status.h>
|
#include <Zydis/Status.h>
|
||||||
#include <Zydis/Internal/LibC.h>
|
#include <Zydis/Internal/LibC.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ============================================================================================== */
|
/* ============================================================================================== */
|
||||||
/* Enums and types */
|
/* Enums and types */
|
||||||
/* ============================================================================================== */
|
/* ============================================================================================== */
|
||||||
|
@ -349,4 +353,8 @@ ZYDIS_EXPORT ZydisStatus ZydisStringAppendHexS(ZydisString* string, ZydisI64 val
|
||||||
|
|
||||||
/* ============================================================================================== */
|
/* ============================================================================================== */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // ZYDIS_STRING_H
|
#endif // ZYDIS_STRING_H
|
||||||
|
|
Loading…
Reference in New Issue