blob: 5e01604feb95f6b8bda7f38a2160fb9f00624a6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "../Winamp/out.h"
#include "resource.h"
extern Out_Module mod;
#include "../Agave/Language/api_language.h"
#include <api/service/waServiceFactory.h>
#define PLUGIN_VERSION L"2.18"
inline void * z_malloc(UINT x)
{
void * p=malloc(x);
if (p) memset(p,0,x);
return p;
}
#if 0
#include "ssrc/ssrc.h"
#endif
|