コード例 #1
0
ファイル: Str.c プロジェクト: SoftEtherVPN/SoftEtherVPN
// Release of the string library
void FreeStringLibrary()
{
	// Release of the International Library
	FreeInternational();

	// Release of the lock for token
	DeleteLock(token_lock);
	token_lock = NULL;
}
コード例 #2
0
ファイル: Str.c プロジェクト: falcon8823/utvpn
// 文字列ライブラリの解放
void FreeStringLibrary()
{
	// 国際ライブラリの解放
	FreeInternational();

	// トークン用ロックの解放
	DeleteLock(token_lock);
	token_lock = NULL;
}