📄 user.h
字号:
/********************************************************************* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -