blob: e9f8770b77f5cb3731b67f03125f4591bbdde09f (
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
|
#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 error.h before dutil.h
#include <dutilsources.h>
#include "error.h"
#include <dutil.h>
#include <verutil.h>
#include <atomutil.h>
#include <dictutil.h>
#include <dirutil.h>
#include <fileutil.h>
#include <guidutil.h>
#include <iniutil.h>
#include <memutil.h>
#include <pathutil.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>
|