MCPcopy Create free account
hub / github.com/PenguLoader/PenguLoader / GetWindowLongPtr

Method GetWindowLongPtr

loader/Main/Native.cs:15–20  ·  view source on GitHub ↗
(IntPtr hWnd, int nIndex)

Source from the content-addressed store, hash-verified

13 }
14
15 public static IntPtr GetWindowLongPtr(IntPtr hWnd, int nIndex)
16 {
17 return IntPtr.Size == 8
18 ? GetWindowLongPtr64(hWnd, nIndex)
19 : GetWindowLongPtr32(hWnd, nIndex);
20 }
21
22 public static void SetFocusToPreviousInstance()
23 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected