Changeset 95c675b in mainline for uspace/lib/hound/src/client.c


Ignore:
Timestamp:
2017-10-17T13:11:35Z (8 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60af4cdb
Parents:
dbf32b1 (diff), a416d070 (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.
Message:

Merge mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/hound/src/client.c

    rdbf32b1 r95c675b  
    4141#include <stdlib.h>
    4242#include <stdio.h>
    43 #include <libarch/types.h>
     43#include <types/common.h>
    4444#include <task.h>
    4545
     
    4848
    4949/** Stream structure */
    50 typedef struct hound_stream {
     50struct hound_stream {
    5151        /** link in context's list */
    5252        link_t link;
     
    5959        /** Stream flags */
    6060        int flags;
    61 } hound_stream_t;
     61};
    6262
    6363/**
     
    7272
    7373/** Hound client context structure */
    74 typedef struct hound_context {
     74struct hound_context {
    7575        /** Audio session */
    7676        hound_sess_t *session;
     
    8989        /** Assigned context id */
    9090        hound_context_id_t id;
    91 } hound_context_t;
     91};
    9292
    9393/**
Note: See TracChangeset for help on using the changeset viewer.