Subversion Repositories Kolibri OS

Rev

Rev 8012 | Rev 8240 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8012 Rev 8020
Line 1... Line 1...
1
//Leency, Veliant, Punk_Joker, PavelYakov & KolibriOS Team 2008-2020
1
//Leency, Veliant, Punk_Joker, PavelYakov & KolibriOS Team 2008-2020
2
//GNU GPL license.
2
//GNU GPL license.
Line 3... Line 3...
3
 
3
 
Line 4... Line 4...
4
// 70.5 - get volume info and label
4
// 70.5 - get volume info and label
5
 
5
 
Line 6... Line 6...
6
#define TITLE "Eolite File Manager 4.46c"
6
#define TITLE "Eolite File Manager 4.46d"
7
#define ABOUT_TITLE "EOLITE 4.46c"
7
#define ABOUT_TITLE "EOLITE 4.46d"
8
 
8
 
Line 170... Line 170...
170
			itdir = dir_exists(#file_path);
170
			itdir = dir_exists(#file_path);
171
			strcpy(#file_name, #param + strrchr(#param, '/'));
171
			strcpy(#file_name, #param + strrchr(#param, '/'));
172
			param[strrchr(#param, '/')-1] = '\0';
172
			param[strrchr(#param, '/')-1] = '\0';
173
			strcpy(#path, #param + 3);
173
			strcpy(#path, #param + 3);
174
			properties_dialog();
174
			properties_dialog();
-
 
175
			ExitProcess();
175
			return;
176
			return;
176
		case 'd':
177
		case 'd':
177
			strcpy(#file_path, #param + 3);
178
			strcpy(#file_path, #param + 3);
178
			itdir = dir_exists(#file_path);
179
			itdir = dir_exists(#file_path);
179
			DisplayOperationForm(DELETE_FLAG);
180
			DisplayOperationForm(DELETE_FLAG);
180
			DeleteSingleElement();
181
			DeleteSingleElement();
-
 
182
			ExitProcess();
181
			return;
183
			return;
182
		case 'v':
184
		case 'v':
183
			cut_active = param[2] - '0';
185
			cut_active = param[2] - '0';
184
			strcpy(#path, #param + 4);
186
			strcpy(#path, #param + 4);
185
			PasteThread();
187
			PasteThread();
-
 
188
			ExitProcess();
186
			return;
189
			return;
187
	}
190
	}
188
}
191
}
Line 189... Line 192...
189
 
192