Comments translated from French to English.

dev-ui
Programerus 2012-03-23 21:46:56 +01:00
parent 128f7c06de
commit 0bfc0a0009
1 changed files with 17 additions and 15 deletions

View File

@ -12,7 +12,9 @@
// * GNU General Public License for more details. // * GNU General Public License for more details.
// * // *
// * You should have received a copy of the GNU General Public License // * You should have received a copy of the GNU General Public License
// * along with this program. If not, see http://www.gnu.org/licenses/.// metafile.h // * along with this program. If not, see http://www.gnu.org/licenses/.
// metafile.h
#ifndef _METAFILE_H_ #ifndef _METAFILE_H_
#define _METAFILE_H_ #define _METAFILE_H_
@ -23,18 +25,18 @@
typedef struct typedef struct
{ {
char name[14]; // nom du fichier (8.3 max) char name[14]; // file name (8.3 max)
int start; // position depuis le début du metafile int start; // position from the beginning of the metafile
int len; // longueur du fichier int len; // length of the file
} }
MetaHeader; MetaHeader;
typedef struct typedef struct
{ {
char name[50]; // nom du metafile char name[50]; // name of the metafile
FILE* stream; // canal FILE* stream; // channel
int total; // nb de fichiers contenus int total; // number of files
MetaHeader* headers; // headers des fichiers contenus MetaHeader* headers; // headers of files
} }
MetaFile; MetaFile;
@ -61,13 +63,13 @@ protected:
int MetaSearch(char *metaname); int MetaSearch(char *metaname);
protected: protected:
MetaFile m_list[METAMAX]; // metafile ouverts MetaFile m_list[METAMAX]; // metafile open
BOOL m_bOpen; // fichier ouvert BOOL m_bOpen; // open file
BOOL m_bMeta; // metafile ouvert BOOL m_bMeta; // metafile open
FILE* m_stream; // canal FILE* m_stream; // channel
int m_start; // position depuis le début int m_start; // position from the beginning
int m_pos; // position courante int m_pos; // current position
int m_len; // longueur du fichier int m_len; // length of the file
}; };