| 1 | #pragma once |
| 2 | // 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. |
| 3 | |
| 4 | |
| 5 | #include <windows.h> |
| 6 | |
| 7 | #pragma warning(push) |
| 8 | #pragma warning(disable:4458) // declaration of 'xxx' hides class member |
| 9 | #include <gdiplus.h> |
| 10 | #pragma warning(pop) |
| 11 | |
| 12 | #include <msiquery.h> |
| 13 | #include <CommCtrl.h> |
| 14 | |
| 15 | #include <dutil.h> |
| 16 | #include <dictutil.h> |
| 17 | |
| 18 | #include <BootstrapperApplicationBase.h> |
| 19 | |
| 20 | #include "TestBootstrapperApplication.h" |
| 21 | |
| 22 | #pragma managed |
| 23 | #include <vcclr.h> |