Oxygen Basic

Programming => Problems & Solutions => Topic started by: jcfuller on July 30, 2019, 03:27:25 PM

Title: how to use qsort
Post by: jcfuller on July 30, 2019, 03:27:25 PM
Charles,
  Can't get qsort to work.

James
Title: Re: how to use qsort
Post by: Charles Pegge on July 30, 2019, 11:08:37 PM
Hi James,

This fixes the problem with callback and void* params:

Code: [Select]
'32bit cdecl callback
'Function TypeCompare cdecl (void *a, void *b) As Integer, callback

'64bit callback
Function TypeCompare (void *a, void *b) As Integer, callback
InfoType Ptr ia = (InfoType Ptr) a
InfoType Ptr ib = (InfoType Ptr) b
Function = ((100 * ia.f2013) - (100 * ib.f2013))
End Function