mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
11 lines
197 B
C
11 lines
197 B
C
|
#pragma once
|
||
|
|
||
|
namespace nu
|
||
|
{
|
||
|
void __cdecl qsort (
|
||
|
void *base,
|
||
|
size_t num,
|
||
|
size_t width,
|
||
|
const void *context,
|
||
|
int (__fastcall *comp)(const void *, const void *, const void *));
|
||
|
};
|