Changeset c37c24c in mainline for uspace/app/aboutos/aboutos.h
- Timestamp:
- 2024-04-07T09:52:47Z (10 months ago)
- Children:
- e55d2c1
- Parents:
- 6c1e7c0 (diff), 34aad53d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/aboutos/aboutos.h
r6c1e7c0 rc37c24c 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup launcher29 /** @addtogroup aboutos 30 30 * @{ 31 31 */ 32 32 /** 33 * @file Launcher33 * @file About HelenOS 34 34 */ 35 35 36 #ifndef LAUNCHER_H37 #define LAUNCHER_H36 #ifndef ABOUTOS_H 37 #define ABOUTOS_H 38 38 39 #include <display.h>40 #include <types/common.h>41 39 #include <ui/fixed.h> 42 40 #include <ui/image.h> … … 46 44 #include <ui/window.h> 47 45 48 /** Launcher*/46 /** About HelenOS */ 49 47 typedef struct { 50 48 ui_t *ui; … … 53 51 54 52 ui_image_t *image; 55 ui_label_t *label; 53 ui_label_t *lrelease; 54 ui_label_t *lcopy; 55 ui_label_t *larch; 56 56 57 ui_pbutton_t *pb1; 58 ui_pbutton_t *pb2; 59 ui_pbutton_t *pb3; 60 ui_pbutton_t *pb4; 61 ui_pbutton_t *pb5; 62 ui_pbutton_t *pb6; 63 64 /** ID of device that sent last position event */ 65 sysarg_t ev_pos_id; 66 } launcher_t; 57 ui_pbutton_t *pbok; 58 } aboutos_t; 67 59 68 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.