You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Allow the frontend to specify the DD IPL ROM file to load
* cb_data: points to frontend-defined callback data.
* Returns a NULL-terminated string owned by the core specifying the DD IPL ROM filename to load
* Empty or NULL string results in disabled 64DD.
*/
char* (*get_dd_rom)(void*cb_data);
/* Allow the frontend to specify the DD disk file to load
* cb_data: points to frontend-defined callback data.
* Returns a NULL-terminated string owned by the core specifying the DD disk filename to load
* Empty or NULL string results in no DD disk being loaded (eg. empty disk drive).
*/
char* (*get_dd_disk)(void*cb_data);
} m64p_media_loader;
It would be a good code-formatting thing to stick with a common casing convention for these structs. Doing so will also make it easier to create bindings for other languages.
The text was updated successfully, but these errors were encountered:
Here's a few structs from the current
m64p_types.h
.mupen64plus-core/src/api/m64p_types.h
Lines 255 to 273 in 860fac3
mupen64plus-core/src/api/m64p_types.h
Lines 275 to 290 in 860fac3
mupen64plus-core/src/api/m64p_types.h
Lines 182 to 221 in 860fac3
It would be a good code-formatting thing to stick with a common casing convention for these structs. Doing so will also make it easier to create bindings for other languages.
The text was updated successfully, but these errors were encountered: