| 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); |
| 23 | } |
| 24 | bool tt_bundle_opt_string(BundleHandle handle, const char* key, char* out, uint32_t outSize) { |
| 25 | std::string out_string; |
| 26 |