| 39 | } |
| 40 | |
| 41 | void tt_bundle_put_bool(BundleHandle handle, const char* key, bool value) { |
| 42 | HANDLE_AS_BUNDLE(handle)->putBool(key, value); |
| 43 | } |
| 44 | |
| 45 | void tt_bundle_put_int32(BundleHandle handle, const char* key, int32_t value) { |
| 46 | HANDLE_AS_BUNDLE(handle)->putInt32(key, value); |