Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9092 → Rev 9093

/programs/develop/ktcc/trunk/libc.obj/include/stdio.h
34,7 → 34,6
 
#include <stdarg.h>
#include <stddef.h>
#include <sys/ksys.h>
 
extern int _FUNC(puts)(const char *str);
extern int _FUNC(printf)(const char* format, ...);
/programs/develop/ktcc/trunk/libc.obj/include/sys/ksys.h
1,50 → 1,72
/* Copyright (C) KolibriOS team 2004-2021. All rights reserved. */
/* Distributed under terms of the GNU General Public License */
 
/* This file contains basic wrappers over KolibriOS system calls. */
/* See sysfuncs.txt file for details. */
 
/*
* This file was created with you in mind. Lest you reinvent the wheel.
* If for some reason there is not enough wrapper add! I ask you to stick to the same style: snake_case.
* Structure names must start with "ksys_" and end with "_t".
* All wrappers must start with the "_ksys_" prefix.
* I consider it mandatory to place the wrappers in the correct order in the official documentation.
* Enjoy writing your code :)
*/
 
// Warning! The end of the file is the old definitions of function/structure names.
// They are for compatibility... Better not to use them. */
#ifndef _KSYS_H_
#define _KSYS_H_
 
#ifdef __cplusplus
extern "C" {
#endif
 
#include <stddef.h>
 
#define asm_inline __asm__ __volatile__
 
#define KSYS_FS_ERR_SUCCESS 0 // Success
#define KSYS_FS_ERR_1 1 // Base and/or partition of a hard disk is not defined (fn21.7 & fn21.8)
#define KSYS_FS_ERR_2 2 // Function is not supported for the given file system
#define KSYS_FS_ERR_3 3 // Unknown file system
#define KSYS_FS_ERR_4 4 // Reserved, is never returned in the current implementation
#define KSYS_FS_ERR_5 5 // File not found
#define KSYS_FS_ERR_EOF 6 // End of file, EOF
#define KSYS_FS_ERR_7 7 // Pointer lies outside of application memory
#define KSYS_FS_ERR_8 8 // Disk is full
#define KSYS_FS_ERR_9 9 // FAT table is destroyed
#define KSYS_FS_ERR_10 10 // Access denied
#define KSYS_FS_ERR_11 11 // Device error
/*============== General structures ==============*/
 
typedef void ksys_panic(char *func_name);
#pragma pack(push,1)
 
typedef struct {
unsigned char blue;
unsigned char green;
unsigned char red;
uint8_t blue;
uint8_t green;
uint8_t red;
}rgb_t;
#pragma pack(push,1)
typedef union{
unsigned val;
uint32_t val;
struct{
short x;
short y;
uint8_t hour;
uint8_t min;
uint8_t sec;
uint8_t _zero;
};
}ksys_time_t;
 
typedef union {
uint32_t val;
struct{
uint8_t year;
uint8_t month;
uint8_t day;
uint8_t _zero;
};
}ksys_date_t;
 
typedef union{
uint32_t val;
struct{
uint16_t x;
uint16_t y;
};
}ksys_pos_t;
 
typedef union ksys_oskey_t{
unsigned val;
uint32_t val;
struct{
unsigned char state;
unsigned char code;
unsigned char ctrl_key;
uint8_t state;
uint8_t code;
uint8_t ctrl_key;
};
}ksys_oskey_t;
 
55,17 → 77,17
 
 
typedef struct{
unsigned p00;
uint32_t p00;
union{
uint64_t p04;
struct {
unsigned p04dw;
unsigned p08dw;
uint32_t p04dw;
uint32_t p08dw;
};
};
unsigned p12;
uint32_t p12;
union {
unsigned p16;
uint32_t p16;
const char *new_name;
void *bdfe;
void *buf16;
75,16 → 97,15
const char *p21;
}ksys70_t;
 
 
typedef struct {
unsigned attributes;
unsigned name_cp;
char creation_time[4];
char creation_date[4];
char last_access_time[4];
char last_access_date[4];
char last_modification_time[4];
char last_modification_date[4];
uint32_t attributes;
uint32_t name_cp;
ksys_time_t creation_time;
ksys_date_t creation_date;
ksys_time_t last_access_time;
ksys_date_t last_access_date;
ksys_time_t last_modification_time;
ksys_date_t last_modification_date;
unsigned long long size;
char name[0];
}ksys_bdfe_t;
109,7 → 130,7
int clientheight; //+66
unsigned char window_state;//+70
char reserved3[1024-71]; //+71
}ksys_proc_table_t;
}ksys_thread_t;
 
typedef unsigned int ksys_color_t;
 
141,7 → 162,7
typedef struct {
char* func_name;
void* func_ptr;
}ksys_coff_etable_t;
}ksys_dll_t;
 
typedef unsigned ksys_drv_hand_t;
 
154,8 → 175,30
unsigned out_data_size;
}ksys_ioctl_t;
 
typedef struct{
char key[64];
char path[64];
}ksys_dir_key_t;
 
#pragma pack(pop)
 
typedef rgb_t ksys_bitmap_t;
 
