blob: 5a83607472d4e7976462a31cae53acd738322cd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#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 <strsafe.h>
#include <ShlObj.h>
#include <sddl.h>
// Include error.h before dutil.h
#include <dutilsources.h>
#include "error.h"
#include <dutil.h>
#include <verutil.h>
#include <apputil.h>
#include <atomutil.h>
#include <dictutil.h>
#include <dirutil.h>
#include <envutil.h>
#include <fileutil.h>
#include <guidutil.h>
#include <iniutil.h>
#include <locutil.h>
#include <memutil.h>
#include <pathutil.h>
#include <pipeutil.h>
#include <procutil.h>
#include <strutil.h>
#include <monutil.h>
#include <regutil.h>
#include <rssutil.h>
#include <apuputil.h> // NOTE: this must come after atomutil.h and rssutil.h since it uses them.
#include <uriutil.h>
#include <xmlutil.h>
#pragma managed
#include <vcclr.h>
|