コード例 #1
0
// Function that gets file information from Navel's .pac files
bool CNavel::Mount(CArcFile* archive)
{
	if (MountPac(archive))
		return true;
	if (MountWpd(archive))
		return true;

	return false;
}
コード例 #2
0
ファイル: Navel.cpp プロジェクト: angathorion/ExtractData
// Function that gets file information from Navel's .pac files
BOOL CNavel::Mount(CArcFile* pclArc)
{
	if (MountPac(pclArc) == TRUE)
		return TRUE;
	if (MountWpd(pclArc) == TRUE)
		return TRUE;

	return FALSE;
}