Changeset 7bf29e5 in mainline for uspace/lib/ui/private/msgdialog.h
- Timestamp:
- 2025-01-09T11:29:38Z (5 months ago)
- Children:
- a5c2960e
- Parents:
- bc3d695 (diff), 4e1221c (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/msgdialog.h
rbc3d695 r7bf29e5 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 #define _UI_PRIVATE_MSGDIALOG_H 39 39 40 #include <types/ui/msgdialog.h> 41 #include <ui/pbutton.h> 42 #include <ui/window.h> 43 40 44 /** Actual structure of message dialog. 41 45 * … … 45 49 /** Dialog window */ 46 50 struct ui_window *window; 47 /** OK button*/48 struct ui_pbutton *b ok;51 /** Buttons */ 52 struct ui_pbutton *btn[ui_msg_dialog_maxbtn]; 49 53 /** Message dialog callbacks */ 50 54 struct ui_msg_dialog_cb *cb;
Note:
See TracChangeset
for help on using the changeset viewer.