mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
18 lines
258 B
C
18 lines
258 B
C
//
|
|
// precomp.h
|
|
// nu
|
|
//
|
|
|
|
#include "foundation/error.h"
|
|
#include "foundation/types.h"
|
|
#include "foundation/atomics.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
#ifdef WIN32
|
|
#include <windows.h>
|
|
#else
|
|
#include <pthread.h>
|
|
#endif //WIN32
|