| 15 | } |
| 16 | |
| 17 | bool tt_bundle_opt_bool(BundleHandle handle, const char* key, bool* out) { |
| 18 | return HANDLE_AS_BUNDLE(handle)->optBool(key, *out); |
| 19 | } |
| 20 | |
| 21 | bool tt_bundle_opt_int32(BundleHandle handle, const char* key, int32_t* out) { |
| 22 | return HANDLE_AS_BUNDLE(handle)->optInt32(key, *out); |