build: add the SIBO SDK

This commit is contained in:
2026-07-06 18:01:36 +01:00
parent d76326729c
commit 64e484448c
757 changed files with 97167 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
/* Release 3.10 */
/*-------------------------------------------------------------------------*
* *
* CONIOSTR.HPP - header file for console stream input and output. *
* *
* COPYRIGHT (C) 1990..1992 Clarion Software Corporation *
* All Rights Reserved *
* *
*--------------------------------------------------------------------------*/
#include <stdepoc.h>
#ifndef _CONIOSTR_INC_
#define _CONIOSTR_INC_
#include <iostream.hpp>
class conbuf : public streambuf {
public:
virtual int underflow();
virtual int pbackfail(int);
virtual int overflow(int _c = EOF);
virtual int sync();
private:
unsigned flush_magic;
};
extern istream conin;
extern ostream conout;
#endif