blob: 3774007cbe1926e9c4404230b4d4bdac29efbb17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "commonheaders.h"
SERVICE get_version(void*)
{
return 0;
}
void register_core_services()
{
CreateServiceFunction("EC/GetVersionInt", (SERVICE)get_version);
}
|