sti.h: Add some missing defines.
This commit is contained in:
parent
048c9450d9
commit
37e7116862
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue