Prevent name mangling in C++
All checks were successful
CI / build-and-analyze (push) Successful in 1m22s
All checks were successful
CI / build-and-analyze (push) Successful in 1m22s
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
#ifndef CGE_THREAD_H
|
||||
#define CGE_THREAD_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
@@ -53,4 +57,8 @@ void CgeTssFree(CgeTss *tss);
|
||||
void *CgeTssRead(CgeTss *tss);
|
||||
void CgeTssWrite(CgeTss *tss, void *value);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CGE_THREAD_H */
|
||||
|
||||
Reference in New Issue
Block a user