Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added openal

File size: 695 bytes
Line 
1/* -*- mode: C; tab-width:8; c-basic-offset:8 -*-
2 * vi:set ts=8:
3 *
4 * Plugins should include this header.
5 *
6 */
7#ifndef AL_EXT_NEEDED_H_
8#define AL_EXT_NEEDED_H_
9
10#include "al_main.h" /* for UNUSED macro */
11
12/*
13 * alExtInit_03282000(void)
14 *
15 * Called by the regular library to initialize plugin data structures.
16 */
17void alExtInit_03282000( void );
18
19/*
20 * alExtFini_03282000(void)
21 *
22 * Called by the regular library to finalize plugin data structures.
23 */
24void alExtFini_03282000( void );
25
26/*
27 * AL_EXT_PAIR is a macro that expands to a name, address pair
28 * for use in the extension table.
29 */
30#define AL_EXT_PAIR(x) { (const ALubyte *) #x, (AL_funcPtr) x }
31
32#endif /* AL_EXT_NEEDED_H_ */
Note: See TracBrowser for help on using the repository browser.