From: Takashi Iwai Date: Fri, 22 Mar 2002 12:00:38 +0000 (+0000) Subject: reverted: size_t -> unsigned int X-Git-Tag: v1.0.3~451 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=708847237bd96c427ed2e719e90cfe8a5c4d590d;p=alsa-lib.git reverted: size_t -> unsigned int to sync with asequencer.h removed ipc data - not implemented yet anyway.. --- diff --git a/include/seq_event.h b/include/seq_event.h index 9c801245..0138a7f3 100644 --- a/include/seq_event.h +++ b/include/seq_event.h @@ -314,15 +314,17 @@ typedef struct snd_seq_ev_raw32 { /** external stored data */ typedef struct snd_seq_ev_ext { - size_t len; /**< length of data */ + unsigned int len; /**< length of data */ void *ptr; /**< pointer to data (note: can be 64-bit) */ } snd_seq_ev_ext_t; +#if 0 /* FIXME: not implemented */ /** external stored data - IPC shared memory */ typedef struct snd_seq_ev_ipcshm { - size_t len; /**< length of data */ + unsigned int len; /**< length of data */ key_t ipc; /**< IPC key */ } snd_seq_ev_ipcshm_t; +#endif /** Instrument cluster type */ typedef unsigned int snd_seq_instr_cluster_t; @@ -442,7 +444,7 @@ typedef struct snd_seq_event { snd_seq_ev_raw8_t raw8; /**< raw8 data */ snd_seq_ev_raw32_t raw32; /**< raw32 data */ snd_seq_ev_ext_t ext; /**< external data */ - snd_seq_ev_ipcshm_t ipcshm; /**< IPC shared memory */ + /* snd_seq_ev_ipcshm_t ipcshm; */ /* IPC shared memory */ snd_seq_ev_queue_control_t queue; /**< queue control */ snd_seq_timestamp_t time; /**< timestamp */ snd_seq_addr_t addr; /**< address */