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
+34
View File
@@ -0,0 +1,34 @@
/* Release 3.00 */
/*-------------------------------------------------------------------------*
* *
* window.h - definitions for window module types and functions. *
* *
* COPYRIGHT (C) 1989..1991 Jensen and Partners. All Rights Reserved *
* *
*--------------------------------------------------------------------------*/
#ifndef _WINDOWS
#ifndef _TSWIN_INC_
#define _TSWIN_INC_
#define TRUE 1
#define FALSE 0
#ifdef __cplusplus
extern "C" {
#endif
extern void gotoxy(int x, int y);
extern int wherex(void);
extern int wherey(void);
extern void clrscr(void);
extern void cursoron(void);
extern void cursoroff(void);
extern void insline(void);
extern void delline(void);
extern void clreol(void);
extern void setwrap(int on);
#ifdef __cplusplus
}
#endif
#endif
#endif