my_api.h
来自「unix 下用pro*c tuxedo 开发的东西」· C头文件 代码 · 共 27 行
H
27 行
//
//File name: my_api.h
//Author: Mr. Zhujingkun
//Create Date:2000,04,01
//This is the headerfile of my application interface function file
//Datatypes of each bussiness file and Functions prototype are defined here.
//
#ifndef CC_MY_API
#define CC_MY_API
//define some functions prototype
int MyExistFile( const char* sFile );
int myapi_ReadALine( char* cLine, FILE* hTable );
void ErrorLog( const char* sErrorMessage );
void myapi_FormUniqueName( char* cFileName );
int GetTimeInterval(char* cType);
int myapi_IsFileName( char *cALine );
void GetArgv0( char* cArgv0, char* cPathName );
void ProcIDLog(int iRet);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?