SCardGetReaderDeviceInstanceId 的实现
The implementation of SCardGetReaderDeviceInstanceId
Microsoft 在 Windows8 及更高版本的 winscard.dll 中实现了 SCardGetReaderDeviceInstanceId
。我真的很想知道这个功能的实现。我试图反编译它,但我不擅长反编译,我一无所获。我问是因为我需要将智能卡 reader 名称与 DeviceInstanceId 相关联,所以我想我可以在 Windows7 甚至更旧的版本上实现它,基于它在 Windows8 上的实现。伙计们,有什么帮助吗?
LONG WINAPI SCardGetReaderDeviceInstanceId(
_In_ SCARDCONTEXT hContext,
_In_ LPCTSTR szReaderName,
_Out_opt_ LPTSTR szDeviceInstanceId,
_Inout_ LPDWORD cchDeviceInstanceId
);
看看here。您的要求似乎无法在 Windows7 和旧版本上完成。
Microsoft 在 Windows8 及更高版本的 winscard.dll 中实现了 SCardGetReaderDeviceInstanceId
。我真的很想知道这个功能的实现。我试图反编译它,但我不擅长反编译,我一无所获。我问是因为我需要将智能卡 reader 名称与 DeviceInstanceId 相关联,所以我想我可以在 Windows7 甚至更旧的版本上实现它,基于它在 Windows8 上的实现。伙计们,有什么帮助吗?
LONG WINAPI SCardGetReaderDeviceInstanceId(
_In_ SCARDCONTEXT hContext,
_In_ LPCTSTR szReaderName,
_Out_opt_ LPTSTR szDeviceInstanceId,
_Inout_ LPDWORD cchDeviceInstanceId
);
看看here。您的要求似乎无法在 Windows7 和旧版本上完成。