mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
16 lines
339 B
C++
16 lines
339 B
C++
|
|
#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
|