Ignore:
File:
1 edited

Legend:

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

    r68a552f r4c6fd56  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * Copyright (c) 2012 Petr Koupy
    44 * All rights reserved.
     
    3838#define TERMINAL_H
    3939
     40#include <adt/prodcons.h>
    4041#include <errno.h>
     42#include <fibril.h>
    4143#include <fibril_synch.h>
    4244#include <gfx/bitmap.h>
     
    4648#include <io/con_srv.h>
    4749#include <loc.h>
    48 #include <adt/prodcons.h>
    4950#include <stdatomic.h>
    5051#include <str.h>
     52#include <task.h>
    5153#include <ui/ui.h>
    5254#include <ui/window.h>
     
    8991        charfield_t *ubuf;
    9092
     93        loc_srv_t *srv;
    9194        service_id_t dsid;
    9295        con_srvs_t srvs;
     96
     97        task_wait_t wait;
     98        fid_t wfid;
    9399} terminal_t;
    94100
    95101extern errno_t terminal_create(const char *, sysarg_t, sysarg_t,
    96     terminal_flags_t, terminal_t **);
     102    terminal_flags_t, const char *, terminal_t **);
    97103extern void terminal_destroy(terminal_t *);
    98104
Note: See TracChangeset for help on using the changeset viewer.