12345678910111213141516171819 |
- #define NO_LINE -1
- #ifndef BOOL
- typedef int BOOL;
- #endif
- int PagedViewer(
- int nInitialLine,
- int nTotalLines,
- void (*pDisplayCallback)(int nLine, void *pCallbackData),
- void *pCallbackData,
- BOOL bAllowSelection,
- char *pszTitle,
- int nPageSize);
|