squall/storm/option/Option.hpp

11 lines
245 B
C++
Raw Permalink Normal View History

#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