Skip to content

Commit 4f7e4d0

Browse files
ZompSlion
authored andcommitted
Naming and correct signature for the first three members in IApplicationView. Tested on 20346.1906 and 22621.2215
This is an unnecessary change but I don't like seeing methods wrong or unnamed. IApplicationView is still incomplete but the rest are at the bottom and won't cause harm leaving them out. Debug symbols from twinui.pcshell.dll: GetIids(unsigned long * __ptr64,struct _GUID * __ptr64 * __ptr64) GetRuntimeClassName(struct HSTRING__ * __ptr64 * __ptr64) GetTrustLevel(enum TrustLevel * __ptr64) - no need to setup the enum since we are not calling this
1 parent 546b921 commit 4f7e4d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/VirtualDesktop/Interop/Build10240_0000/.interfaces/IApplicationView.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ namespace WindowsDesktop.Interop.Build10240
1414
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
1515
public interface IApplicationView
1616
{
17-
void Proc3();
17+
void GetIids(out ulong iidCount, out IntPtr iids);
1818

19-
void Proc4();
19+
HString GetRuntimeClassName();
2020

21-
void Proc5();
21+
IntPtr GetTrustLevel();
2222

2323
void SetFocus();
2424

0 commit comments

Comments
 (0)