about summary refs log tree commit diff stats
path: root/termbox/input.inl
Commit message (Expand)AuthorAgeFilesLines
* 2181 - detect shift-tabKartik K. Agaram2015-09-111-0/+6
* 2142Kartik K. Agaram2015-09-041-4/+0
* 2141 - attempt to deal with slow networksKartik K. Agaram2015-09-041-16/+27
* 2132 - support for ctrl + arrow keysKartik K. Agaram2015-09-021-2/+21
* 1964 - don't mess up pasteKartik K. Agaram2015-08-091-0/+35
* 1313 - merge termboxKartik K. Agaram2015-05-091-2/+2
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+118
rix/lynx-snapshots/commit/src/HTSaveToFile.h?id=e087f6d44e87f489fcb3056e86319ebba4218156'>e087f6d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26


                      
                 
                    

      


                     















                                         
#ifndef HTSAVETOFILE_H
#define HTSAVETOFILE_H

#ifndef HTUTILS_H
#include <HTUtils.h>
#endif

#include <HTStream.h>
#include <HTFormat.h>

extern HTStream * HTSaveToFile PARAMS((
        HTPresentation *        pres,
        HTParentAnchor *        anchor,
        HTStream *              sink));

extern HTStream * HTDumpToStdout PARAMS((
        HTPresentation *        pres,
        HTParentAnchor *        anchor,
        HTStream *              sink));

extern HTStream * HTCompressed PARAMS((
        HTPresentation *        pres,
        HTParentAnchor *        anchor,
        HTStream *              sink));

#endif /* HTSAVETOFILE_H */