procui: Fix ProcUIInForeground and ProcUIIsRunning comments (#330)

* procui: Fix ProcUIInForeground and ProcUIIsRunning comments

* Apply suggestions from code review

Co-authored-by: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com>

---------

Co-authored-by: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com>
This commit is contained in:
Andrew
2023-10-18 00:08:39 +01:00
committed by GitHub
parent 922eb4583e
commit b98f8fc824

View File

@@ -127,10 +127,11 @@ ProcUIDrawDoneRelease();
* Determines whether the application is in the foreground.
*
* \returns
* \c true if the application status is #PROCUI_STATUS_IN_FOREGROUND.
* \c true if the application is in foreground (e.g. during #PROCUI_STATUS_IN_FOREGROUND or #PROCUI_STATUS_RELEASE_FOREGROUND).
*
* \sa
* - #PROCUI_STATUS_IN_FOREGROUND
* - #PROCUI_STATUS_RELEASE_FOREGROUND
* - ProcUIRegisterCallback()
*/
BOOL
@@ -185,14 +186,15 @@ ProcUIInitEx(ProcUISaveCallbackEx saveCallback,
void *arg);
/**
* Determines whether the application is running.
* Determines whether the ProcUI library is running/initialised.
*
* \returns
* \c true if the application is running.
* \c true if the ProcUI library is initialised.
*
* \if false
* running? what does that actually mean? any state except exiting?
* \endif
* \sa
* - ProcUIInit()
* - ProcUIInitEx()
* - ProcUIShutdown()
*/
BOOL
ProcUIIsRunning();