mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 18:42:28 +00:00
10 lines
245 B
C++
10 lines
245 B
C++
#ifndef STORM_OPTION_OPTION_HPP
|
|
#define STORM_OPTION_OPTION_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
int32_t StormSetOption(int32_t optname, const void* optval, uint32_t optlen);
|
|
|
|
int32_t StormGetOption(int32_t optname, void* optval, uint32_t* optlen);
|
|
|
|
#endif
|