feat(region): add SRgnDestroy

This commit is contained in:
Adam Heinermann 2026-01-26 01:24:20 -08:00 committed by fallenoak
parent 1e1f2f819f
commit 1e86f98691
5 changed files with 55 additions and 2 deletions

View file

@ -578,6 +578,10 @@ void STORMAPI SRgnDelete(HSRGN handle) {
s_rgntable.Delete(handle);
}
void STORMAPI SRgnDestroy() {
s_rgntable.Destroy();
}
void STORMAPI SRgnDuplicate(HSRGN origHandle, HSRGN* handle, uint32_t reserved) {
STORM_VALIDATE_BEGIN;
STORM_VALIDATE(handle);