PAGEVIEW.H 412 B

12345678910111213141516171819
  1. /* pageview.h - Include file for PagedViewer() function. */
  2. /* Manifest constant. */
  3. #define NO_LINE -1
  4. /* Boolean definitions. */
  5. #ifndef BOOL
  6. typedef int BOOL;
  7. #endif
  8. /* Prototype for the function. */
  9. int PagedViewer(
  10. int nInitialLine,
  11. int nTotalLines,
  12. void (*pDisplayCallback)(int nLine, void *pCallbackData),
  13. void *pCallbackData,
  14. BOOL bAllowSelection,
  15. char *pszTitle,
  16. int nPageSize);