Changes in uspace/srv/hid/rfb/main.c [b688fd8:1d6dd2a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/rfb/main.c
rb688fd8 r1d6dd2a 35 35 #include <inttypes.h> 36 36 #include <io/log.h> 37 #include <str.h> 37 38 #include <task.h> 38 39 … … 52 53 static rfb_t rfb; 53 54 54 static int rfb_claim(visualizer_t *vs)55 { 56 return EOK; 57 } 58 59 static int rfb_yield(visualizer_t *vs)60 { 61 return EOK; 62 } 63 64 static int rfb_suspend(visualizer_t *vs)65 { 66 return EOK; 67 } 68 69 static int rfb_wakeup(visualizer_t *vs)70 { 71 return EOK; 72 } 73 74 static int rfb_handle_damage_pixels(visualizer_t *vs,55 static errno_t rfb_claim(visualizer_t *vs) 56 { 57 return EOK; 58 } 59 60 static errno_t rfb_yield(visualizer_t *vs) 61 { 62 return EOK; 63 } 64 65 static errno_t rfb_suspend(visualizer_t *vs) 66 { 67 return EOK; 68 } 69 70 static errno_t rfb_wakeup(visualizer_t *vs) 71 { 72 return EOK; 73 } 74 75 static errno_t rfb_handle_damage_pixels(visualizer_t *vs, 75 76 sysarg_t x0, sysarg_t y0, sysarg_t width, sysarg_t height, 76 77 sysarg_t x_offset, sysarg_t y_offset) … … 126 127 } 127 128 128 static int rfb_change_mode(visualizer_t *vs, vslmode_t new_mode)129 static errno_t rfb_change_mode(visualizer_t *vs, vslmode_t new_mode) 129 130 { 130 131 return EOK; … … 217 218 async_set_fallback_port_handler(client_connection, NULL); 218 219 219 int rc = loc_server_register(NAME);220 errno_t rc = loc_server_register(NAME); 220 221 if (rc != EOK) { 221 222 printf("%s: Unable to register server.\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.