Changeset 6af4b4f in mainline for uspace/srv/hid/display/window.h


Ignore:
Timestamp:
2019-10-05T08:45:25Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bef51cf
Parents:
c8cf261
git-author:
Jiri Svoboda <jiri@…> (2019-10-04 17:52:54)
git-committer:
Jiri Svoboda <jiri@…> (2019-10-05 08:45:25)
Message:

Introduce ds_display_t, ds_window_t

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/window.h

    rc8cf261 r6af4b4f  
    3131 */
    3232/**
    33  * @file Window graphics context
     33 * @file Display server window
    3434 */
    3535
    36 #ifndef WINGC_H
    37 #define WINGC_H
     36#ifndef WINDOW_H
     37#define WINDOW_H
    3838
     39#include <errno.h>
    3940#include <types/gfx/context.h>
    4041#include <types/gfx/ops/context.h>
    41 #include "types/wingc.h"
     42#include "types/display/display.h"
     43#include "types/display/window.h"
    4244
    43 extern gfx_context_ops_t win_gc_ops;
     45extern gfx_context_ops_t window_gc_ops;
    4446
    45 extern errno_t win_gc_create(win_gc_t **);
    46 extern errno_t win_gc_delete(win_gc_t *);
    47 extern gfx_context_t *win_gc_get_ctx(win_gc_t *);
     47extern errno_t ds_window_create(ds_display_t *, ds_window_t **);
     48extern errno_t ds_window_delete(ds_window_t *);
     49extern gfx_context_t *ds_window_get_ctx(ds_window_t *);
    4850
    4951#endif
Note: See TracChangeset for help on using the changeset viewer.