enum KSYS_FS_ERRORS {
KSYS_FS_ERR_SUCCESS = 0, // Success
KSYS_FS_ERR_1 = 1, // Base and/or partition of a hard disk is not defined (fn21.7 & fn21.8)
KSYS_FS_ERR_2 = 2, // Function is not supported for the given file system
KSYS_FS_ERR_3 = 3, // Unknown file system
KSYS_FS_ERR_4 = 4, // Reserved, is never returned in the current implementation
KSYS_FS_ERR_5 = 5, // File not found
KSYS_FS_ERR_EOF = 6, // End of file, EOF
KSYS_FS_ERR_7 = 7, // Pointer lies outside of application memory
KSYS_FS_ERR_8 = 8, // Disk is full
KSYS_FS_ERR_9 = 9, // FAT table is destroyed
KSYS_FS_ERR_10 = 10, // Access denied
KSYS_FS_ERR_11 = 11 // Device error
};
 
enum KSYS_EVENTS {
KSYS_EVENT_NONE = 0, /* Event queue is empty */
KSYS_EVENT_REDRAW = 1, /* Window and window elements should be redrawn */
175,46 → 218,6
KSYS_FILE_UTF8 = 3
};
 
enum KSYS_CLIP_ENCODING{
KSYS_CLIP_UTF8 = 0,
KSYS_CLIP_CP866 = 1,
KSYS_CLIP_CP1251 = 2
};
 
enum KSYS_CLIP_TYPES{
KSYS_CLIP_TEXT = 0,
KSYS_CLIP_IMAGE = 1,
KSYS_CLIP_RAW = 2
};
 
enum KSYS_MOUSE_POS{
KSYS_MOUSE_SCREEN_POS = 0,
KSYS_MOUSE_WINDOW_POS = 1
};
 
enum KSYS_SHM_MODE{
KSYS_SHM_OPEN = 0x00,
KSYS_SHM_OPEN_ALWAYS = 0x04,
KSYS_SHM_CREATE = 0x08,
KSYS_SHM_READ = 0x00,
KSYS_SHM_WRITE = 0x01,
};
 
enum KSYS_EVENT_MASK{
KSYS_EVM_REDRAW = 1,
KSYS_EVM_KEY = 2,
KSYS_EVM_BUTTON = 4,
KSYS_EVM_EXIT = 8,
KSYS_EVM_BACKGROUND = 16,
KSYS_EVM_MOUSE = 32,
KSYS_EVM_IPC = 64,
KSYS_EVM_STACK = 128,
KSYS_EVM_DEBUG = 256,
KSYS_EVM_STACK2 = 512,
KSYS_EVM_MOUSE_FILTER = 0x80000000,
KSYS_EVM_CURSOR_FILTER = 0x40000000,
};
 
static inline
int _ksys_strcmp(const char * s1, const char * s2 )
{
222,23 → 225,22
return(*(unsigned char*)s1 - *(unsigned char *)s2);
}
 
// Functions for working with the graphical interface
/* ####################################################################### */
/* ############### ะก wrappers for system calls Kolibri OS ################ */
/* ####################################################################### */
 
static inline
void _ksys_start_draw()
{
asm_inline("int $0x40"::"a"(12),"b"(1));
}
 
/*=============== Function -1 - terminate thread/process ===============*/
 
