mirror of https://github.com/tongzx/nt5src
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.
32 lines
708 B
32 lines
708 B
/******************************************************************************
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
pfcab.h
|
|
|
|
Abstract:
|
|
FDU main
|
|
|
|
Revision History:
|
|
created derekm 02/23/00
|
|
|
|
******************************************************************************/
|
|
|
|
#ifndef PFCAB_H
|
|
#define PFCAB_H
|
|
|
|
#include "pfarray.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// global
|
|
|
|
HRESULT PFExtractFromCab(LPWSTR wszCab, LPWSTR wszDestFile,
|
|
LPWSTR wszFileToFind);
|
|
HRESULT PFGetCabFileList(LPWSTR wszCabName, CPFArrayBSTR &rgFiles);
|
|
HRESULT PFCreateCab(LPCWSTR wszCabName, CPFArrayBSTR &rgFiles);
|
|
|
|
|
|
|
|
|
|
#endif
|