📄 search.h
字号:
/***********************************************************************/
/* */
/* MODULE : Search */
/* */
/* FUNCTION : This module contains functions that search for files */
/* using the same path as the compiler and runtime */
/* and return the correct path names of the files if */
/* found. */
/* EAM 1/90 */
/***********************************************************************/
#pragma search
boolean Search(char &fileName[]);
/***********************************************************************/
/* */
/* This function searches the current directory, the directory */
/* "../mod", and the directory "c:/modlib" (in that order) */
/* for the file name whose character representation is in the paramter */
/* "fileName". A boolean value of TRUE is returned if the file is */
/* found, FALSE otherwise. If TRUE is returned, the correct path name */
/* for the file indicating the directory the file was found in is */
/* copied into the variable "fileName". */
/* EAM 1/90 */
/***********************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -