Exemple #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;
}
Exemple #2
0
// 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;
}