Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9715 → Rev 9716

/contrib/sdk/sources/newlib/libc/crt/console.asm
1,22 → 1,17
format MS COFF
 
include '../proc32.inc'
 
format MS COFF
 
public _load_libconsole
 
public _con_init@20
public _con_exit@4
public _con_get_flags
public _con_set_flags@4
public _con_cls
public _con_write_string@8
public _con_getch2@0
public _con_gets
public con_set_title as '_con_set_title_ptr'
macro public_jmp name, size
{
public _#name#@#size
_#name#@#size: jmp [name]
}
 
section '.text' align 16
section '.text' align 16 code readable executable
 
 
;void* __fastcall getprocaddr(export, name)
align 4
getprocaddress:
155,30 → 150,6
.fail:
ret
 
align 4
_con_init@20:
jmp [con_init]
 
align 4
_con_exit@4:
jmp [con_exit]
 
align 4
_con_write_string@8:
jmp [con_write_string]
 
_con_getch2@0:
jmp [con_getch2]
 
_con_gets:
jmp [con_gets]
 
_con_get_flags:
_con_set_flags@4:
_con_cls:
ret
 
 
proc mem.Alloc, size
push ebx ecx
mov ecx, [size]
222,11 → 193,25
ret
endp
 
;section '.ctors' align 4
;align 4
;dd _load_libconsole
public_jmp con_init, 20
public_jmp con_exit, 4
public_jmp con_gets, 8
public_jmp con_gets2, 12
public_jmp con_cls, 0
public_jmp con_getch2, 0
public_jmp con_getch, 0
public_jmp con_set_cursor_pos, 8
public_jmp con_get_cursor_pos, 8
public_jmp con_write_string, 8
public_jmp con_write_asciiz, 4
public_jmp con_get_flags, 0
public_jmp con_set_flags, 4
public_jmp con_set_title, 4
public_jmp con_get_font_height, 0
public_jmp con_get_cursor_height, 0
public_jmp con_set_cursor_height, 4
 
section '.data' align 16
section '.data' align 16 readable writable
 
; -------------------------
macro library [lname,fname]
268,13 → 253,20
con_init, 'con_init', \
con_exit, 'con_exit', \
con_gets, 'con_gets', \
con_gets2, 'con_gets2', \
con_cls, 'con_cls', \
con_getch2, 'con_getch2', \
con_getch, 'con_getch', \
con_set_cursor_pos, 'con_set_cursor_pos',\
con_get_cursor_pos, 'con_get_cursor_pos', \
con_write_string, 'con_write_string',\
con_write_asciiz, 'con_write_asciiz', \
con_get_flags, 'con_get_flags', \
con_set_flags, 'con_set_flags', \
con_set_title, 'con_set_title'
con_set_title, 'con_set_title', \
con_get_font_height, 'con_get_font_height', \
con_get_cursor_height, 'con_get_cursor_height', \
con_set_cursor_height, 'con_set_cursor_height'
 
s_libdir:
db '/sys/lib/'
/contrib/sdk/sources/newlib/libc/include/conio.h
0,0 → 1,52
#ifndef _CONIO_H_
#define _CONIO_H_
 
#include <stdint.h>
 
#define CON_WINDOW_CLOSED 0x200
#define CON_COLOR_BLUE 0x01
#define CON_COLOR_GREEN 0x02
#define CON_COLOR_RED 0x04
#define CON_COLOR_BRIGHT 0x08
/* background color */
 
#define CON_BGR_BLUE 0x10
#define CON_BGR_GREEN 0x20
#define CON_BGR_RED 0x40
#define CON_BGR_BRIGHT 0x80
/* output controls */
 
#define CON_IGNORE_SPECIALS 0x100
#define __con_api __attribute__((stdcall)) __attribute__((dllimport))
 
#ifdef __cplusplus
extern "C"
{
#endif
 
int __con_api con_init(uint32_t wnd_width, uint32_t wnd_height, uint32_t scr_width, uint32_t scr_height, const char* title);
void __con_api con_exit(int bCloseWindow);
void __con_api con_set_title(const char* title);
void __con_api con_write_asciiz(const char* str);
void __con_api con_write_string(const char* str, uint32_t length);
uint32_t __con_api con_get_flags(void);
uint32_t __con_api con_set_flags(uint32_t new_flags);
int __con_api con_get_font_height(void);
int __con_api con_get_cursor_height(void);
int __con_api con_set_cursor_height(int new_height);
int __con_api con_getch(void);
uint16_t __con_api con_getch2(void);
int __con_api con_kbhit(void);
char* __con_api con_gets(char* str, int n);
typedef int __con_api (*con_gets2_callback)(int keycode, char** pstr, int* pn, int* ppos);
char* __con_api con_gets2(con_gets2_callback callback, char* str, int n);
void __con_api con_cls(void);
void __con_api con_get_cursor_pos(int* px, int* py);
void __con_api con_set_cursor_pos(int x, int y);
 
#ifdef __cplusplus
};
#endif
 
#endif
/contrib/sdk/sources/newlib/libc/sys/conio.c
4,25 → 4,14
#include "io.h"
#include <string.h>
extern void load_libconsole();
extern void __stdcall con_init(unsigned w_w, unsigned w_h, unsigned s_w, unsigned s_h, const char* t);
extern void __stdcall con_exit(char bCloseWindow);
extern void __stdcall con_write_string(const char* string, unsigned length);
extern char* __stdcall con_gets(char*, unsigned);
 
void load_libconsole();
void __stdcall con_init(unsigned w_w, unsigned w_h, unsigned s_w, unsigned s_h, const char* t);
void __stdcall con_exit(char bCloseWindow);
unsigned __stdcall con_get_flags(void);
unsigned __stdcall con_set_flags(unsigned new_flags);
void __stdcall con_cls(void);
void __stdcall con_write_string(const char* string, unsigned length);
short __stdcall con_getch2(void);
char* __stdcall con_gets(char*, unsigned);
 
extern void __stdcall (*con_set_title_ptr)(char*);
 
int __gui_mode;
 
void con_init_opt(unsigned w_w, unsigned w_h, unsigned s_w, unsigned s_h, const char* t){
con_init(w_w, w_h, s_w, s_h, t);
}
 
static int console_read(const char *path, void *buff,
size_t offset, size_t count, size_t *done)
{
81,8 → 70,3
{
con_exit(0);
}
 
void con_set_title(char *title)
{
con_set_title_ptr(title);
}