mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
- Don't depend on System.Windows.Forms in the Settings -> use callback instead - Fix overlay image setting saving - Use dynamic DLL loading in Interop - Load VCM only when mf.dll is available
15 lines
284 B
C
15 lines
284 B
C
#pragma once
|
|
|
|
#include <mfapi.h>
|
|
#include <mfidl.h>
|
|
|
|
#include "DLLProviderHelpers.h"
|
|
|
|
DECLARE_DLL_PROVIDER_BEGIN(mfplat)
|
|
DECLARE_DLL_FUNCTION(MFCreateAttributes)
|
|
DECLAR_DLL_PROVIDER_END
|
|
|
|
DECLARE_DLL_PROVIDER_BEGIN(mf)
|
|
DECLARE_DLL_FUNCTION(MFEnumDeviceSources)
|
|
DECLAR_DLL_PROVIDER_END
|