sti.h: Add some missing defines.

oldstable
Damjan Jovanovic 2009-10-02 01:02:46 +02:00 committed by Alexandre Julliard
parent 048c9450d9
commit 37e7116862
1 changed files with 30 additions and 24 deletions

View File

@ -146,6 +146,9 @@ DECLARE_INTERFACE_(IStillImageW, IUnknown)
#define IStillImage_EnableHwNotifications(p,a,b) (p)->lpVtbl->EnableHwNotifications(p,a,b)
#define IStillImage_GetHwNotificationState(p,a,b) (p)->lpVtbl->GetHwNotificationState(p,a,b)
#define IStillImage_RefreshDeviceBus(p,a) (p)->lpVtbl->RefreshDeviceBus(p,a)
#define IStillImage_LaunchApplicationForDevice(p,a,b,c) (p)->lpVtbl->LaunchApplicationForDevice(p,a,b,c)
#define IStillImage_SetupDeviceParameters(p,a) (p)->lpVtbl->SetupDeviceParameters(p,a)
#define IStillImage_WriteToErrorLog(p,a,b) (p)->lpVtbl->WriteToErrorLog(p,a,b)
#else
/*** IUnknown methods ***/
#define IStillImage_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
@ -164,6 +167,9 @@ DECLARE_INTERFACE_(IStillImageW, IUnknown)
#define IStillImage_EnableHwNotifications(p,a,b) (p)->EnableHwNotifications(a,b)
#define IStillImage_GetHwNotificationState(p,a,b) (p)->GetHwNotificationState(a,b)
#define IStillImage_RefreshDeviceBus(p,a) (p)->RefreshDeviceBus(a)
#define IStillImage_LaunchApplicationForDevice(p,a,b,c) (p)->LaunchApplicationForDevice(a,b,c)
#define IStillImage_SetupDeviceParameters(p,a) (p)->SetupDeviceParameters(a)
#define IStillImage_WriteToErrorLog(p,a,b) (p)->WriteToErrorLog(a,b)
#endif
#ifdef __cplusplus