Project

General

Profile

#ifndef _FILE_H_
#define _FILE_H_

struct SimpleFile
{
int num;
int offset;
int is_readonly;
int size;
int type;
};

#endif
(3-3/4)