Hello,
Thanks for 64 bit support! Do you have a sample application that works with 64 bit libraries?
I failed to make my 64 bit app to work with them: gc_Start call always fails,
And one small issue:
All event handling functions accept unsigned long event handle:
extern long __cdecl sr_getevtdev(unsigned long evt_handle);
extern long __cdecl sr_getevttype(unsigned long evt_handle);
extern long __cdecl sr_getevtlen(unsigned long evt_handle);
extern void * __cdecl sr_getevtdatap(unsigned long evt_handle);
but the event handler (according to sr_enbhdlr declaration) uses ULONG_PTR event handle that differs from unsigned long under 64 bit env.