void SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func, SDL_calloc_func *calloc_func, SDL_realloc_func *realloc_func, SDL_free_func *free_func);
| SDL_malloc_func * | malloc_func | malloc関数の書込先へのポインタ |
| SDL_calloc_func * | calloc_func | calloc関数の書込先へのポインタ |
| SDL_realloc_func * | realloc_func | realloc関数の書込先へのポインタ |
| SDL_free_func * | free_func | free関数の書込先へのポインタ |
この関数はロックしないため, バックグラウンドスレッドでSDL_SetMemoryFunctionsを同時に呼ばれる可能性がある場合は呼んではならない.