Changeset b9d689b in mainline for uspace/app/nav/nav.h


Ignore:
Timestamp:
2021-10-13T09:14:19Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Children:
fe5c7a1
Parents:
3e6c51f
git-author:
Jiri Svoboda <jiri@…> (2021-10-12 19:14:02)
git-committer:
Jiri Svoboda <jiri@…> (2021-10-13 09:14:19)
Message:

Move type definitions to separate directory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/nav/nav.h

    r3e6c51f rb9d689b  
    3838
    3939#include <errno.h>
    40 #include <display.h>
    41 #include <ui/fixed.h>
    42 #include <ui/ui.h>
    43 #include <ui/window.h>
    44 
    45 /** Navigator */
    46 typedef struct navigator {
    47         /** User interface */
    48         ui_t *ui;
    49         /** Window */
    50         ui_window_t *window;
    51         /** Fixed layout */
    52         ui_fixed_t *fixed;
    53         /** Menu */
    54         struct nav_menu *menu;
    55         /** Panels */
    56         struct panel *panel[2];
    57 } navigator_t;
     40#include "types/nav.h"
    5841
    5942extern errno_t navigator_create(const char *, navigator_t **);
Note: See TracChangeset for help on using the changeset viewer.