summaryrefslogtreecommitdiff
path: root/core/basic-services.cpp
blob: ffefa3ad044d0444a8364dec820953740b35ce93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "commonheaders.h"

void *get_version(void*)
{
	return (void*)ec_version;
}


void register_core_services()
{
	CreateServiceFunction("EC/GetVersionInt", (SERVICE)get_version);
}