Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 1998 Microsoft Corporation
Module Name:
expandit.h
Abstract:
Routines for expanding CAB files.
Author:
Marc R. Whitten (marcw) 03-Aug-1998
Revision History:
<alias> <date> <comments>
--*/
#pragma once
BOOL ExpandFileA ( IN PCSTR FullPath, IN PCSTR TempDir );
ExpandFileW ( IN PCWSTR FullPath, IN PCWSTR TempDir );
ExpandAllFilesA ( IN PCSTR FileDir, IN PCSTR TempDir );
ExpandAllFilesW ( IN PCWSTR FileDir, IN PCWSTR TempDir );
#ifdef UNICODE
#define ExpandFile ExpandFileW
#define ExpandAllFiles ExpandAllFilesW
#else
#define ExpandFile ExpandFileA
#define ExpandAllFiles ExpandAllFilesA
#endif
|