diff options
author | 2011-04-12 21:40:22 +0000 | |
---|---|---|
committer | 2011-04-12 21:40:22 +0000 | |
commit | dd964a889cf8922473a69d35b78f2faa280d4c12 (patch) | |
tree | bc1c643dfbada373acbc6ba7ffb8c63d82d0a0ad /lib/libsndio/mio_priv.h | |
parent | No longer special-case NULL as a long for kernel and bootblocks. (diff) | |
download | wireguard-openbsd-dd964a889cf8922473a69d35b78f2faa280d4c12.tar.xz wireguard-openbsd-dd964a889cf8922473a69d35b78f2faa280d4c12.zip |
Use mio_<backend>_ prefix for private midi-related functions and put
them in files named mio_<backend>.c
No behaviour change.
Diffstat (limited to 'lib/libsndio/mio_priv.h')
-rw-r--r-- | lib/libsndio/mio_priv.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libsndio/mio_priv.h b/lib/libsndio/mio_priv.h index f5022dc6839..07d86684ab4 100644 --- a/lib/libsndio/mio_priv.h +++ b/lib/libsndio/mio_priv.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mio_priv.h,v 1.4 2009/08/21 16:48:03 ratchov Exp $ */ +/* $OpenBSD: mio_priv.h,v 1.5 2011/04/12 21:40:22 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -57,9 +57,9 @@ struct mio_ops { int (*revents)(struct mio_hdl *, struct pollfd *); }; -struct mio_hdl *mio_open_rmidi(const char *, unsigned, int); -struct mio_hdl *mio_open_thru(const char *, unsigned, int); -struct mio_hdl *mio_open_aucat(const char *, unsigned, int); +struct mio_hdl *mio_rmidi_open(const char *, unsigned, int); +struct mio_hdl *mio_midithru_open(const char *, unsigned, int); +struct mio_hdl *mio_aucat_open(const char *, unsigned, int); void mio_create(struct mio_hdl *, struct mio_ops *, unsigned, int); void mio_destroy(struct mio_hdl *); |