I'm working on converting what was originally a web forms .NET application to UWP. The application is for using company-issued badges to record meeting attendance instead of our current paper sign in sheets. The original program uses an Omnikey 5427 CK in keyboard wedge mode and has no problems. For [...] read more
Iam trying to run winscard functions using js-ctypes in Firefox. I have working C code and I started to copy code to javascipt. Unfortunetly my first function- SCardEstablishContext returns the following error: > SCARD_E_INVALID_PARAMETER 0x80100004 Whats wrong with the arguments? Components.utils.import("resource://gre/modules/ctypes.jsm"); const NULL = ctypes.voidptr_t(0); var cardLib = ctypes.open("C:\\WINDOWS\\system32\\WinSCard.dll"); var [...] read more