-rw-r--r-- | install/install.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/install.cpp b/install/install.cpp index 62f1e20..6fa4ae4 100644 --- a/install/install.cpp +++ b/install/install.cpp | |||
@@ -1,52 +1,52 @@ | |||
1 | #include "resource.h" | 1 | #include "resource.h" |
2 | #include "../shared-code/install.h" | 2 | #include "../shared-code/install.h" |
3 | 3 | ||
4 | #defineKINAME "PumpKIN 2.5" | 4 | #defineKINAME "PumpKIN 2.5.1-trunk" |
5 | #define SKINAME "PumpKIN" | 5 | #define SKINAME "PumpKIN" |
6 | 6 | ||
7 | BOOL Install(void) | 7 | BOOL Install(void) |
8 | { | 8 | { |
9 | STRING dPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",SKINAME "Path"); | 9 | STRING dPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",SKINAME "Path"); |
10 | STRING kPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath"); | 10 | STRING kPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath"); |
11 | LPCSTR qPath = ((LPCSTR)dPath)?(LPCSTR)dPath:(((LPCSTR)kPath)?(LPSTR)kPath:"C:\\Program Files\\Klever\\Nothings"); | 11 | LPCSTR qPath = ((LPCSTR)dPath)?(LPCSTR)dPath:(((LPCSTR)kPath)?(LPSTR)kPath:"C:\\Program Files\\Klever\\Nothings"); |
12 | STRING path = REQUESTPATH(" " KINAME,"\nEnter destination path:",qPath); | 12 | STRING path = REQUESTPATH(" " KINAME,"\nEnter destination path:",qPath); |
13 | if(!path) | 13 | if(!path) |
14 | return NULL; | 14 | return NULL; |
15 | 15 | ||
16 | #ifdefK_ANNED | 16 | #ifdefK_ANNED |
17 | STRING sysDir(_MAX_PATH); | 17 | STRING sysDir(_MAX_PATH); |
18 | GetSystemDirectory(sysDir,_MAX_PATH); | 18 | GetSystemDirectory(sysDir,_MAX_PATH); |
19 | INSTALLFILE("mfc42.dl_",sysDir,"mfc42.dll"); | 19 | INSTALLFILE("mfc42.dl_",sysDir,"mfc42.dll"); |
20 | #endif | 20 | #endif |
21 | 21 | ||
22 | MAKE_PATH(path); | 22 | MAKE_PATH(path); |
23 | STRING shortPath = GET_SHORT_PATH(path); | 23 | STRING shortPath = GET_SHORT_PATH(path); |
24 | if(!shortPath){ | 24 | if(!shortPath){ |
25 | MessageBox(NULL,"Failed to install " KINAME " in specified directory",NULL,MB_ICONERROR|MB_OK); | 25 | MessageBox(NULL,"Failed to install " KINAME " in specified directory",NULL,MB_ICONERROR|MB_OK); |
26 | return FALSE; | 26 | return FALSE; |
27 | } | 27 | } |
28 | 28 | ||
29 | if(!( | 29 | if(!( |
30 | INSTALLFILE(SKINAME ".ex_",path,SKINAME ".exe") && | 30 | INSTALLFILE(SKINAME ".ex_",path,SKINAME ".exe") && |
31 | INSTALLFILE(SKINAME ".hl_",path,SKINAME ".hlp") && | 31 | INSTALLFILE(SKINAME ".hl_",path,SKINAME ".hlp") && |
32 | INSTALLFILE(SKINAME ".cn_",path,SKINAME ".cnt") | 32 | INSTALLFILE(SKINAME ".cn_",path,SKINAME ".cnt") |
33 | )){ | 33 | )){ |
34 | MessageBox(NULL,"Failed to install " KINAME " in specified directory",NULL,MB_ICONERROR|MB_OK); | 34 | MessageBox(NULL,"Failed to install " KINAME " in specified directory",NULL,MB_ICONERROR|MB_OK); |
35 | return FALSE; | 35 | return FALSE; |
36 | } | 36 | } |
37 | ADDMENU("Klever Group",SKINAME,path, SKINAME ".exe"); | 37 | ADDMENU("Klever Group",SKINAME,path, SKINAME ".exe"); |
38 | 38 | ||
39 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",SKINAME "Path",path); | 39 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",SKINAME "Path",path); |
40 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath",path); | 40 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath",path); |
41 | 41 | ||
42 | FILE* inf=CREATE_INF_FILE(path,SKINAME ".INF"); | 42 | FILE* inf=CREATE_INF_FILE(path,SKINAME ".INF"); |
43 | if(!inf){ | 43 | if(!inf){ |
44 | MessageBox(NULL,"Failed to install " KINAME,NULL,MB_ICONERROR|MB_OK); | 44 | MessageBox(NULL,"Failed to install " KINAME,NULL,MB_ICONERROR|MB_OK); |
45 | return FALSE; | 45 | return FALSE; |
46 | } | 46 | } |
47 | INF_FILE_HEADER(inf); | 47 | INF_FILE_HEADER(inf); |
48 | INF_FILE_SECTION(inf,"Uninstall"); | 48 | INF_FILE_SECTION(inf,"Uninstall"); |
49 | fprintf(inf,"AddReg=kFiles\nDelReg=kReg\nUpdateInis=kMenu\n"); | 49 | fprintf(inf,"AddReg=kFiles\nDelReg=kReg\nUpdateInis=kMenu\n"); |
50 | INF_FILE_SECTION(inf,"kFiles"); | 50 | INF_FILE_SECTION(inf,"kFiles"); |
51 | INF_REMOVE_ROOT(inf,SKINAME "Files",shortPath); | 51 | INF_REMOVE_ROOT(inf,SKINAME "Files",shortPath); |
52 | INF_REMOVE_FILE(inf,SKINAME "Files",SKINAME ".exe"); | 52 | INF_REMOVE_FILE(inf,SKINAME "Files",SKINAME ".exe"); |