mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
33 lines
515 B
C
33 lines
515 B
C
|
//
|
||
|
// precomp.h
|
||
|
// mp3
|
||
|
//
|
||
|
|
||
|
#include <assert.h>
|
||
|
#include <limits.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#include "new"
|
||
|
#endif
|
||
|
|
||
|
#include "foundation/error.h"
|
||
|
#include "foundation/types.h"
|
||
|
|
||
|
#include "nu/ByteReader.h"
|
||
|
#include "nu/ByteWriter.h"
|
||
|
#include "nu/strsafe.h"
|
||
|
|
||
|
#include "nx/nx.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#include "nu/PtrDeque.h"
|
||
|
#include "nswasabi/ReferenceCounted.h"
|
||
|
#include "nswasabi/ServiceName.h"
|
||
|
#include "service/ifc_servicefactory.h"
|
||
|
#endif
|
||
|
|