static inline
void _ksys_end_draw()
{
asm_inline("int $0x40" ::"a"(12),"b"(2));
void _ksys_exit(){
asm_inline("int $0x40"::"a"(-1));
}
 
/*============== Function 0 - define and draw the window. ==============*/
 
static inline
void _ksys_create_window(int x, int y, int w, int h, const char *name, ksys_color_t workcolor, unsigned style)
{
void _ksys_create_window(uint32_t x, uint32_t y, uint32_t w, uint32_t h, const char *name, ksys_color_t workcolor, uint32_t style) {
asm_inline(
"int $0x40"
::"a"(0),
251,20 → 253,73
);
};
 
/*================ Function 1 - put pixel in the window. ===============*/
 
static inline
void _ksys_change_window(int new_x, int new_y, int new_w, int new_h)
{
void _ksys_draw_pixel(uint32_t x, uint32_t y, ksys_color_t color){
asm_inline(
"int $0x40"
::"a"(67), "b"(new_x), "c"(new_y), "d"(new_w),"S"(new_h)
::"a"(1), "b"(x), "c"(y), "d"(color)
);
}
/*============ Function 2 - get the code of the pressed key. ===========*/
 
static inline
void _ksys_define_button(unsigned x, unsigned y, unsigned w, unsigned h, unsigned id, ksys_color_t color)
{
ksys_oskey_t _ksys_get_key(void){
ksys_oskey_t val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(2)
);
return val;
}
 
/*==================== Function 3 - get system time. ===================*/
 
static inline
ksys_time_t _ksys_get_time(){
ksys_time_t c_time;
asm_inline(
"int $0x40"
:"=a"(c_time)
:"a"(3)
:"memory"
);
return c_time;
}
 
/*=================== Function 4 - draw text string. ===================*/
 
static inline
void _ksys_draw_text(const char *text, uint32_t x, uint32_t y, uint32_t len, ksys_color_t color) {
asm_inline(
"int $0x40"
::"a"(4),"d"(text),
"b"((x << 16) | y),
"S"(len),"c"(color)
:"memory"
);
}
 
/*========================= Function 5 - delay. ========================*/
 
static inline
void _ksys_delay(uint32_t time){
asm_inline(
"int $0x40"
::"a"(5), "b"(time)
:"memory"
);
}
 
/*=============== Function 8 - define/delete the button. ===============*/
 
static inline
void _ksys_define_button(uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint32_t id, ksys_color_t color) {
asm_inline(
"int $0x40"
::"a"(8),
"b"((x<<16)+w),
"c"((y<<16)+h),
274,21 → 329,71
};
 
static inline
void _ksys_draw_line(int xs, int ys, int xe, int ye, ksys_color_t color)
{
void _ksys_delete_button(uint32_t id){
asm_inline(
"int $0x40"
::"a"(38), "d"(color),
"b"((xs << 16) | xe),
"c"((ys << 16) | ye)
::"a"(8),"d"(id & 0x00FFFFFF | 0x80000000)
);
}
 
/*============ Function 9 - information on execution thread. ===========*/
 
static inline
void _ksys_draw_bar(int x, int y, int w, int h, ksys_color_t color)
{
int _ksys_thread_info(ksys_thread_t* table, int slot){
int val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(9), "b"(table), "c"(slot)
:"memory"
);
return val;
}
 
/*==================== Function 10 - wait for event. ===================*/
 
static inline
uint32_t _ksys_wait_event(void){
uint32_t val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(10)
);
return val;
}
 
/*=============== Function 11 - check for event, no wait. ==============*/
 
static inline
uint32_t _ksys_check_event(void){
uint32_t val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(11)
);
return val;
}
 
/*=============== Function 12 - begin/end window redraw. ===============*/
 
static inline
void _ksys_start_draw(){
asm_inline("int $0x40"::"a"(12),"b"(1));
}
 
static inline
void _ksys_end_draw(){
asm_inline("int $0x40" ::"a"(12),"b"(2));
}
 
/*============ Function 13 - draw a rectangle in the window. ===========*/
 
static inline
void _ksys_draw_bar(uint32_t x, uint32_t y, uint32_t w, uint32_t h, ksys_color_t color){
asm_inline(
"int $0x40"
::"a"(13), "d"(color),
"b"((x << 16) | w),
"c"((y << 16) | h)
295,106 → 400,385
);
}
 
/*=================== Function 14 - get screen size. ===================*/
 
static inline
void _ksys_draw_bitmap(void *bitmap, int x, int y, int w, int h)
{
ksys_pos_t _ksys_screen_size(){
ksys_pos_t size;
ksys_pos_t size_tmp;
asm_inline(
"int $0x40"
::"a"(7), "b"(bitmap),
"c"((w << 16) | h),
"d"((x << 16) | y)
:"memory"
:"=a"(size_tmp)
:"a"(14)
);
size.x = size_tmp.y;
size.y = size_tmp.x;
return size;
}
 
/*== Function 15, subfunction 1 - set a size of the background image. ==*/
 
static inline
void _ksys_draw_text(const char *text, int x, int y, int len, ksys_color_t color)
void _ksys_bg_set_size(uint32_t w, uint32_t h){
asm_inline(
"int $0x40"
::"a"(15), "b"(1), "c"(w), "d"(h)
);
}
 
/*=== Function 15, subfunction 2 - put pixel on the background image. ==*/
 
static inline
void _ksys_bg_put_pixel(uint32_t x, uint32_t y, uint32_t w, ksys_color_t color){
asm_inline(
"int $0x40"
::"a"(15), "b"(2), "c"((x+y*w)*3), "d"(color)
);
}
 
/*=========== Function 15, subfunction 3 - redraw background. ==========*/
 
static inline
void _ksys_bg_redraw(void){
asm_inline(
"int $0x40"
::"a"(15), "b"(3)
);
}
 
/*== Function 15, subfunction 4 - set drawing mode for the background. =*/
 
enum KSYS_BG_MODES{
KSYS_BG_MODE_PAVE=1,
KSYS_BG_MODE_STRETCH=2
};
 
static inline
void _ksys_bg_set_mode(uint32_t mode){
asm_inline(
"int $0x40"
::"a"(15), "b"(4), "c"(mode)
);
}
 
/*===================== Function 15, subfunction 5 =====================*/
/*============ Put block of pixels on the background image. ============*/
 
static inline
void _ksys_bg_put_bitmap(ksys_bitmap_t* bitmap, size_t bitmap_size, uint32_t x, uint32_t y, uint32_t w){
asm_inline(
"int $0x40"
::"a"(15), "b"(5), "c"(bitmap), "d"((x+y*w)*3), "S"(bitmap_size)
);
}
 
/*===================== Function 15, subfunction 6 =====================*/
/*======= Map background data to the address space of process. ==========*/
 
static inline
ksys_bitmap_t* _ksys_bg_get_map()
{
ksys_bitmap_t *bitmap;
asm_inline(
"int $0x40"
::"a"(4),"d"(text),
"b"((x << 16) | y),
"S"(len),"c"(color)
:"memory"
:"=a"(bitmap)
:"a"(15), "b"(6)
);
return bitmap;
}
 
/*===== Function 15, subfunction 7 - close mapped background data. =====*/
 
static inline
void _ksys_draw_text_bg(const char *text, int x, int y, int len, ksys_color_t color, ksys_color_t bg)
int _ksys_bg_close_map(ksys_bitmap_t* bitmap)
{
int status; // 1 - OK, 0 - ERROR
asm_inline(
"int $0x40"
::"a"(4),"d"(text),
"b"((x << 16) | y),
"S"(len),"c"(color), "D"(bg)
:"memory"
:"=a"(status)
:"a"(15), "b"(7), "c"(bitmap)
);
return status;
}
 
/*===================== Function 15, subfunction 9 =====================*/
/*============= Redraws a rectangular part of the background ===========*/
 
static inline
void _ksys_draw_number(int number, int x, int y, int len, ksys_color_t color){
unsigned fmt;
fmt = len << 16 | 0x80000000; // no leading zeros + width
void _ksys_bg_redraw_bar(ksys_pos_t angle1, ksys_pos_t angle2)
{
asm_inline(
"int $0x40"
::"a"(47), "b"(fmt), "c"(number), "d"((x << 16) | y), "S"(color)
::"a"(15), "b"(9),
"c"(angle1.x*(1<<16)+angle2.x),
"d"(angle1.y*(1<<16)+angle2.y)
);
}
/*=============== Function 16 - save ramdisk on a floppy. ==============*/
 
static inline
void _ksys_draw_number_bg(unsigned number, int x, int y, int len, ksys_color_t color, ksys_color_t bg){
unsigned fmt;
fmt = len << 16 | 0x80000000; // no leading zeros + width
int _ksys_save_ramdisk_fd(uint32_t floppy_id)
{
int status; // 0 - OK, 1 - ERROR
asm_inline(
"int $0x40"
::"a"(47), "b"(fmt), "c"(number), "d"((x << 16) | y), "S"(color), "D"(bg)
:"=a"(status)
:"a"(16), "b"(floppy_id)
);
return status;
}
 
/*======= Function 17 - get the identifier of the pressed button. ======*/
 
static inline
unsigned _ksys_get_skin_height()
uint32_t _ksys_get_button()
{
unsigned height;
unsigned val;
asm_inline(
"int $0x40 \n\t"
:"=a"(height)
:"a"(48),"b"(4)
"int $0x40"
:"=a"(val)
:"a"(17)
);
return height;
return val>>8;
}
 
/*===================== Function 18, subfunction 1 =====================*/
/*============= Make deactive the window of the given thread. ==========*/
 
static inline
void _ksys_get_system_colors(ksys_colors_table_t *color_table)
void _ksys_unfocus_window(int slot)
{
asm_inline(
"int $0x40"
::"a"(48),"b"(3),"c"(color_table),"d"(40)
::"a"(18), "b"(1), "c"(slot)
);
}
 
/* Functions for working with a screen. */
/*= Function 18, subfunction 2 - terminate process/thread by the slot. =*/
 
static inline
ksys_pos_t _ksys_screen_size()
void _ksys_kill_by_slot(int slot)
{
ksys_pos_t size;
ksys_pos_t size_tmp;
asm_inline(
"int $0x40"
:"=a"(size_tmp)
:"a"(14)
::"a"(18), "b"(2), "c"(slot)
);
size.x = size_tmp.y;
size.y = size_tmp.x;
}
 
/*===================== Function 18, subfunction 3 =====================*/
/*============= Make active the window of the given thread. ============*/
 
static inline
void _ksys_focus_window(int slot){
asm_inline(
"int $0x40"
::"a"(18), "b"(3), "c"(slot)
);
}
 
/*===================== Function 18, subfunction 4 =====================*/
/*=========== Get counter of idle time units per one second. ===========*/
 
static inline
uint32_t _ksys_get_idle(void){
uint32_t sec;
asm_inline(
"int $0x40"
:"=a"(sec)
:"a"(18), "b"(4)
);
return sec;
}
 
/*========== Function 18, subfunction 5 - get CPU clock rate. ==========*/
/*================ modulo 2^32 clock ticks = 4GHz ======================*/
 
static inline
uint32_t _ksys_get_cpu_clock(void){
uint32_t clock;
asm_inline(
"int $0x40"
:"=a"(clock)
:"a"(18), "b"(5)
);
return clock;
}
 
/* Function 18, subfunction 6 - save ramdisk to the file on hard drive. */
 
static inline
uint32_t _ksys_save_ramdisk_hd(const char* ramdisk_path){
uint32_t fs_err;
asm_inline(
"int $0x40"
:"=a"(fs_err)
:"a"(18), "b"(6), "c"(ramdisk_path)
);
return fs_err;
}
 
/* Function 18, subfunction 9 - system shutdown with the parameter. */
 
enum KSYS_SHD_PARAM {
KSYS_SHD_POWEROFF = 2,
KSYS_SHD_REBOOT = 3,
KSYS_SHD_RESTART_KRN = 4
};
 
static inline
void _ksys_shutdown(uint32_t shd_param){
asm_inline(
"int $0x40"
::"a"(18), "b"(9), "c"(shd_param)
);
}
 
/*========= Function 18, subfunction 16 - get size of free RAM. ========*/
 
static inline
size_t _ksys_get_ram_size(void){
size_t size;
asm_inline(
"int $0x40"
:"=a"(size)
:"a"(18), "b"(16)
);
return size;
}
 
/*======== Function 18, subfunction 17 - get full amount of RAM. =======*/
 
/* Functions for working with a mouse and cursors. */
static inline
size_t _ksys_get_full_ram(void){
size_t size;
asm_inline(
"int $0x40"
:"=a"(size)
:"a"(18), "b"(17)
);
return size;
}
 
/*===================== Function 18, subfunction 18 ====================*/
/*============= Terminate process/thread by the identifier. ============*/
 
static inline
ksys_pos_t _ksys_get_mouse_pos(int origin)
void _ksys_kill_by_pid(uint32_t PID)
{
asm_inline(
"int $0x40"
::"a"(18), "b"(18), "c"(PID)
);
}
 
 
static inline
int _ksys_get_thread_slot(int PID){
int val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(18), "b"(21), "c"(PID)
);
return val;
}
 
/*============= Function 23 - wait for event with timeout. =============*/
 
static inline
uint32_t _ksys_wait_event_timeout(uint32_t timeout){
unsigned val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(23), "b"(timeout)
);
return val;
}
 
/*=== Function 26, subfunction 9 - get the value of the time counter. ==*/
 
static inline
uint32_t _ksys_get_tick_count(){
unsigned val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(26),"b"(9)
);
return val;
}
 
/*===================== Function 26, subfunction 10 ====================*/
/*========== Get the value of the high precision time counter. =========*/
 
static inline
uint64_t _ksys_get_ns_count(){
uint64_t val;
asm_inline(
"int $0x40"
:"=A"(val)
:"a"(26), "b"(10)
);
return val;
}
 
/*=================== Function 29 - get system date. ===================*/
 
static inline
ksys_date_t _ksys_get_date(){
ksys_date_t val;
asm_inline("int $0x40":"=a"(val):"a"(29));
return val;
}
 
/*===========+ Function 30 - work with the current folder.==============*/
/*--------- Subfunction 1 - set current folder for the thread. ---------*/
 
static inline
void _ksys_setcwd(char* dir){
asm_inline(
"int $0x40"
::"a"(30), "b"(1), "c"(dir)
);
}
/*--------- Subfunction 2 - get current folder for the thread. ---------*/
 
static inline
int _ksys_getcwd(char* buf, int bufsize){
register int val;
asm_inline(
"int $0x40"
:"=a"(val):"a"(30), "b"(2), "c"(buf), "d"(bufsize)
);
return val;
}
 
/* ---- Subfunction 3 - install the add.system directory for the kernel ------*/
 
static inline
int _ksys_set_kernel_dir(ksys_dir_key_t *table){
register int val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(30), "b"(3), "c"(table)
:"memory"
);
return val;
}
 
/*=================== Function 37 - work with mouse. ===================*/
 
enum KSYS_MOUSE_POS{
KSYS_MOUSE_SCREEN_POS = 0,
KSYS_MOUSE_WINDOW_POS = 1
};
 
static inline
ksys_pos_t _ksys_get_mouse_pos(int origin){
ksys_pos_t pos;
asm_inline(
"int $0x40 \n\t"
406,9 → 790,8
}
static inline
unsigned _ksys_get_mouse_buttons()
{
unsigned val;
uint32_t _ksys_get_mouse_buttons(void){ // subfunction 2 - states of the mouse buttons
uint32_t val;
asm_inline(
"int $0x40"
:"=a"(val)
418,21 → 801,19
}
static inline
unsigned _ksys_get_mouse_wheels()
{
unsigned val;
uint32_t _ksys_get_mouse_eventstate(void){ // subfunction 3 - states and events of the mouse buttons
uint32_t val;
asm_inline(
"int $0x40 \n\t"
"int $0x40"
:"=a"(val)
:"a"(37),"b"(7)
:"a"(37),"b"(3)
);
return val;
}
static inline
unsigned _ksys_load_cursor(void *path, unsigned flags)
{
unsigned val;
uint32_t _ksys_load_cursor(void *path, uint32_t flags) { // subfunction 4 - load cursor
uint32_t val;
asm_inline(
"int $0x40"
:"=a"(val)
443,9 → 824,8
}
static inline
unsigned _ksys_set_cursor(unsigned cursor)
{
unsigned old;
uint32_t _ksys_set_cursor(uint32_t cursor){ // subfunction 5 - set curso
uint32_t old;
asm_inline(
"int $0x40"
:"=a"(old)
455,8 → 835,7
}
static inline
int _ksys_destroy_cursor(unsigned cursor)
{
int _ksys_delete_cursor(uint32_t cursor){ // subfunction 6 - delete curso
int ret;
asm_inline(
"int $0x40"
468,23 → 847,36
}
 
static inline
unsigned _ksys_get_mouse_eventstate()
uint32_t _ksys_get_mouse_wheels(void) // subfunction 7 - get scroll data
{
unsigned val;
uint32_t val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(37),"b"(3)
:"a"(37),"b"(7)
);
return val;
}
 
/*=========== Function 40 - set the mask for expected events. ==========*/
 
/* Functions for working with events and buttons. */
enum KSYS_EVENT_MASK{
KSYS_EVM_REDRAW = 1,
KSYS_EVM_KEY = 2,
KSYS_EVM_BUTTON = 4,
KSYS_EVM_EXIT = 8,
KSYS_EVM_BACKGROUND = 16,
KSYS_EVM_MOUSE = 32,
KSYS_EVM_IPC = 64,
KSYS_EVM_STACK = 128,
KSYS_EVM_DEBUG = 256,
KSYS_EVM_STACK2 = 512,
KSYS_EVM_MOUSE_FILTER = 0x80000000,
KSYS_EVM_CURSOR_FILTER = 0x40000000,
};
 
static inline
unsigned _ksys_set_event_mask(unsigned mask)
{
uint32_t _ksys_set_event_mask(uint32_t mask){
unsigned val;
asm_inline(
"int $0x40"
494,71 → 886,96
return val;
}
 
/*====================== Function 38 - draw line. ======================*/
 
static inline
unsigned _ksys_wait_event(unsigned time)
void _ksys_draw_line(int xs, int ys, int xe, int ye, ksys_color_t color)
{
unsigned val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(23), "b"(time)
::"a"(38), "d"(color),
"b"((xs << 16) | xe),
"c"((ys << 16) | ye)
);
return val;
}
/*============= Function 47 - draw a number in the window. =============*/
 
static inline
unsigned _ksys_check_event()
{
unsigned val;
void _ksys_draw_number(int number, int x, int y, int len, ksys_color_t color){
unsigned fmt;
fmt = len << 16 | 0x80000000; // no leading zeros + width
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(11)
::"a"(47), "b"(fmt), "c"(number), "d"((x << 16) | y), "S"(color)
);
return val;
}
static inline
unsigned _ksys_get_event()
{
unsigned val;
void _ksys_draw_number_bg(unsigned number, int x, int y, int len, ksys_color_t color, ksys_color_t bg){
unsigned fmt;
fmt = len << 16 | 0x80000000; // no leading zeros + width
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(10)
::"a"(47), "b"(fmt), "c"(number), "d"((x << 16) | y), "S"(color), "D"(bg)
);
return val;
}
 
/*====== Function 48, subfunction 3 - get standard window colors. ======*/
 
static inline
unsigned _ksys_get_button()
void _ksys_get_system_colors(ksys_colors_table_t *color_table)
{
unsigned val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(17)
::"a"(48),"b"(3),"c"(color_table),"d"(40)
);
return val>>8;
}
/*============ Function 48, subfunction 4 - get skin height. ===========*/
 
static inline
ksys_oskey_t _ksys_get_key(void)
{
ksys_oskey_t val;
uint32_t _ksys_get_skin_height(){
unsigned height;
asm_inline(
"int $0x40"
:"=a"(height)
:"a"(48),"b"(4)
);
return height;
}
 
/*==================== Function 51 - create thread. ====================*/
 
static inline
int _ksys_start_thread(void* thread_entry, void* stack_top){
int val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(2)
:"a"(51), "b"(1), "c"(thread_entry), "d"(stack_top)
);
return val;
}
 
/* Functions for working with the clipboard */
 
/*==================== Function 54, subfunction 0 ======================*/
/*============== Get the number of slots in the clipboard. =============*/
 
enum KSYS_CLIP_ENCODING{
KSYS_CLIP_UTF8 = 0,
KSYS_CLIP_CP866 = 1,
KSYS_CLIP_CP1251 = 2
};
 
enum KSYS_CLIP_TYPES{
KSYS_CLIP_TEXT = 0,
KSYS_CLIP_IMAGE = 1,
KSYS_CLIP_RAW = 2
};
 
static inline
int _ksys_clip_num()
{
int _ksys_clip_num(){
unsigned val;
asm_inline(
"int $0x40"
568,9 → 985,11
return val;
}
/*==================== Function 54, subfunction 1 ======================*/
/*================= Read the data from the clipboard. ==================-*/
 
static inline
char* _ksys_clip_get(int n) // returned buffer must be freed by _ksys_free()
{
char* _ksys_clip_get(int n) { // returned buffer must be freed by _ksys_free()
char* val;
asm_inline(
"int $0x40"
580,9 → 999,11
return val;
}
/*==================== Function 54, subfunction 2 ======================*/
/*================= Write the data to the clipboard. ===================*/
 
static inline
int _ksys_clip_set(int n, char *buffer)
{
int _ksys_clip_set(int n, char *buffer){
unsigned val;
asm_inline(
"int $0x40"
593,9 → 1014,11
return val;
}
/*===================== Function 54, subfunction 3 =====================*/
/*================ Delete the last slot in the clipboard ===============*/
 
static inline
int _ksys_clip_pop()
{
int _ksys_clip_pop(){
unsigned val;
asm_inline (
"int $0x40"
605,9 → 1028,11
return val;
}
/*===================== Function 54, subfunction 4 =====================*/
/*===================== Alarm reset the lock buffer ====================*/
 
static inline
int _ksys_clip_unlock()
{
int _ksys_clip_unlock(){
unsigned val;
asm_inline(
"int $0x40"
617,63 → 1042,35
return val;
}
 
/*============== Function 63 - work with the debug board. ==============*/
 
/* Working with time */
 
static inline
unsigned _ksys_get_tick_count()
{
unsigned val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(26),"b"(9)
);
return val;
void _ksys_debug_putc(char c){
asm_inline("int $0x40"::"a"(63), "b"(1), "c"(c));
}
static inline
uint64_t _ksys_get_ns_count()
{
uint64_t val;
asm_inline(
"int $0x40"
:"=A"(val)
:"a"(26), "b"(10)
);
return val;
void _ksys_debug_puts(char *s){
unsigned i=0;
while (*(s+i)){
asm_inline ("int $0x40"::"a"(63), "b"(1), "c"(*(s+i)));
i++;
}
}
 
/*========= Function 67 - change position/sizes of the window. =========*/
 
static inline
void _ksys_delay(unsigned time)
{
void _ksys_change_window(int new_x, int new_y, int new_w, int new_h){
asm_inline(
"int $0x40"
::"a"(5), "b"(time)
:"memory"
::"a"(67), "b"(new_x), "c"(new_y), "d"(new_w),"S"(new_h)
);
}
 
static inline
unsigned _ksys_get_date()
{
unsigned val;
asm_inline("int $0x40":"=a"(val):"a"(29));
return val;
}
/*======== Function 68, subfunction 12 - allocate memory block. ========*/
 
static inline
unsigned _ksys_get_clock()
{
unsigned val;
asm_inline("int $0x40":"=a"(val):"a"(3));
return val;
}
 
 
/* Working with memory allocation */
 
static inline
void* _ksys_alloc(size_t size){
void *val;
asm_inline(
684,9 → 1081,10
return val;
}
/*========== Function 68, subfunction 13 - free memory block. ==========*/
 
static inline
int _ksys_free(void *mem)
{
int _ksys_free(void *mem){
int val;
asm_inline(
"int $0x40"
696,38 → 1094,40
return val;
}
 
/*============= Function 68, subfunction 16 - load driver. =============*/
 
static inline
void* _ksys_realloc(void *mem, size_t size)
ksys_drv_hand_t _ksys_load_driver(char *driver_name)
{
void *val;
ksys_drv_hand_t driver_h;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(68),"b"(20),"c"(size),"d"(mem)
:"memory"
:"=a"(driver_h)
:"a"(68), "b"(16), "c"(driver_name)
);
return val;
return driver_h;
}
/*============ Function 68, subfunction 17 - driver control. ===========*/
 
static inline
int* _ksys_unmap(void *base, size_t offset, size_t size)
unsigned _ksys_driver_control(ksys_ioctl_t *ioctl)
{
int *val;
unsigned status;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(68),"b"(26),"c"(base),"d"(offset),"S"(size)
:"=a"(status)
:"a"(68), "b"(17), "c"(ioctl)
:"memory"
);
return val;
return status;
}
 
/*== Function 68, subfunction 18 - subfunction 19 - load DLL (MS COFF) ==*/
 
/* Loading the dynamic coff library */
 
static inline
ksys_coff_etable_t* _ksys_load_coff(const char* path)
{
ksys_coff_etable_t *table;
ksys_dll_t* _ksys_dlopen(const char* path){
ksys_dll_t *table;
asm_inline(
"int $0x40"
:"=a"(table)
737,12 → 1137,13
return table;
}
 
/* It is not a system call, it serves as an auxiliary tool*/
 
static inline
void* _ksys_get_coff_func(ksys_coff_etable_t *table, const char* fun_name, ksys_panic* panic)
{
void* _ksys_dlsym(ksys_dll_t *table, const char* fun_name){
unsigned i=0;
while (1){
if (NULL == (table+i)->func_name){
if (!(table+i)->func_name){
break;
}else{
if (!_ksys_strcmp(fun_name, (table+i)->func_name)){
751,103 → 1152,85
}
i++;
}
panic((char*)fun_name);
return NULL;
}
 
/* Function 68, subfunction 20 - reallocate memory block.*/
 
/* Debug board functions */
 
static inline
void _ksys_debug_putc(char c)
{
asm_inline("int $0x40"::"a"(63), "b"(1), "c"(c));
}
static inline
void _ksys_debug_puts(char *s)
{
unsigned i=0;
while (*(s+i)){
asm_inline ("int $0x40"::"a"(63), "b"(1), "c"(*(s+i)));
i++;
}
}
 
/* Working with threads and process */
 
static inline
int _ksys_start_thread(void* proc, char* stack_top)
{
int val;
void* _ksys_realloc(void *mem, size_t size){
void *val;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(51), "b"(1), "c"(proc), "d"(stack_top)
:"a"(68),"b"(20),"c"(size),"d"(mem)
:"memory"
);
return val;
}
static inline
void _ksys_focus_window(int slot){
asm_inline(
"int $0x40"
::"a"(18), "b"(3), "c"(slot)
);
}
/* Function 68, subfunction 21 - load driver by full name. */
static inline
int _ksys_get_thread_slot(int tid){
int val;
ksys_drv_hand_t _ksys_load_driver_opt(char *driver_path, char *cmd_line)
{
ksys_drv_hand_t driver_h;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(18), "b"(21), "c"(tid)
:"=a"(driver_h)
:"a"(68), "b"(21), "c"(driver_path), "d"(cmd_line)
);
return val;
return driver_h;
}
 
/*======== Function 68, subfunction 22 - open named memory area. =======*/
 
enum KSYS_SHM_MODE{
KSYS_SHM_OPEN = 0x00,
KSYS_SHM_OPEN_ALWAYS = 0x04,
KSYS_SHM_CREATE = 0x08,
KSYS_SHM_READ = 0x00,
KSYS_SHM_WRITE = 0x01,
};
 
static inline
int _ksys_process_info(ksys_proc_table_t* table, int pid)
int _ksys_shm_open(char *name, int mode, int size, char **new_shm)
{
int val;
int error;
asm_inline(
"int $0x40"
:"=a"(val)
:"a"(9), "b"(table), "c"(pid)
:"memory"
:"=a"(*new_shm), "=d"(error)
:"a"(68), "b"(22), "c"(name), "d"(size), "S"(mode)
);
return val;
return error;
}
 
/*======= Function 68, subfunction 23 - close named memory area. =======*/
 
static inline
void _ksys_exit()
void _ksys_shm_close(char *shm_name)
{
asm_inline("int $0x40"::"a"(-1));
}
 
 
/* Working with files and directories */
 
static inline
void _ksys_setcwd(char* dir){
asm_inline(
"int $0x40"
::"a"(30), "b"(1), "c"(dir)
"int $0x40":
:"a"(68), "b"(23), "c"(shm_name)
);
}
/*====== Function 68, subfunction 26 - release memory pages ============*/
 
static inline
int _ksys_getcwd(char* buf, int bufsize){
register int val;
int* _ksys_unmap(void *base, size_t offset, size_t size){
int *val;
asm_inline(
"int $0x40"
:"=a"(val):"a"(30), "b"(2), "c"(buf), "d"(bufsize)
:"=a"(val)
:"a"(68),"b"(26),"c"(base),"d"(offset),"S"(size)
);
return val;
}
 
/*========== Function 68, subfunction 27 - load file ===================*/
 
static inline
ksys_ufile_t _ksys_load_file(const char *path)
{
861,6 → 1244,8
return uf;
}
 
/*==== Function 68, subfunction 28 - load file, specifying the encoding ===*/
 
static inline
ksys_ufile_t _ksys_load_file_enc(const char *path, unsigned file_encoding)
{
874,6 → 1259,8
return uf;
}
 
/*==== Function 70 - work with file system with long names support. ====*/
 
static inline
int _ksys_work_files(const ksys70_t *k)
{
887,6 → 1274,8
return status;
}
 
/*====== Function 70, subfunction 0 - read file with long names support. ======*/
 
static inline
int _ksys_file_read_file(const char *name, unsigned long long offset, unsigned size, void *buf, unsigned *bytes_read)
{
911,7 → 1300,22
return status;
}
 
/*===================== Function 70, subfunction 2 =====================*/
/*============ Create/rewrite file with long names support. ============*/
 
static inline
int _ksys_file_create(const char* name){
ksys70_t k;
k.p00 = 2;
k.p12 = 0;
k.p21 = name;
return _ksys_work_files(&k);
}
 
/*===================== Function 70, subfunction 3 =====================*/
/*=========== Write to existing file with long names support. ==========*/
 
static inline
int _ksys_file_write_file(const char *name, unsigned long long offset, unsigned size, const void *buf, unsigned *bytes_written)
{
ksys70_t k;
935,14 → 1339,7
return status;
}
 
static inline
int _ksys_file_create(const char* name){
ksys70_t k;
k.p00 = 2;
k.p12 = 0;
k.p21 = name;
return _ksys_work_files(&k);
}
/*========== Function 70, subfunction 5 - get information on file/folder. =====*/
 
static inline
int _ksys_file_get_info(const char *name, ksys_bdfe_t *bdfe)
955,40 → 1352,34
return _ksys_work_files(&k);
}
 
/*=========== Function 70, subfunction 7 - start application. ===========*/
 
static inline
int _ksys_file_delete(const char *name)
int _ksys_exec(char *app_name, char *args)
{
ksys70_t k;
k.p00 = 8;
k.p20 = 0;
k.p21 = name;
return _ksys_work_files(&k);
ksys70_t file_opt;
file_opt.p00 = 7;
file_opt.p04dw = 0;
file_opt.p08dw = (unsigned)args;
file_opt.p21 = app_name;
return _ksys_work_files(&file_opt);
}
 
/*========== Function 70, subfunction 8 - delete file/folder. ==========*/
 
static inline
int _ksys_file_rename(const char *name, const char *new_name)
int _ksys_file_delete(const char *name)
{
ksys70_t k;
k.p00 = 10;
k.new_name = new_name;
k.p00 = 8;
k.p20 = 0;
k.p21 = name;
return _ksys_work_files(&k);
}
 
/*============= Function 70, subfunction 9 - create folder. ============*/
 
static inline
int _ksys_exec(char *app_name, char *args)
{
ksys70_t file_opt;
file_opt.p00 = 7;
file_opt.p04dw = 0;
file_opt.p08dw = (unsigned)args;
file_opt.p21 = app_name;
return _ksys_work_files(&file_opt);
}
 
static inline
int _ksys_mkdir(const char *path)
{
ksys70_t dir_opt;
997,71 → 1388,24
return _ksys_work_files(&dir_opt);
}
 
/* Working with a named shared memory area. */
/*============= Function 70, subfunction 10 - rename/move. =============*/
 
static inline
int _ksys_shm_open(char *name, int mode, int size, char **new_shm)
int _ksys_file_rename(const char *name, const char *new_name)
{
int error;
asm_inline(
"int $0x40"
:"=a"(*new_shm), "=d"(error)
:"a"(68), "b"(22), "c"(name), "d"(size), "S"(mode)
);
return error;
ksys70_t k;
k.p00 = 10;
k.new_name = new_name;
k.p20 = 0;
k.p21 = name;
return _ksys_work_files(&k);
}
 
static inline
void _ksys_shm_close(char *shm_name)
{
asm_inline(
"int $0x40":
:"a"(68), "b"(23), "c"(shm_name)
);
}
/* ######### Old names of functions and structures. Do not use again! ##########*/
 
/* Driver functions */
#define ksys_coff_etable_t ksys_dll_t
#define ksys_proc_table_t ksys_thread_t
#define _ksys_get_event _ksys_wait_event
 
static inline
ksys_drv_hand_t _ksys_load_driver(char *driver_name)
{
ksys_drv_hand_t driver_h;
asm_inline(
"int $0x40"
:"=a"(driver_h)
:"a"(68), "b"(16), "c"(driver_name)
);
return driver_h;
}
 
static inline
ksys_drv_hand_t _ksys_load_pe_driver(char *driver_path, char *cmd_line)
{
ksys_drv_hand_t driver_h;
asm_inline(
"int $0x40"
:"=a"(driver_h)
:"a"(68), "b"(21), "c"(driver_path), "d"(cmd_line)
);
return driver_h;
}
 
static inline
unsigned _ksys_work_driver(ksys_ioctl_t *ioctl)
{
unsigned status;
asm_inline(
"int $0x40"
:"=a"(status)
:"a"(68), "b"(17), "c"(ioctl)
:"memory"
);
return status;
}
 
#ifdef __cplusplus
}
#endif
 
#endif // _KSYS_H_
/programs/develop/ktcc/trunk/libc.obj/source/time/time.c
5,7 → 5,7
 
time_t time(time_t *timer){
int kos_date, kos_time;
kos_date = _ksys_get_date();
kos_date = _ksys_get_date().val;
kos_time = _ksys_get_clock();
int bcd_day = (kos_date >> 16);