comparison dyncallback/dyncall_callback.h @ 405:e221473a8217

comment cleanups and clarification
author Tassilo Philipp
date Wed, 07 Apr 2021 18:51:38 +0200
parents f5577f6bf97a
children 71c884e610f0
comparison
equal deleted inserted replaced
404:524fdca405bf 405:e221473a8217
30 #include "dyncall_signature.h" 30 #include "dyncall_signature.h"
31 #include "dyncall_value.h" 31 #include "dyncall_value.h"
32 32
33 typedef struct DCCallback DCCallback; 33 typedef struct DCCallback DCCallback;
34 34
35 // return value is the type encoded as a signature char (character of the set [vBcCsSiIjJlLfd]). 35 /* return value is the type encoded as a type-specifying signature char (see dyncall_signature.h) */
36 typedef char (DCCallbackHandler)(DCCallback* pcb, DCArgs* args, DCValue* result, void* userdata); 36 typedef char (DCCallbackHandler)(DCCallback* pcb, DCArgs* args, DCValue* result, void* userdata);
37 37
38 #ifdef __cplusplus 38 #ifdef __cplusplus
39 extern "C" { 39 extern "C" {
40 #endif 40 #endif