proto.h

来自「本文件包包含了大量用VC++开发的应用程序界面」· C头文件 代码 · 共 25 行

H
25
字号
//
//	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 + =
减小字号Ctrl + -
显示快捷键?