Added many comments, and changed function names for wrapper functions.

This commit is contained in:
rude
2009-08-09 21:08:55 +02:00
parent f2adfd53f2
commit ba1a75e547
103 changed files with 2608 additions and 2391 deletions
+8 -8
View File
@@ -30,14 +30,14 @@ namespace love
namespace sound
{
SoundData * luax_checksounddata(lua_State * L, int idx);
int _wrap_getPointer(lua_State * L);
int _wrap_getSize(lua_State * L);
int _wrap_getChannels(lua_State * L);
int _wrap_getBits(lua_State * L);
int _wrap_getSampleRate(lua_State * L);
int _wrap_setSample(lua_State * L);
int _wrap_getSample(lua_State * L);
int wrap_SoundData_open(lua_State * L);
int w_getPointer(lua_State * L);
int w_getSize(lua_State * L);
int w_getChannels(lua_State * L);
int w_getBits(lua_State * L);
int w_getSampleRate(lua_State * L);
int w_setSample(lua_State * L);
int w_getSample(lua_State * L);
int luaopen_sounddata(lua_State * L);
} // sound
} // love