Skip to content

Commit a663bb1

Browse files
Paul Gofmanbylaws
authored andcommitted
windows.perception.stub: HACK: Set WS_EX_NOACTIVATE for window in holographicspace_interop_CreateForWindow().
CW-Bug-Id: #23614
1 parent 7665ecf commit a663bb1

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

dlls/windows.perception.stub/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MODULE = windows.perception.stub.dll
2-
IMPORTS = combase
2+
IMPORTS = combase user32
33

44
SOURCES = \
55
classes.idl \

dlls/windows.perception.stub/holographicspace.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@ static HRESULT WINAPI holographicspace_interop_CreateForWindow( IHolographicSpac
208208
{
209209
FIXME( "iface %p, window %p, iid %s, holographic_space %p.\n", iface, window, debugstr_guid( iid ), holographic_space );
210210

211+
FIXME( "HACK: Setting WS_EX_NOACTIVATE for %p.\n", window );
212+
SetWindowLongW( window, GWL_EXSTYLE, WS_EX_NOACTIVATE );
213+
211214
*holographic_space = NULL;
212215
return E_NOTIMPL;
213216
}

0 commit comments

Comments
 (0)