Update of /cvsroot/alsa/alsa-lib/src/seq In directory sc8-pr-cvs1:/tmp/cvs-serv13689
Modified Files: seq.c Log Message: fixed typos. Index: seq.c =================================================================== RCS file: /cvsroot/alsa/alsa-lib/src/seq/seq.c,v retrieving revision 1.84 retrieving revision 1.85 diff -u -r1.84 -r1.85 --- seq.c 25 Jul 2003 17:24:43 -0000 1.84 +++ seq.c 27 Aug 2003 13:54:55 -0000 1.85 @@ -1065,7 +1065,7 @@ * \param info port_info container * \return 1 if the port updates timestamps of incoming events */ -int snd_seq_port_info_get_port_timestamping(const snd_seq_port_info_t *info) +int snd_seq_port_info_get_timestamping(const snd_seq_port_info_t *info) { assert(info); return (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0; @@ -1076,7 +1076,7 @@ * \param info port_info container * \return 1 if the time-stamping is in the real-time mode */ -int snd_seq_port_info_get_port_timestamp_real(const snd_seq_port_info_t *info) +int snd_seq_port_info_get_timestamp_real(const snd_seq_port_info_t *info) { assert(info); return (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0; @@ -1087,7 +1087,7 @@ * \param info port_info container * \return the queue id to get the timestamps */ -int snd_seq_port_info_get_port_timestamp_queue(const snd_seq_port_info_t *info) +int snd_seq_port_info_get_timestamp_queue(const snd_seq_port_info_t *info) { assert(info); return info->time_queue; @@ -1211,7 +1211,7 @@ * \param info port_info container * \param enable non-zero if updating the timestamps of incoming events */ -void snd_seq_port_info_set_port_timestamping(snd_seq_port_info_t *info, int enable) +void snd_seq_port_info_set_timestamping(snd_seq_port_info_t *info, int enable) { assert(info); if (enable) @@ -1225,7 +1225,7 @@ * \param info port_info container * \param enable non-zero if updating the timestamps in real-time mode */ -void snd_seq_port_info_set_port_timestamp_real(snd_seq_port_info_t *info, int enable) +void snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t *info, int enable) { assert(info); if (enable) @@ -1239,7 +1239,7 @@ * \param info port_info container * \param queue the queue id to get timestamps */ -void snd_seq_port_info_set_port_timestamp_queue(snd_seq_port_info_t *info, int queue) +void snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t *info, int queue) { assert(info); info->time_queue = queue; ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Alsa-cvslog mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/alsa-cvslog