mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-06 18:08:30 +00:00
12 lines
226 B
C++
12 lines
226 B
C++
#ifndef _INCLUDE_NATIVES_H_
|
|
#define _INCLUDE_NATIVES_H_
|
|
|
|
|
|
namespace natives
|
|
{
|
|
// Called during the load process to setup the extension natives
|
|
void Setup(std::vector<sp_nativeinfo_t>& vec);
|
|
}
|
|
|
|
#endif // !_INCLUDE_NATIVES_H_
|