Module: wine Branch: master Commit: c78f7a96e5420e115c8a17a70319221687f91949 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c78f7a96e5420e115c8a17a703...
Author: Austin English austinenglish@gmail.com Date: Fri Jan 22 00:51:00 2016 -0600
irprops.cpl: Add stub dll.
Signed-off-by: Austin English austinenglish@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
configure | 2 ++ configure.ac | 1 + dlls/irprops.cpl/Makefile.in | 1 + dlls/irprops.cpl/irprops.cpl.spec | 52 +++++++++++++++++++++++++++++++++++++++ tools/make_specfiles | 4 +++ 5 files changed, 60 insertions(+)
diff --git a/configure b/configure index e422437..c78dcd7 100755 --- a/configure +++ b/configure @@ -1133,6 +1133,7 @@ enable_initpki enable_inkobj enable_inseng enable_iphlpapi +enable_irprops_cpl enable_itircl enable_itss enable_joy_cpl @@ -17599,6 +17600,7 @@ wine_fn_config_dll inkobj enable_inkobj wine_fn_config_dll inseng enable_inseng clean wine_fn_config_dll iphlpapi enable_iphlpapi implib wine_fn_config_test dlls/iphlpapi/tests iphlpapi_test +wine_fn_config_dll irprops.cpl enable_irprops_cpl wine_fn_config_dll itircl enable_itircl wine_fn_config_dll itss enable_itss clean wine_fn_config_test dlls/itss/tests itss_test diff --git a/configure.ac b/configure.ac index 6db503c..2c18819 100644 --- a/configure.ac +++ b/configure.ac @@ -2969,6 +2969,7 @@ WINE_CONFIG_DLL(inkobj) WINE_CONFIG_DLL(inseng,,[clean]) WINE_CONFIG_DLL(iphlpapi,,[implib]) WINE_CONFIG_TEST(dlls/iphlpapi/tests) +WINE_CONFIG_DLL(irprops.cpl) WINE_CONFIG_DLL(itircl) WINE_CONFIG_DLL(itss,,[clean]) WINE_CONFIG_TEST(dlls/itss/tests) diff --git a/dlls/irprops.cpl/Makefile.in b/dlls/irprops.cpl/Makefile.in new file mode 100644 index 0000000..7270ca3 --- /dev/null +++ b/dlls/irprops.cpl/Makefile.in @@ -0,0 +1 @@ +MODULE = irprops.cpl diff --git a/dlls/irprops.cpl/irprops.cpl.spec b/dlls/irprops.cpl/irprops.cpl.spec new file mode 100644 index 0000000..29828e2 --- /dev/null +++ b/dlls/irprops.cpl/irprops.cpl.spec @@ -0,0 +1,52 @@ +@ stub BluetoothAuthenticateDevice +@ stub BluetoothAuthenticateMultipleDevices +@ stub BluetoothAuthenticationAgent +@ stub BluetoothDisconnectDevice +@ stub BluetoothDisplayDeviceProperties +@ stub BluetoothEnableDiscovery +@ stub BluetoothEnableIncomingConnections +@ stub BluetoothEnumerateInstalledServices +@ stub BluetoothFindBrowseGroupClose +@ stub BluetoothFindClassIdClose +@ stub BluetoothFindDeviceClose +@ stub BluetoothFindFirstBrowseGroup +@ stub BluetoothFindFirstClassId +@ stub BluetoothFindFirstDevice +@ stub BluetoothFindFirstProfileDescriptor +@ stub BluetoothFindFirstProtocolDescriptorStack +@ stub BluetoothFindFirstProtocolEntry +@ stub BluetoothFindFirstRadio +@ stub BluetoothFindFirstService +@ stub BluetoothFindNextBrowseGroup +@ stub BluetoothFindNextClassId +@ stub BluetoothFindNextDevice +@ stub BluetoothFindNextProfileDescriptor +@ stub BluetoothFindNextProtocolDescriptorStack +@ stub BluetoothFindNextProtocolEntry +@ stub BluetoothFindNextRadio +@ stub BluetoothFindNextService +@ stub BluetoothFindProfileDescriptorClose +@ stub BluetoothFindProtocolDescriptorStackClose +@ stub BluetoothFindProtocolEntryClose +@ stub BluetoothFindRadioClose +@ stub BluetoothFindServiceClose +@ stub BluetoothGetDeviceInfo +@ stub BluetoothGetRadioInfo +@ stub BluetoothIsConnectable +@ stub BluetoothIsDiscoverable +@ stub BluetoothMapClassOfDeviceToImageIndex +@ stub BluetoothMapClassOfDeviceToString +@ stub BluetoothRegisterForAuthentication +@ stub BluetoothRemoveDevice +@ stub BluetoothSdpEnumAttributes +@ stub BluetoothSdpGetAttributeValue +@ stub BluetoothSdpGetContainerElementData +@ stub BluetoothSdpGetElementData +@ stub BluetoothSdpGetString +@ stub BluetoothSelectDevices +@ stub BluetoothSelectDevicesFree +@ stub BluetoothSendAuthenticationResponse +@ stub BluetoothSetServiceState +@ stub BluetoothUnregisterAuthentication +@ stub BluetoothUpdateDeviceRecord +#@ stub CPlApplet diff --git a/tools/make_specfiles b/tools/make_specfiles index 16db908..13748e7 100755 --- a/tools/make_specfiles +++ b/tools/make_specfiles @@ -262,6 +262,10 @@ my @dll_groups = "api-ms-win-core-winrt-l1-1-0", "api-ms-win-core-winrt-string-l1-1-0", ], + [ + "bthprops.cpl", + "irprops.cpl", + ], );
my $update_flags = 0;