Example #1
0
 private static extern ScrollFun SetSetScrollCallback32(IntPtr window, ScrollFun cbfun);
Example #2
0
 public static void SetScrollCallback(IntPtr window, ScrollFun cbfun)
 {
     currentScrollFun = cbfun;
     _SetScrollCallback(window, currentScrollFun);
 }
Example #3
0
 internal static ScrollFun SetSetScrollCallback(IntPtr window, ScrollFun cbfun)
 {
     if (!Environment.Is64BitProcess)
     {
         return SetSetScrollCallback32(window, cbfun);
     }
     else
     {
         return SetSetScrollCallback64(window, cbfun);
     }
 }
Example #4
0
 private static extern void _SetScrollCallback(IntPtr window, ScrollFun cbfun);