summaryrefslogtreecommitdiffstats
path: root/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'queue.h')
-rw-r--r--queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/queue.h b/queue.h
index 8459d0f6..80b835ab 100644
--- a/queue.h
+++ b/queue.h
@@ -38,6 +38,7 @@ typedef struct {
uchar *pIOBuf; /* io Buffer */
int iBufPtrMax; /* current max Ptr in Buffer (if partial read!) */
int iBufPtr; /* pointer into current buffer */
+ int iUngetC; /* char set via UngetChar() call or -1 if none set */
} queueFileDescription_t;
#define qFILE_IOBUF_SIZE 4096 /* size of the IO buffer */
@@ -97,7 +98,6 @@ typedef struct queue_s {
} tVars;
} queue_t;
-
/* prototypes */
rsRetVal queueDestruct(queue_t *pThis);
rsRetVal queueEnqObj(queue_t *pThis, void *pUsr);