user.h
来自「CD_高级PALM编程」· C头文件 代码 · 共 30 行
H
30 行
/********************************************************************* FILE: User.h** DESCRIPTION: User-level code for the MyDBViewer.c project.* This file is the place you put YOUR functions for* showing YOUR data in the MyDBViewer test application.** VERSION: 1.0**********************************************************************/#ifndef __USER_H#define __USER_H// Database creator being sought by the app. CHANGE THIS if you're// testing your own databases.#define pakaAppDataseCreatorType 'PAKA'/*********************************************************************** * FUNCTION: UserRecordToText * * DESCRIPTION: This routine creates a text representation of the * data of the given PalmDatabaseBuilder type. It's * up to YOU to handle types other than 'text'! * * RETURNED: pointer to the text representation. Caller must free. ***********************************************************************/extern Char *UserRecordToText( UInt32 type, // (in) type of data to be shown MemPtr dataP // (in) data to be shown);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?