12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
typedef void (*GDExtensionInterfacePrintError)(const char *p_description, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify);
#define _emit(fn, msg) \
(gdjn_ctx -> gd.fn((msg), __func__, __FILE__, __LINE__, true))
#define _warn(msg) _emit(warn, msg)
#define _err(msg) _emit(err, msg)
typedef GDExtensionBool gdBool;
#define _alloc(ty, n) \
((typeof(ty)*)gdjn_alloc(sizeof(ty) * (n)))
#define _realloc(v, ty, n) \
((typeof(ty)*)gdjn_realloc((v), sizeof(ty) * (n)))
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
typedef void (*GDExtensionInterfacePrintError)(const char *p_description, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify);
#define _emit(fn, msg) \
(gdjn_ctx -> gd.fn((msg), __func__, __FILE__, __LINE__, true))
#define _warn(msg) _emit(warn, msg)
#define _err(msg) _emit(err, msg)
#define _emitMsg(fn, desc, msg) \
(gdjn_ctx -> gd.fn((desc), (msg), __func__, __FILE__, __LINE__, true))
#define _errMsg(desc, msg) _emitMsg(errMsg, desc, msg)
typedef GDExtensionBool gdBool;
#define _alloc(ty, n) \
((typeof(ty)*)gdjn_alloc(sizeof(ty) * (n)))
#define _realloc(v, ty, n) \
((typeof(ty)*)gdjn_realloc((v), sizeof(ty) * (n)))
|