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
for example in Source/Krypton Toolkit Suite Extended/Extended Controls/ExtendedToolkit/Utilities/Classes/WIN32.cs, the signature of RealGetWindowClass is: public static extern int RealGetWindowClass(IntPtr hwnd, System.Text.StringBuilder pszType, int cchType);
the type of parameter cchType should be uint instead of int, reference:
PWagner1
changed the title
The signature of **RealGetWindowClass** function is wrong
[Bug]: The signature of **RealGetWindowClass** function is wrong
Oct 8, 2019
for example in
Source/Krypton Toolkit Suite Extended/Extended Controls/ExtendedToolkit/Utilities/Classes/WIN32.cs
, the signature of RealGetWindowClass is:public static extern int RealGetWindowClass(IntPtr hwnd, System.Text.StringBuilder pszType, int cchType);
the type of parameter cchType should be uint instead of int, reference:
in my case, this would cause the "PInvokeImbance" warning, then lead to a memory leak bug
The text was updated successfully, but these errors were encountered: