blueloveTH 6 giorni fa
parent
commit
fe56ceb82e
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      include/pocketpy/pocketpy.h

+ 5 - 0
include/pocketpy/pocketpy.h

@@ -37,6 +37,11 @@ typedef struct py_TValue {
 
     union {
         int64_t _i64;
+        double _f64;
+        bool _bool;
+        py_CFunction _cfunc;
+        void* _obj;
+        void* _ptr;
         char _chars[16];
     };
 } py_TValue;