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.

15 lines
790 B

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