Skip to content

Commit

Permalink
Doxygen: do not use \ref for functions
Browse files Browse the repository at this point in the history
src/winscard_clnt.c:3094: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:3094: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:3094: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:3094: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:3094: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:3094: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:3096: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:439: warning: unable to resolve reference to 'SCardCancel()' for \ref command
src/winscard_clnt.c:440: warning: unable to resolve reference to 'SCardGetStatusChange()' for \ref command
src/winscard_clnt.c:2345: warning: unable to resolve reference to 'SCardListReaders()' for \ref command
src/winscard_clnt.c:1592: warning: unable to resolve reference to 'SCardCancel()' for \ref command
  • Loading branch information
LudovicRousseau committed Feb 11, 2023
1 parent 46dbef9 commit 0b91862
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/winscard_clnt.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ static LONG SCardEstablishContextTH(DWORD, LPCVOID, LPCVOID,
*
* This must be the first WinSCard function called in a PC/SC application.
* Each thread of an application shall use its own \ref SCARDCONTEXT, unless
* calling \ref SCardCancel(), which MUST be called with the same context as the
* context used to call \ref SCardGetStatusChange().
* calling SCardCancel(), which MUST be called with the same context as the
* context used to call SCardGetStatusChange().
*
* @ingroup API
* @param[in] dwScope Scope of the establishment.
Expand Down Expand Up @@ -1589,7 +1589,7 @@ LONG SCardStatus(SCARDHANDLE hCard, LPSTR szReaderName,
* reader name \c "\\?PnP?\Notification". If a reader event occurs the state of
* this reader will change and the bit \ref SCARD_STATE_CHANGED will be set.
*
* To cancel the ongoing call, use \ref SCardCancel() with the same
* To cancel the ongoing call, use SCardCancel() with the same
* \ref SCARDCONTEXT.
*
* @code
Expand Down Expand Up @@ -2334,7 +2334,7 @@ LONG SCardControl(SCARDHANDLE hCard, DWORD dwControlCode, LPCVOID pbSendBuffer,
* - \ref SCARD_ATTR_DEVICE_FRIENDLY_NAME
* Implemented by pcsc-lite if the IFD Handler (driver) returns \ref
* IFD_ERROR_TAG. pcsc-lite then returns the same reader name as
* returned by \ref SCardListReaders().
* returned by SCardListReaders().
* - \ref SCARD_ATTR_DEVICE_IN_USE
* - \ref SCARD_ATTR_DEVICE_SYSTEM_NAME
* - \ref SCARD_ATTR_DEVICE_UNIT
Expand Down Expand Up @@ -3083,8 +3083,8 @@ LONG SCardListReaderGroups(SCARDCONTEXT hContext, LPSTR mszGroups,
}

/**
* Cancels a specific blocking \ref SCardGetStatusChange() function.
* MUST be called with the same \ref SCARDCONTEXT as \ref
* Cancels a specific blocking SCardGetStatusChange() function.
* MUST be called with the same \ref SCARDCONTEXT as
* SCardGetStatusChange().
*
* @ingroup API
Expand Down

0 comments on commit 0b91862

Please sign in to comment.