From 979873288a51ffda2d6062797410d6f8d53820f7 Mon Sep 17 00:00:00 2001 From: Lephe Date: Thu, 15 Aug 2024 22:17:22 +0200 Subject: [PATCH] defs: allow bool * pointer variants in GINT_CALL --- include/gint/defs/call.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/gint/defs/call.h b/include/gint/defs/call.h index cd442cb..5a2f2bf 100644 --- a/include/gint/defs/call.h +++ b/include/gint/defs/call.h @@ -11,6 +11,8 @@ #ifndef GINT_DEFS_CALL #define GINT_DEFS_CALL +#include + #ifdef __cplusplus extern "C" { #endif @@ -38,6 +40,7 @@ typedef union { type volatile const *name ## _cv; POINTER(void, pv) + POINTER(bool, pb) POINTER(char, pc) POINTER(unsigned char, puc) POINTER(short, ps)