aboutsummaryrefslogtreecommitdiff
path: root/utils/winmm_drv/cpl/adlconfig-tool.c
diff options
context:
space:
mode:
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);
+}