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.

31 lines
708 B

  1. /******************************************************************************
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. pfcab.h
  5. Abstract:
  6. FDU main
  7. Revision History:
  8. created derekm 02/23/00
  9. ******************************************************************************/
  10. #ifndef PFCAB_H
  11. #define PFCAB_H
  12. #include "pfarray.h"
  13. //////////////////////////////////////////////////////////////////////////////
  14. // global
  15. HRESULT PFExtractFromCab(LPWSTR wszCab, LPWSTR wszDestFile,
  16. LPWSTR wszFileToFind);
  17. HRESULT PFGetCabFileList(LPWSTR wszCabName, CPFArrayBSTR &rgFiles);
  18. HRESULT PFCreateCab(LPCWSTR wszCabName, CPFArrayBSTR &rgFiles);
  19. #endif