sti.h: add some missing defines

Damjan Jovanovic damjan.jov at gmail.com
Thu Oct 1 18:02:46 CDT 2009


Changelog:
* sti.h: add some missing defines

Damjan Jovanovic
-------------- next part --------------
diff --git a/include/sti.h b/include/sti.h
index 6b62436..204492d 100644
--- a/include/sti.h
+++ b/include/sti.h
@@ -134,36 +134,42 @@ DECLARE_INTERFACE_(IStillImageW, IUnknown)
 #define IStillImage_AddRef(p)             (p)->lpVtbl->AddRef(p)
 #define IStillImage_Release(p)            (p)->lpVtbl->Release(p)
 /*** IStillImage methods ***/
-#define IStillImage_Initialize(p,a,b)                (p)->lpVtbl->Initialize(p,a,b)
-#define IStillImage_GetDeviceList(p,a,b,c,d)         (p)->lpVtbl->GetDeviceList(p,a,b,c,d)
-#define IStillImage_GetDeviceInfo(p,a,b)             (p)->lpVtbl->GetDeviceInfo(p,a,b)
-#define IStillImage_CreateDevice(p,a,b,c,d)          (p)->lpVtbl->CreateDevice(p,a,b,c,d)
-#define IStillImage_GetDeviceValue(p,a,b,c,d,e)      (p)->lpVtbl->GetDeviceValue(p,a,b,c,d,e)
-#define IStillImage_SetDeviceValue(p,a,b,c,d,e)      (p)->lpVtbl->SetDeviceValue(p,a,b,c,d,e)
-#define IStillImage_GetSTILaunchInformation(p,a,b,c) (p)->lpVtbl->GetSTILaunchInformation(p,a,b,c)
-#define IStillImage_RegisterLaunchApplication(p,a,b) (p)->lpVtbl->RegisterLaunchApplication(p,a,b)
-#define IStillImage_UnregisterLaunchApplication(p,a) (p)->lpVtbl->UnregisterLaunchApplication(p,a)
-#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_Initialize(p,a,b)                   (p)->lpVtbl->Initialize(p,a,b)
+#define IStillImage_GetDeviceList(p,a,b,c,d)            (p)->lpVtbl->GetDeviceList(p,a,b,c,d)
+#define IStillImage_GetDeviceInfo(p,a,b)                (p)->lpVtbl->GetDeviceInfo(p,a,b)
+#define IStillImage_CreateDevice(p,a,b,c,d)             (p)->lpVtbl->CreateDevice(p,a,b,c,d)
+#define IStillImage_GetDeviceValue(p,a,b,c,d,e)         (p)->lpVtbl->GetDeviceValue(p,a,b,c,d,e)
+#define IStillImage_SetDeviceValue(p,a,b,c,d,e)         (p)->lpVtbl->SetDeviceValue(p,a,b,c,d,e)
+#define IStillImage_GetSTILaunchInformation(p,a,b,c)    (p)->lpVtbl->GetSTILaunchInformation(p,a,b,c)
+#define IStillImage_RegisterLaunchApplication(p,a,b)    (p)->lpVtbl->RegisterLaunchApplication(p,a,b)
+#define IStillImage_UnregisterLaunchApplication(p,a)    (p)->lpVtbl->UnregisterLaunchApplication(p,a)
+#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)
 #define IStillImage_AddRef(p)             (p)->AddRef()
 #define IStillImage_Release(p)            (p)->Release()
 /*** IStillImage methods ***/
-#define IStillImage_Initialize(p,a,b)                (p)->Initialize(a,b)
-#define IStillImage_GetDeviceList(p,a,b,c,d)         (p)->GetDeviceList(a,b,c,d)
-#define IStillImage_GetDeviceInfo(p,a,b)             (p)->GetDeviceInfo(a,b)
-#define IStillImage_CreateDevice(p,a,b,c,d)          (p)->CreateDevice(a,b,c,d)
-#define IStillImage_GetDeviceValue(p,a,b,c,d,e)      (p)->GetDeviceValue(a,b,c,d,e)
-#define IStillImage_SetDeviceValue(p,a,b,c,d,e)      (p)->SetDeviceValue(a,b,c,d,e)
-#define IStillImage_GetSTILaunchInformation(p,a,b,c) (p)->GetSTILaunchInformation(a,b,c)
-#define IStillImage_RegisterLaunchApplication(p,a,b) (p)->RegisterLaunchApplication(a,b)
-#define IStillImage_UnregisterLaunchApplication(p,a) (p)->UnregisterLaunchApplication(a)
-#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_Initialize(p,a,b)                   (p)->Initialize(a,b)
+#define IStillImage_GetDeviceList(p,a,b,c,d)            (p)->GetDeviceList(a,b,c,d)
+#define IStillImage_GetDeviceInfo(p,a,b)                (p)->GetDeviceInfo(a,b)
+#define IStillImage_CreateDevice(p,a,b,c,d)             (p)->CreateDevice(a,b,c,d)
+#define IStillImage_GetDeviceValue(p,a,b,c,d,e)         (p)->GetDeviceValue(a,b,c,d,e)
+#define IStillImage_SetDeviceValue(p,a,b,c,d,e)         (p)->SetDeviceValue(a,b,c,d,e)
+#define IStillImage_GetSTILaunchInformation(p,a,b,c)    (p)->GetSTILaunchInformation(a,b,c)
+#define IStillImage_RegisterLaunchApplication(p,a,b)    (p)->RegisterLaunchApplication(a,b)
+#define IStillImage_UnregisterLaunchApplication(p,a)    (p)->UnregisterLaunchApplication(a)
+#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


More information about the wine-patches mailing list