Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
17
Src/Winamp/JSAPI_DispatchTable.h
Normal file
17
Src/Winamp/JSAPI_DispatchTable.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue