You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
486 B
C
15 lines
486 B
C
//////////////////////////////////////////////////////////////////////////////////
|
|
//Utility.h
|
|
|
|
#ifndef __YAUTILITY_H__
|
|
#define __YAUTILITY_H__
|
|
|
|
|
|
//use
|
|
extern AFX_EXT_API int WINAPI AfxFindStringInArray(CStringArray& strarray,LPCTSTR str);
|
|
extern AFX_EXT_API char* WINAPI AfxGetBufA();
|
|
extern AFX_EXT_API ULONGLONG WINAPI AfxGetTimeStamp();
|
|
extern AFX_EXT_API CString WINAPI AfxGetWorkPath();
|
|
extern AFX_EXT_API int WINAPI AfxAnalyzeOneLine(char* buf,int** a,int count=INT_MAX);
|
|
|
|
#endif |