1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-17 06:24:12 -04:00
elinks/src/osdep/win32/vt100.h
Witold Filipczyk cbb507a6b5 WIN32 port: introduced VT100 decoder. ELinks is able to display first page
of the document. Keyboard doesn't work, Windows style path either.
I tested it only under Wine.
2006-05-20 14:05:45 +02:00

16 lines
202 B
C

#ifndef EL__OSDEP_WIN32_VT100_H
#define EL__OSDEP_WIN32_VT100_H
#ifdef CONFIG_OS_WIN32
#ifdef HAVE_WINDOWS_H
#include <windows.h>
#endif
int VT100_decode(HANDLE, const void *, int);
#endif
#endif