Main Page   Data Structures   File List   Data Fields   Globals   Related Pages  

Test List

File debug.h
Log1(priority, "text"); log "text" with priority level priority  Log2(priority, "text: %d", 1234); log "text: 1234"  the format string can be anything printf() can understand  Log3(priority, "text: %d %d", 1234, 5678); log "text: 1234 5678"  the format string can be anything printf() can understand  LogXxd(priority, msg, buffer, size); log "msg" + a hex dump of size bytes of buffer[]  @endcode </dd></dl>


<dl><dt>\anchor _test000003
File \_internalref debuglog_8h "debuglog.h"</dt>
<dd>  @code  Log1(priority, "text"); log "text" with priority level priority  Log2(priority, "text: %d", 1234); log "text: 1234"  the format string can be anything printf() can understand  Log3(priority, "text: %d %d", 1234, 5678); log "text: 1234 5678"  the format string can be anything printf() can understand  LogXxd(priority, msg, buffer, size); log "msg" + a hex dump of size bytes of buffer[]  @endcode </dd></dl>


<dl><dt>\anchor _test000002
Global \_internalref error_8c:a0 "pcsc_stringify_error"(long pcscError)</dt>
<dd>  @code  SCARDCONTEXT hContext;  LONG rv;  rv = SCardEstablishContext(SCARD\_SCOPE\_SYSTEM, NULL, NULL, &hContext);  if (rv != SCARD_S_SUCCESS) printf("SCardReleaseContext: %s (0x%lX)\n", pcsc_stringify_error(rv), rv);  @endcode </dd></dl>


<dl><dt>\anchor _test000009
Global \_internalref winscard__clnt_8c:a34 "SCardBeginTransaction"(SCARDHANDLE hCard)</dt>
<dd>  @code  SCARDCONTEXT hContext;  SCARDHANDLE hCard;  DWORD dwActiveProtocol;  LONG rv;  ...  rv = SCardEstablishContext(SCARD_SCOPE_SYSTEM, NULL, NULL, &hContext);  rv = SCardConnect(hContext, "Reader X", SCARD_SHARE_SHARED, SCARD_PROTOCOL_T0, &hCard, &dwActiveProtocol);  rv = SCardBeginTransaction(hCard);  ...  / * Do some transmit commands * /

Global SCardCancel(SCARDCONTEXT hContext)

Generated on Tue Apr 1 19:12:58 2008 for pcsc-lite by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002