blob: 1cb45d697bfe7c0ad02758ebce6a8da69c14dd84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#ifndef SETUP_DIALOG_HHHH
#define SETUP_DIALOG_HHHH
#include <windef.h>
extern BOOL initAdlSetupBox(HINSTANCE hModule, HWND hwnd);
extern BOOL runAdlSetupBox(HINSTANCE hModule, HWND hwnd);
extern BOOL cleanUpAdlSetupBox(HINSTANCE hModule, HWND hwnd);
#endif
|