Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/openal-0.0.8/src/al_listen.h @ 17

Last change on this file since 17 was 17, checked in by landauf, 16 years ago

added openal

File size: 507 bytes
Line 
1/* -*- mode: C; tab-width:8; c-basic-offset:8 -*-
2 * vi:set ts=8:
3 *
4 * al_listen.h
5 *
6 * Prototypes, macros and definitions related to the management of listeners.
7 *
8 */
9#ifndef _AL_LISTENER_H_
10#define _AL_LISTENER_H_
11
12#include "al_types.h"
13
14/*
15 * Initializes a listener to the default values for all its elements.
16 */
17void _alInitListener( AL_listener *listener );
18
19/*
20 * Performs any needed finalization on a listener.
21 */
22void _alDestroyListener( AL_listener *listener );
23
24#endif /* _AL_LISTENER_H_ */
Note: See TracBrowser for help on using the repository browser.