Basic Experimental Full Screen Editor

This commit is contained in:
Andrew Pamment
2016-12-03 15:08:50 +10:00
parent 8bd085270d
commit f44243d21c
105 changed files with 63667 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/* pageview.h - Include file for PagedViewer() function. */
/* Manifest constant. */
#define NO_LINE -1
/* Boolean definitions. */
#ifndef BOOL
typedef int BOOL;
#endif
/* Prototype for the function. */
int PagedViewer(
int nInitialLine,
int nTotalLines,
void (*pDisplayCallback)(int nLine, void *pCallbackData),
void *pCallbackData,
BOOL bAllowSelection,
char *pszTitle,
int nPageSize);