You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also it's unsigned, so it actually has to be UIntPtr, even though IntPtr is often used. int is definitely wrong - it's kind of a mystery (or pure accidence) that it has even been working with int 😉
Also it's unsigned, so it actually has to be UIntPtr, even though IntPtr is often used. int is definitely wrong - it's kind of a mystery (or pure accidence) that it has even been working with int 😉
Yes, right.
(I had copied old definitions I used for x86 only, I will fix it asap...)
It is defined like this in DotNet48ZDP2 source by MS :
[DllImport(ExternDll.User32, CharSet=System.Runtime.InteropServices.CharSet.Auto)]
[ResourceExposure(ResourceScope.None)]
public static extern IntPtr DefWindowProc(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
Also it's unsigned, so it actually has to be
UIntPtr
, even thoughIntPtr
is often used.int
is definitely wrong - it's kind of a mystery (or pure accidence) that it has even been working withint
😉WinUI3_SplashScreen/SplashScreen.cs
Lines 259 to 260 in cfc18b8
WinUI3_SplashScreen/SplashScreen.cs
Line 271 in cfc18b8
WinUI3_SplashScreen/SplashScreen.cs
Lines 595 to 604 in cfc18b8
The text was updated successfully, but these errors were encountered: