[WIN32SS]
[reactos.git] / reactos / subsystems / win32 / win32k / eng / sort.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS win32 subsystem
4 * PURPOSE:
5 * FILE: subsystems/win32k/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 APIENTRY
18 EngSort(IN OUT PBYTE Buf, IN ULONG ElemSize, IN ULONG ElemCount, IN SORTCOMP CompFunc)
19 {
20 qsort(Buf, ElemCount, ElemSize, CompFunc);
21 }
22
23 /* EOF */