quick doc fixes

This commit is contained in:
TheSola10 2025-04-04 18:10:10 +02:00
parent c584faff09
commit c71aa73e58
Signed by: thesola10
GPG Key ID: 89245619BEBB95BA
3 changed files with 2934 additions and 4 deletions

2930
Doxyfile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -76,7 +76,7 @@ _impl_lp_readDiscHeader(PspIoDrvFileArg *arg, const char *devname)
* @brief The effective low-level read command. * @brief The effective low-level read command.
* *
* This function is called whenever a devctl to read data off disc is * This function is called whenever a devctl to read data off disc is
* intercepted. All parameters are provided from the {@ref PspIoDrvFuncs::IoDevctl} * intercepted. All parameters are provided from the @ref PspIoDrvFuncs::IoDevctl
* function call made by the caller, to allow seamless passthrough to the * function call made by the caller, to allow seamless passthrough to the
* original driver. * original driver.
* *

6
main.c
View File

@ -40,7 +40,7 @@ u32 fn_RegisterUmdCallback;
* wrongly patch a different disc, such as on VSH. * wrongly patch a different disc, such as on VSH.
* *
* This callback does two things, in order: * This callback does two things, in order:
* - Reset the first read flag by calling {@ref lp_pingDiscRemoved} * - Reset the first read flag by calling @ref lp_pingDiscRemoved
* - Call the 'guest callback', the callback that was originally meant to handle * - Call the 'guest callback', the callback that was originally meant to handle
* UMD drive events. * UMD drive events.
* *
@ -82,8 +82,8 @@ int lp_catchUmdCallback(int cbid)
* It performs the following tasks, in order: * It performs the following tasks, in order:
* - Look up a callback named "SceVshMediaDetectUMD" or "DVDUMD", and write it * - Look up a callback named "SceVshMediaDetectUMD" or "DVDUMD", and write it
* down as our guest callback. * down as our guest callback.
* - Register {@ref lp_discChangeCallback} as the UMD event callback. * - Register @ref lp_discChangeCallback as the UMD event callback.
* - Redirect sceUmdRegisterUMDCallBack to {@ref lp_catchUmdCallback}, taking * - Redirect sceUmdRegisterUMDCallBack to @ref lp_catchUmdCallback, taking
* care to save the original instructions for cleanup. * care to save the original instructions for cleanup.
* - Go to sleep and wait for callbacks. * - Go to sleep and wait for callbacks.
*/ */