⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proto.h

📁 这些源代码
💻 H
字号:
//
//	proto.h -- prototypes of generic functions used
//	in the commander program.
//

#ifndef __PROTO_H__

#include	<time.h>

//
//		Modes used by the access command to test the existence of a file
//
#define 	ACCESS_EXIST		00	// Existence only
#define 	ACCESS_WRITE		02	// Write permission
#define 	ACCESS_READ 		04	// Read permission
#define 	ACCESS_READWRITE	06	// Read and write permission

bool		exist (char *path, int mode = ACCESS_READWRITE);
time_t		FileTimeToUnixTime (FILETIME *ft);
void		FormatNumber (CString& strText, ULONG ulSize);
void		InsertChar (TCHAR *sz, TCHAR ch);

#define __PROTO_H__
#endif		//	__PROTO_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -