blob: 8ef5006224efdd496ff141a5b81588330f31fa1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#ifndef _IPCS_H
#define _IPCS_H
// same value as winamp 2.x
#define WM_WA_IPC WM_USER
#ifdef LINUX
// Stolen from a webpage, I think Linux's is higher, but to be safe...
#define IPC_MSGMAX 4056
struct wa_msgbuf {
long mtype;
int paramlen;
char param[IPC_MSGMAX - 4];
};
#endif
namespace IpcsCommand {
enum {
#ifdef WASABI_API_MEDIACORE
// wa2.x IPC messages
IPC_PLAYFILE=100,
#endif
#ifdef WASABI_API_COMPONENT
// wa3 IPC messages
IPC_COMMANDLINE=1000,
#endif
};
};
class IpcsPtr {
public:
#ifdef WIN32
IpcsPtr(HWND hwnd);
#else
IpcsPtr(int qid);
#endif
void sendWasabiCommand(int command, void *param=0, int paramlen=0);
void sendWasabiCommand(int command, const char *param);
void moveToForeground();
private:
#ifdef WIN32
HWND hwnd;
#else
int qid;
#endif
};
class Ipcs {
public:
static IpcsPtr *getOtherWasabiInstance();
static int onIpcsMessage(int command, void *param, int paramlen);
};
#endif
|