Displaying 8 results from an estimated 8 matches for "lpvtbl".
Did you mean:
ppvtbl
2011 Mar 15
4
HUNK #N Problems When Applying A Patch For Wine 1.3.15
...TRACE("Init mouse\n");
+ if (FAILED(DirectInput8Create(GetModuleHandleW(NULL),
+ DIRECTINPUT_VERSION, &IID_IDirectInput8W, (void**)&lpdi, NULL)))
+ {
+ ERR("DirectInput8Create failed.\n");
+ return FALSE;
+ }
+
+ if (FAILED(lpdi->lpVtbl->CreateDevice(lpdi, &GUID_SysMouse, &m_mouse, NULL)))
+ {
+ ERR("CreateDevice failed.\n");
+ return FALSE;
+ }
+ if (FAILED(m_mouse->lpVtbl->SetCooperativeLevel(m_mouse, hWnd, flags)))
+ {
+ ERR("SetCooperativeLevel failed.\n")...
2008 Jun 10
7
Unraveling a FAR*
Hi all,
Just looking over fole_s_connect() in win32ole.c and I noticed this bit:
hr = CLSIDFromProgID(pBuf, &clsid);
...
hr = GetActiveObject(&clsid, 0, &pUnknown);
...
hr = pUnknown->lpVtbl->QueryInterface(
pUnknown,
&IID_IDispatch,
(void **)&pDispatch
);
Using win32-api, that would be something like:
IID_IUnknown = [0,0,0,192,0,0,0,0,0,0,70].pack(''ISSCCCCCCCC'')
clsid = 0.chr * 16
unknown = 0.chr * IID_IUnknown.size
hr = CLSIDFromProgID(mult...
2009 May 06
4
[ win32utils-Feature Requests-25792 ] Create a pure Ruby win32-ole library
Feature Requests item #25792, was opened at 2009-05-05 17:29
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=414&aid=25792&group_id=85
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Daniel Berger (djberg96)
Assigned to: Nobody (None)
Summary: Create a pure Ruby win32-ole library
Initial Comment:
The current Win32OLE
2019 Jun 21
0
Wine release 4.11
...se the type info cache for IBasicVideo.
strmbase: Don't increment the pin reference count in filter_get_pin().
strmbase: Add default implementations of IUnknown methods for IBasicVideo.
quartz: Use strmbase IUnknown methods for IBasicVideo.
strmbase: Get rid of the "lpVtbl" parameter to BaseControlVideo_Init().
strmbase: Add default implementations of IUnknown methods for IVideoWindow.
quartz: Use strmbase IUnknown methods for IVideoWindow.
strmbase: Factor out strmbase_pin_init().
strmbase: Return void from InputPin_Init().
strmbas...
2011 Jan 07
0
Wine release 1.3.11
...(1):
iphlpapi: Fix GetAdaptersAddresses return values.
Vincent Povirk (1):
windowscodecs: Store an impl pointer instead of an iface pointer.
Vitaliy Margolen (4):
dinput: Convert DirectInput to using interface instead of vtbl.
dinput: COM cleanup - use interface instead of lpvtbl in joystick effects.
dinput: Rename IDirectInputDevice2AImpl into IDirectInputDeviceImpl.
dinput: Pass interface instead of this pointer to joystick poll callback.
Yaron Shahrabani (1):
wininet: Updated Hebrew translation.
?ukasz Wojni?owicz (2):
appwiz.cpl: Update Polish...
2011 Jun 10
0
Wine release 1.3.22
...ce7 iface to object and conversion to other iface.
ddraw: Separate other conversion to IDirectDrawSurfaceImpl from conversions to ifaces.
ddraw: Use impl_from_IDirectDrawSurface7() instead of casts.
ddraw: Avoid IDirectDrawSurfaceX to IDirectDrawSurface7 casts.
ddraw: Change lpVtbl to IDirectDrawSurface7_iface.
ddraw: Use unsafe_impl_from_IDirectDrawSurface4.
ddraw: Separate IDirectDrawSurface4 vtable.
ddraw: Separate IDirectDrawSurface2 vtable.
ddraw: Use unsafe_impl_from_IDirectDrawSurface() for application provided interfaces.
ddraw: Separate...
2006 Oct 13
0
Wine release 0.9.23
...ntdll-kernel32: WaitCommEvent.
winedbg: Rewrote the file handling to use SearchPath instead of home grown version.
ntdll: Implemented AmILastThread information class for NtQueryInformationThread.
Francois Gouget (44):
Assorted spelling fixes.
widl: Use CONST_VTBL to declare lpVtbl.
Fix rpcndr.h so it takes CONST_VTABLE into account.
secur32: Only include secext.h when asked to.
wincrypt: Fix the CERT_TRUST_PUB_AUTHENTICODE_FLAGS_VALUE_NAME declaration in the MSVC case.
ole32: Fix invalid macro usage.
msvcmaker: The msvcrt tests need '..'...
2009 Jan 30
0
Wine release 1.1.14
...et rid of ICOM_INTERFACE.
ddraw: Get rid of ICOM_VFIELD_MULTI_NAME and ICOM_VFIELD_OFFSET.
ddraw: Get rid of ICOM_THIS_FROM.
ddraw: Get rid of ICOM_OBJECT.
ddraw: Get rid of ddcomimpl.h.
ddraw: Get rid of CONVERT and CONVERT_REV.
ddraw: Rename the main vtables to lpVtbl.
wined3d: Take EXT_vertex_array_bgra into account in send_attribute() and loadNumberedArrays().
wined3d: Don't use drawStridedFast() when pointsize data is present.
wined3d: Don't use drawStridedFast() for drawing pretransformed vertices.
d3d10core: Add a stub ID3D10...