Skip to content

Commit

Permalink
windows.perception.stub: HACK: Set WS_EX_NOACTIVATE for window in hol…
Browse files Browse the repository at this point in the history
…ographicspace_interop_CreateForWindow().

CW-Bug-Id: #23614
  • Loading branch information
Paul Gofman authored and ivyl committed May 23, 2024
1 parent 3b8c774 commit a94be92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/windows.perception.stub/Makefile.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = windows.perception.stub.dll
IMPORTS = combase
IMPORTS = combase user32

SOURCES = \
classes.idl \
Expand Down
3 changes: 3 additions & 0 deletions dlls/windows.perception.stub/holographicspace.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,9 @@ static HRESULT WINAPI holographicspace_interop_CreateForWindow( IHolographicSpac
{
FIXME( "iface %p, window %p, iid %s, holographic_space %p.\n", iface, window, debugstr_guid( iid ), holographic_space );

FIXME( "HACK: Setting WS_EX_NOACTIVATE for %p.\n", window );
SetWindowLongW( window, GWL_EXSTYLE, WS_EX_NOACTIVATE );

*holographic_space = NULL;
return E_NOTIMPL;
}
Expand Down

0 comments on commit a94be92

Please sign in to comment.