Add MSI installer for win32 virtualsmartcard.

Also ignore temporary VS artifacts and removes conflicting snprintf definition with standard definition
This commit is contained in:
Nick Russler
2016-11-08 12:22:56 +01:00
committed by Frank Morgner
parent 77eb263212
commit de515d80d2
15 changed files with 556 additions and 18 deletions

View File

@@ -55,21 +55,21 @@ DEFINE_GUID(SmartCardReaderGuid, 0x50DD5230, 0xBA8A, 0x11D1, 0xBF,0x5D,0x00,0x00
// Include the type specific headers.
//
class funcTrace {
public:
wchar_t funcN[500];
funcTrace (char *func) {
wchar_t funcName[500];
wsprintf(funcN,L"%S",func);
wsprintf(funcName,L"[BixVReader]IN -> %s",funcN);
OutputDebugString(funcName);
}
~funcTrace () {
wchar_t funcName[500];
wsprintf(funcName,L"[BixVReader]OUT -> %s",funcN);
OutputDebugString(funcName);
}
};
//class funcTrace {
//public:
// TCHAR funcN[500];
// funcTrace (char *func) {
// TCHAR funcName[500];
// wsprintf(funcN, _T("%S"), func);
// wsprintf(funcName, _T("[BixVReader]IN -> %s"), funcN);
// OutputDebugString(funcName);
// }
// ~funcTrace () {
// TCHAR funcName[500];
// wsprintf(funcName, _T("[BixVReader]OUT -> %s"), funcN);
// OutputDebugString(funcName);
// }
//};
//#define inFunc funcTrace _ftrace(__FUNCTION__);
#define inFunc