versadac  1
versadac - Scalable Recorder Firmware
file_menu.h
1 /*******************************************************************************
2 FILE : file_menu.h
3 VERSION : $Id: file_menu.h 4987 2006-10-11 14:49:51Z martinto $
4 AUTHOR : Karl Wakeham
5 SYSTEM : Gnu C C++ for PowerPC under vxWorks
6 DESCRIPTION : Tools to manipulate files on the product file system
7  Used by both the tools menu and the upgrade code
8 *******************************************************************************/
9 
10 #ifndef __FILE_MENU_H
11 #define __FILE_MENU_H
12 
13 #ifndef __INCstdioh
14 #include <stdio.h>
15 #endif
16 
17 extern char currentWorkingDir[121];
18 extern void showFileMenu();
19 extern BOOL copyFile(char *source, char *destination);
20 extern void listTextFile(const char *path, FILE *log);
21 
22 #endif /* __FILE_MENU_H */