1 // SoftEther VPN Source Code - Developer Edition Master Branch
2 // Cedar Communication Module
3 
4 
5 // SW.h
6 // Header of SW.c
7 
8 #ifndef	SW_H
9 #define	SW_H
10 
11 #include "Mayaqua/MayaType.h"
12 
13 #define	SW_REG_KEY					"Software\\" GC_REG_COMPANY_NAME "\\Setup Wizard Settings"
14 
15 
16 UINT SWExec();
17 UINT SWExecMain();
18 LIST *SwNewSfxFileList();
19 void SwFreeSfxFileList(LIST *o);
20 bool SwAddBasicFilesToList(LIST *o, char *component_name);
21 bool SwCompileSfx(LIST *o, wchar_t *dst_filename);
22 bool SwGenSfxModeMain(char *mode, wchar_t *dst);
23 bool SwWaitForVpnClientPortReady(UINT timeout);
24 
25 #endif	// SW_H
26 
27 
28