tcc: added funcs in defs, added ini.def, tiny.o

git-svn-id: svn://kolibrios.org@9697 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Coldy 2022-02-07 16:58:03 +00:00
parent 143be8c69e
commit 5b5a240f91
5 changed files with 39 additions and 0 deletions

View File

@ -7,3 +7,7 @@ http_post
http_receive
http_send
http_free
http_disconnect
http_find_header_field
http_escape
http_unescape

View File

@ -18,3 +18,4 @@ img_rotate_layer
img_scale
img_to_rgb
img_to_rgb2
img_from_file

View File

@ -0,0 +1,13 @@
LIBRARY libini.obj
EXPORTS
ini_enum_sections
ini_enum_keys
ini_get_str
ini_get_int
ini_get_color
ini_set_str
ini_set_int
ini_set_color
ini_get_shortcut
ini_del_section

Binary file not shown.

View File

@ -0,0 +1,21 @@
;
; (c) 2022 Coldy
;
; This module tiny version of crt0.asm
; (for linking tiny app, incl. non C modules)
;
format ELF
;==============================
;public argc as '__argc' - no needed for tiny app
public params as '__argv'
public path as '__path'
section '.bss'
buf_len = 0x400
path rb buf_len
params rb buf_len
;section '.data'