blob: 5bd617e5a53404c49e92e2a8bf11b6841bca45e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#include <windows.h>
#include <aclapi.h>
#include <mergemod.h>
#include "dutil.h"
#include "conutil.h"
#include "memutil.h"
#include "pathutil.h"
#include "strutil.h"
#include "cabcutil.h"
#include "cabutil.h"
HRESULT SmartCabCommand(int argc, LPWSTR argv[]);
HRESULT ResetAclsCommand(int argc, LPWSTR argv[]);
HRESULT EnumCabCommand(int argc, LPWSTR argv[]);
HRESULT ExtractCabCommand(int argc, LPWSTR argv[]);
|