Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
790 B

//===========================================================================
// This header file contains the function prototypes to allow MSInfo to
// open a CAB file into a temporary directory.
//
// Copyright (c) 1998-1999 Microsoft Corporation
//===========================================================================
BOOL GetCABExplodeDir(CString &destination, BOOL fDeleteFiles = TRUE, const CString & strDontDelete = CString(""));
BOOL OpenCABFile(const CString &filename, const CString &destination);
BOOL FindFileToOpen(const CString & destination, CString & filename);
void KillDirectory(const CString & strDir, const CString & strDontDelete = CString(""));
extern "C" {
BOOL explode_cab(char *cabinet_fullpath, char *destination);
BOOL isCabFile(int fh, void **phfdi);
}