コード例 #1
0
void ShareSystem::AddNatives(IExtension *myself, const sp_nativeinfo_t *natives)
{
	CNativeOwner *pOwner;

	pOwner = g_Extensions.GetNativeOwner(myself);

	pOwner->AddNatives(natives);
}
コード例 #2
0
ファイル: common_logic.cpp プロジェクト: War3Evo/sourcemod
static void AddNatives(sp_nativeinfo_t *natives)
{
	g_CoreNatives.AddNatives(natives);
}
コード例 #3
0
ファイル: common_logic.cpp プロジェクト: War3Evo/sourcemod
void CoreNativesToAdd::OnSourceModAllInitialized()
{
	g_CoreNatives.AddNatives(m_NativeList);
}