aboutsummaryrefslogtreecommitdiff
path: root/utils/winmm_drv/cpl/adlconfig-tool.c
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2020-09-28 19:35:24 +0300
committerWohlstand <admin@wohlnet.ru>2020-09-28 19:35:24 +0300
commit455ac435481558c09ee1824b1e6dcc43f277527d (patch)
tree641268a2117543cd1a66ec9c4b3e3d790170f22e /utils/winmm_drv/cpl/adlconfig-tool.c
parent595a9dc35ad1c41dac96d7fd7e3b3c7ccaac9947 (diff)
parentbaefee8dbe094a05ae89b0f9b909d19982711dc7 (diff)
downloadlibADLMIDI-455ac435481558c09ee1824b1e6dcc43f277527d.tar.gz
libADLMIDI-455ac435481558c09ee1824b1e6dcc43f277527d.tar.bz2
libADLMIDI-455ac435481558c09ee1824b1e6dcc43f277527d.zip
Merge branch 'master' of github.com:Wohlstand/libADLMIDI
Diffstat (limited to 'utils/winmm_drv/cpl/adlconfig-tool.c')
-rw-r--r--utils/winmm_drv/cpl/adlconfig-tool.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/winmm_drv/cpl/adlconfig-tool.c b/utils/winmm_drv/cpl/adlconfig-tool.c
new file mode 100644
index 0000000..513f5eb
--- /dev/null
+++ b/utils/winmm_drv/cpl/adlconfig-tool.c
@@ -0,0 +1,20 @@
+#include "targetver.h"
+
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+#include <cpl.h>
+
+#include "resource.h"
+
+#include "config_dialog.h"
+
+int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pCmdLine, int nCmdShow)
+{
+ initAdlSetupBox(hInstance, NULL);
+ runAdlSetupBox(hInstance, NULL);
+ return 0;
+
+ UNREFERENCED_PARAMETER(hPrevInstance);
+ UNREFERENCED_PARAMETER(pCmdLine);
+ UNREFERENCED_PARAMETER(nCmdShow);
+}