diff options
author | Wohlstand <admin@wohlnet.ru> | 2020-09-21 00:45:06 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2020-09-21 00:45:06 +0300 |
commit | f95e5ff580b68b13ba308fd54e1c95d4197ad863 (patch) | |
tree | 63539cbf427912686565dab81b3aa820346967b5 /utils/winmm_drv/cpl/adlconfig-tool.c | |
parent | 193ac787fed2beb43c89312e5f45e231d50c544d (diff) | |
parent | 9b51dd7d667e97338a92711543fc3e942faae52f (diff) | |
download | libADLMIDI-f95e5ff580b68b13ba308fd54e1c95d4197ad863.tar.gz libADLMIDI-f95e5ff580b68b13ba308fd54e1c95d4197ad863.tar.bz2 libADLMIDI-f95e5ff580b68b13ba308fd54e1c95d4197ad863.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.c | 20 |
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); +} |