Changeset 7cc30e9 in mainline for uspace/lib/display/private/params.h
- Timestamp:
- 2022-10-24T17:50:46Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 913add60
- Parents:
- 7a05d924
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/private/params.h
r7a05d924 r7cc30e9 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2022 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 46 46 } display_wnd_resize_t; 47 47 48 /** Display window parameters encoded for transport 49 * 50 * This omits variable-length fields (window caption). 51 */ 52 typedef struct { 53 /** Bounding rectangle */ 54 gfx_rect_t rect; 55 /** Window caption size in bytes */ 56 size_t caption_size; 57 /** Minimum size (when being resized) */ 58 gfx_coord2_t min_size; 59 /** Initial position (if flag wndf_setpos is set) */ 60 gfx_coord2_t pos; 61 /** Flags */ 62 display_wnd_flags_t flags; 63 } display_wnd_params_enc_t; 64 48 65 #endif 49 66
Note:
See TracChangeset
for help on using the changeset viewer.