diff --git a/programs/develop/ktcc/trunk/bin/lib/http.def b/programs/develop/ktcc/trunk/bin/lib/http.def index cdb14b8f1e..2743043dd7 100644 --- a/programs/develop/ktcc/trunk/bin/lib/http.def +++ b/programs/develop/ktcc/trunk/bin/lib/http.def @@ -7,3 +7,7 @@ http_post http_receive http_send http_free +http_disconnect +http_find_header_field +http_escape +http_unescape diff --git a/programs/develop/ktcc/trunk/bin/lib/img.def b/programs/develop/ktcc/trunk/bin/lib/img.def index a8a0922d11..9b98d85588 100644 --- a/programs/develop/ktcc/trunk/bin/lib/img.def +++ b/programs/develop/ktcc/trunk/bin/lib/img.def @@ -18,3 +18,4 @@ img_rotate_layer img_scale img_to_rgb img_to_rgb2 +img_from_file \ No newline at end of file diff --git a/programs/develop/ktcc/trunk/bin/lib/ini.def b/programs/develop/ktcc/trunk/bin/lib/ini.def new file mode 100644 index 0000000000..e55f0ba71a --- /dev/null +++ b/programs/develop/ktcc/trunk/bin/lib/ini.def @@ -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 \ No newline at end of file diff --git a/programs/develop/ktcc/trunk/bin/lib/tiny.o b/programs/develop/ktcc/trunk/bin/lib/tiny.o new file mode 100644 index 0000000000..af83c8ef3b Binary files /dev/null and b/programs/develop/ktcc/trunk/bin/lib/tiny.o differ diff --git a/programs/develop/ktcc/trunk/lib/tiny/tiny.asm b/programs/develop/ktcc/trunk/lib/tiny/tiny.asm new file mode 100644 index 0000000000..28572b4877 --- /dev/null +++ b/programs/develop/ktcc/trunk/lib/tiny/tiny.asm @@ -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'