1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS win32 subsystem 4 * PURPOSE: 5 * FILE: win32ss/gdi/eng/sort.c 6 * PROGRAMER: ReactOS Team 7 */ 8 9 #include <win32k.h> 10 11 #define NDEBUG 12 #include <debug.h> 13 14 /* 15 * @implemented 16 */ 17 void 18 APIENTRY 19 EngSort(IN OUT PBYTE Buf, IN ULONG ElemSize, IN ULONG ElemCount, IN SORTCOMP CompFunc) 20 { 21 qsort(Buf, ElemCount, ElemSize, CompFunc); 22 } 23 24 /* EOF */ 25