Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
35
Src/omBrowser/ifc_mlnavigationcallback.h
Normal file
35
Src/omBrowser/ifc_mlnavigationcallback.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
#ifndef NULLSOFT_WINAMP_ML_NAVIGATION_CALLBACK_INTERFACE_HEADER
|
||||
#define NULLSOFT_WINAMP_ML_NAVIGATION_CALLBACK_INTERFACE_HEADER
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
// {9CBB5A7C-CEC9-4f12-9615-49BC7BEFE8CB}
|
||||
static const GUID IFC_MlNavigationCallback =
|
||||
{ 0x9cbb5a7c, 0xcec9, 0x4f12, { 0x96, 0x15, 0x49, 0xbc, 0x7b, 0xef, 0xe8, 0xcb } };
|
||||
|
||||
#include <bfc/dispatch.h>
|
||||
|
||||
class __declspec(novtable) ifc_mlnavigationcallback : public Dispatchable
|
||||
{
|
||||
protected:
|
||||
ifc_mlnavigationcallback() {}
|
||||
~ifc_mlnavigationcallback() {}
|
||||
|
||||
public:
|
||||
void ImageChanged(const wchar_t *name, int index);
|
||||
|
||||
public:
|
||||
DISPATCH_CODES
|
||||
{
|
||||
API_IMAGECHANGED = 10,
|
||||
};
|
||||
};
|
||||
|
||||
inline void ifc_mlnavigationcallback::ImageChanged(const wchar_t *name, int index)
|
||||
{
|
||||
_voidcall(API_IMAGECHANGED, name, index);
|
||||
}
|
||||
|
||||
#endif // NULLSOFT_WINAMP_ML_NAVIGATION_CALLBACK_INTERFACE_HEADER
|
Loading…
Add table
Add a link
Reference in a new issue