FT_MulFix() 개인적인 메소드

private FT_MulFix ( IntPtr a, IntPtr b ) : IntPtr
a System.IntPtr
b System.IntPtr
리턴 System.IntPtr
예제 #1
0
 public static Fixed16Dot16 MulFix(int a, Fixed16Dot16 b)
 {
     return(Fixed16Dot16.FromRawValue((int)FT.FT_MulFix((IntPtr)a, (IntPtr)b.Value)));
 }