Added comments to publicized method

This commit is contained in:
Villermen 2014-07-07 22:09:00 +02:00
Родитель 419a25e86d
Коммит 1b0674efbe
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -172,16 +172,15 @@ namespace SDL2
out int channels
);
/* These are for Mix_LoadWAV, which is a macro in the C header.
* THIS IS AN RWops FUNCTION!
*/
/* IntPtr refers to a Mix_Chunk* */
/* THIS IS AN RWops FUNCTION! */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr Mix_LoadWAV_RW(
IntPtr src,
int freesrc
);
/* IntPtr refers to a Mix_Chunk* */
public static IntPtr Mix_LoadWAV(string file)
{
IntPtr rwops = SDL.INTERNAL_SDL_RWFromFile(file, "rb");