mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 09:46:54 +02:00
38 lines
952 B
C
38 lines
952 B
C
|
|
#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>
|
||
|
|
|
||
|
|
#pragma warning(push)
|
||
|
|
#pragma warning(disable:4458) // declaration of 'xxx' hides class member
|
||
|
|
#include <gdiplus.h>
|
||
|
|
#pragma warning(pop)
|
||
|
|
|
||
|
|
#include <msiquery.h>
|
||
|
|
#include <objbase.h>
|
||
|
|
#include <shlobj.h>
|
||
|
|
#include <shlwapi.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <strsafe.h>
|
||
|
|
#include <CommCtrl.h>
|
||
|
|
|
||
|
|
// Standard WiX header files, include as required
|
||
|
|
#include "dutil.h"
|
||
|
|
#include "dictutil.h"
|
||
|
|
#include "fileutil.h"
|
||
|
|
#include "pathutil.h"
|
||
|
|
#include "strutil.h"
|
||
|
|
#include "regutil.h"
|
||
|
|
|
||
|
|
#include "BootstrapperApplicationBase.h"
|
||
|
|
|
||
|
|
#include "BAFunctions.h"
|
||
|
|
#include "IBAFunctions.h"
|
||
|
|
|
||
|
|
HRESULT WINAPI CreateBAFunctions(
|
||
|
|
__in HMODULE hModule,
|
||
|
|
__in const BA_FUNCTIONS_CREATE_ARGS* pArgs,
|
||
|
|
__inout BA_FUNCTIONS_CREATE_RESULTS* pResults
|
||
|
|
);
|