feat(region): add region functions

This commit is contained in:
fallenoak 2023-03-30 14:37:05 -05:00 committed by GitHub
parent 71ce2471ac
commit cdd3413a1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 357 additions and 0 deletions

15
storm/Region.hpp Normal file
View file

@ -0,0 +1,15 @@
#ifndef STORM_REGION_HPP
#define STORM_REGION_HPP
#include "storm/region/Types.hpp"
#include <cstdint>
void SRgnCombineRectf(HSRGN handle, RECTF* rect, void* param, int32_t combineMode);
void SRgnCreate(HSRGN* handlePtr, uint32_t reserved);
void SRgnDelete(HSRGN handle);
void SRgnGetBoundingRectf(HSRGN handle, RECTF* rect);
#endif