HelenOS sources

hello              58 uspace/app/hello/hello.c 	hello_t *hello = (hello_t *) arg;
hello              60 uspace/app/hello/hello.c 	ui_quit(hello->ui);
hello              69 uspace/app/hello/hello.c 	hello_t hello;
hello              94 uspace/app/hello/hello.c 	memset((void *) &hello, 0, sizeof(hello));
hello              95 uspace/app/hello/hello.c 	hello.ui = ui;
hello             103 uspace/app/hello/hello.c 	ui_window_set_cb(window, &window_cb, (void *) &hello);
hello             104 uspace/app/hello/hello.c 	hello.window = window;
hello             108 uspace/app/hello/hello.c 	rc = ui_fixed_create(&hello.fixed);
hello             114 uspace/app/hello/hello.c 	rc = ui_label_create(ui_res, "Hello, world!", &hello.label);
hello             121 uspace/app/hello/hello.c 	ui_label_set_rect(hello.label, &rect);
hello             122 uspace/app/hello/hello.c 	ui_label_set_halign(hello.label, gfx_halign_center);
hello             123 uspace/app/hello/hello.c 	ui_label_set_valign(hello.label, gfx_valign_center);
hello             125 uspace/app/hello/hello.c 	rc = ui_fixed_add(hello.fixed, ui_label_ctl(hello.label));
hello             131 uspace/app/hello/hello.c 	ui_window_add(window, ui_fixed_ctl(hello.fixed));
hello             181 uspace/app/hello/hello.c 	rc = hello(display_spec);
HelenOS homepage, sources at GitHub