Edit samples
git-svn-id: svn://kolibrios.org@8109 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
8ce9d8845f
commit
1c69f15cea
@ -1,9 +1,9 @@
|
|||||||
#SHS
|
#SHS
|
||||||
../tcc asm_ex.c /kolibrios/develop/tcc/lib/libck.a -o asm_ex
|
../tcc asm_ex.c -lck -o asm_ex
|
||||||
../tcc consoleio.c /kolibrios/develop/tcc/lib/libck.a -o consoleio
|
../tcc consoleio.c -lck -o consoleio
|
||||||
../tcc files.c /kolibrios/develop/tcc/lib/libck.a -o files
|
../tcc files.c -lck -o files
|
||||||
../tcc winbasics.c /kolibrios/develop/tcc/lib/libck.a -o winbasics
|
../tcc winbasics.c -lck -o winbasics
|
||||||
../tcc dynamic.c -lconsole -lhttp -linputbox -o dynamic
|
../tcc dynamic.c -lhttp -linputbox -o dynamic
|
||||||
../tcc load_coff.c -o load_coff -lck
|
../tcc load_coff.c -o load_coff -lck
|
||||||
../tcc clayer/msgbox.c -lck -lmsgbox -o msgbox
|
../tcc clayer/msgbox.c -lck -lmsgbox -o msgbox
|
||||||
../tcc graphics.c -lck -lgb -o graphics
|
../tcc graphics.c -lck -lgb -o graphics
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
#include <kos/console.h>
|
#include <conio.h>
|
||||||
#include <kos/http.h>
|
#include <kos/http.h>
|
||||||
#include <kos/inputbox.h>
|
#include <kos/inputbox.h>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
if (con_init_console_dll()) return 1; // init fail
|
||||||
con_write_asciiz("Wait, I'll ask you... when I'll done to fetch one site...\n");
|
con_write_asciiz("Wait, I'll ask you... when I'll done to fetch one site...\n");
|
||||||
con_set_title("Dynamicaly linked app");
|
con_set_title("Dynamicaly linked app");
|
||||||
http_msg *h = get("http://example.com", 0, HTTP_FLAG_BLOCK, "");
|
http_msg *h = get("http://example.com", 0, HTTP_FLAG_BLOCK, "");
|
||||||
|
Loading…
Reference in New Issue
Block a user