winamp/Src/Winamp/JSAPI_DispatchTable.h

17 lines
340 B
C
Raw Normal View History

2024-09-24 13:54:57 +01:00
#pragma once
#include <vector>
#include <ocidl.h>
namespace JSAPI
{
struct Dispatcher
{
Dispatcher():id(0),object(0){ name[0] = 0; }
Dispatcher(const wchar_t *_name, DISPID _id, IDispatch *_object);
~Dispatcher();
wchar_t name[128];
DISPID id;
IDispatch *object;
};
typedef std::vector<JSAPI::Dispatcher*> DispatchTable;
};