Lines Matching defs:wide

559 inString(PMEM_HANDLE * handle, STREAM in, char **destination, SERVER_DWORD dataLength, RD_BOOL wide)
561 unsigned int Result = (wide) ? (2 * dataLength) : (dataLength);
568 if (wide)
593 outString(STREAM out, char *source, RD_BOOL wide)
598 unsigned int Result = (wide) ? (2 * dataLength) : (dataLength);
602 if (wide)
627 inReaderName(PMEM_HANDLE * handle, STREAM in, char **destination, RD_BOOL wide)
632 inRepos(in, inString(handle, in, destination, dataLength, wide));
782 TS_SCardListReaders(STREAM in, STREAM out, RD_BOOL wide)
827 dataLength += outString(out, tmpMap->alias, wide);
832 dataLength += outString(out, "\0", wide);
839 dataLength += outString(out, cur, wide);
846 dataLength += outString(out, "\0", wide);
863 TS_SCardConnect(STREAM in, STREAM out, RD_BOOL wide)
880 inReaderName(&lcHandle, in, &szReader, wide);
1115 TS_SCardGetStatusChange(STREAM in, STREAM out, RD_BOOL wide)
1165 dataLength, wide));
1260 TS_SCardLocateCardsByATR(STREAM in, STREAM out, RD_BOOL wide)
1332 inReaderName(&lcHandle, in, (char **) &rsCur->szReader, wide);
1673 TS_SCardStatus(STREAM in, STREAM out, RD_BOOL wide)
1782 dataLength = outString(out, readerName, wide);
1783 dataLength += outString(out, "\0", wide);
2275 RD_BOOL wide = request != SC_LIST_READERS;
2276 Result = (SERVER_DWORD) TS_SCardListReaders(in, out, wide);
2283 RD_BOOL wide = request != SC_CONNECT;
2284 Result = (SERVER_DWORD) TS_SCardConnect(in, out, wide);
2303 RD_BOOL wide = request != SC_GET_STATUS_CHANGE;
2304 Result = (SERVER_DWORD) TS_SCardGetStatusChange(in, out, wide);
2317 RD_BOOL wide = request != SC_LOCATE_CARDS_BY_ATR;
2318 Result = (SERVER_DWORD) TS_SCardLocateCardsByATR(in, out, wide);
2361 RD_BOOL wide = request != SC_STATUS;
2362 Result = (SERVER_DWORD) TS_SCardStatus(in, out, wide);