mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
14 lines
228 B
C
14 lines
228 B
C
|
|
#ifndef STORM_REGION_FOUND_PARAM_H
|
||
|
|
#define STORM_REGION_FOUND_PARAM_H
|
||
|
|
|
||
|
|
#include "storm/array.h"
|
||
|
|
|
||
|
|
DECLARE_STRUCT(FOUNDPARAM);
|
||
|
|
|
||
|
|
struct FOUNDPARAM {
|
||
|
|
void* param;
|
||
|
|
int32_t sequence;
|
||
|
|
};
|
||
|
|
STORM_TS_GROWABLE_ARRAY(FOUNDPARAM);
|
||
|
|
|
||
|
|
#endif
|