Exemple #1
0
void FreeRpcNatInfo(RPC_NAT_INFO *t)
{
	// Validate arguments
	if (t == NULL)
	{
		return;
	}

	FreeRpcOsInfo(&t->OsInfo);
}
Exemple #2
0
void FreeRpcNatInfo(RPC_NAT_INFO *t)
{
	// 引数チェック
	if (t == NULL)
	{
		return;
	}

	FreeRpcOsInfo(&t->OsInfo);
}