SASlions1 / jmm

Automatically exported from code.google.com/p/jmm
0 stars 0 forks source link

Server C++ faster hasher is not invoked, since it fails (VS10 calling conventions changes) #473

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Default pinvoke calling conventions changed on VS10.

Change on Server -> hasher.cs

[DllImport("hasher.dll", EntryPoint = "CalculateHashes_AsyncIO")]

TO

[DllImport("hasher.dll", EntryPoint = "CalculateHashes_AsyncIO", 
CallingConvention = CallingConvention.Cdecl)]

Original issue reported on code.google.com by maximo.p...@nutzcode.com on 23 Aug 2013 at 11:05

GoogleCodeExporter commented 8 years ago
The change for this is done now.

Original comment by maximo.p...@gmail.com on 29 Dec 2013 at 5:01