概述
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
#ifndef _FILEMANAGER_H_#define _FILEMANAGER_H_
#include /// Data Definition
// Function statustypedef int status;
#define ERROR -1
#define FAIL 0
#define OK 1
// Constant
#define NAMESIZE128
#define PATHSIZE128
#define TIMESIZE128
#define STACKSIZE128
typedef struct Time{
int year;
int month;
int day;
int hour;
int minute;
int second;
}
fileTime;
typedef struct File{
charname[NAMESIZE];
unsigned intattrib;
longsize;
fileTimecreationTime;
fileTimeeditTime;
fileTimefinalAccessTime;
charpath[PATHSIZE];
struct File*fileParent;
struct File*leftChild;
struct File*rightBrother;
}
file, folder,*folderHandle;
struct MSG{unsigned int MsgType;}MSG;
struct Exception{signed int ERROR;}EXPTION;
typedef struct stack{
folderHandle currentHandle[STACKSIZE];
int top;
int bottom;
}stack;
最后
以上就是无限溪流为你收集整理的c语言 constant错误,求助大神指点,error C2059: syntax error : 'constant'的全部内容,希望文章能够帮你解决c语言 constant错误,求助大神指点,error C2059: syntax error : 'constant'所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复