diff dyncall/dyncall_signature.h @ 364:3bdd326dc269

- Todo entries - some clarifications in code about GNU thiscalls (which are effectively idential to cdecl calls) * took away own mode identifier, as aliasing to cdecl now - cleanups
author Tassilo Philipp
date Tue, 14 Apr 2020 19:35:30 +0200
parents 78dfa2f9783a
children a3e47b7c808c
line wrap: on
line diff
--- a/dyncall/dyncall_signature.h	Tue Apr 14 17:47:33 2020 +0200
+++ b/dyncall/dyncall_signature.h	Tue Apr 14 19:35:30 2020 +0200
@@ -70,7 +70,7 @@
 #define DC_SIGCHAR_CC_FASTCALL_MS      'F'
 #define DC_SIGCHAR_CC_FASTCALL_GNU     'f'
 #define DC_SIGCHAR_CC_THISCALL_MS      '+'
-#define DC_SIGCHAR_CC_THISCALL_GNU     '#'
+#define DC_SIGCHAR_CC_THISCALL_GNU     '#' /* GNU thiscalls are cdecl, but keep specific sig char for clarity */
 #define DC_SIGCHAR_CC_ARM_ARM          'A'
 #define DC_SIGCHAR_CC_ARM_THUMB        'a'
 #define DC_SIGCHAR_CC_SYSCALL          '$'