aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-21 20:39:48 +0200
committerMarvin Borner2020-08-21 20:39:48 +0200
commitf700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (patch)
treeb04a80efabb09c9da9726332ccd22cb5a325fe39 /apps/wm.c
parent1339d96cea2c647991c178587008d6fc40772a78 (diff)
Some things here and some things there
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 5f9503e..c5347e4 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -16,11 +16,12 @@ void onkey(u32 scancode)
}
}
-void main(char **argv)
+int main(int argc, char **argv)
{
- struct vbe *vbe = (struct vbe *)argv[0];
+ struct vbe *vbe = (struct vbe *)argv[1];
- print("WM loaded.\n");
+ printf("%x\n", argc);
+ printf("%s loaded.\n", argv[0]);
printf("VBE: %dx%d\n", vbe->width, vbe->height);
const u32 color[3] = { 0, 0, 0 };
@@ -29,10 +30,10 @@ void main(char **argv)
gui_init("/font/spleen-16x32.psfu");
gui_write(vbe, 50, 50, text, "hallo");
- printf("onkey: %x\n", onkey);
- map(EVENT_KEYBOARD, onkey);
+ /* printf("onkey: %x\n", onkey); */
+ /* map(EVENT_KEYBOARD, onkey); */
while (1) {
};
- exit();
+ return 0;
}