Ejemplo n.º 1
0
 public static extern IntPtr Pm_GetErrorText(PmError errnum);
Ejemplo n.º 2
0
 public static IntPtr Pm_GetErrorText(PmError errnum)
 {
     return Is64Bit
         ? PortMidiMethods64.Pm_GetErrorText(errnum)
         : PortMidiMethods32.Pm_GetErrorText(errnum);
 }
Ejemplo n.º 3
0
 static extern IntPtr IntPtr_Pm_GetErrorText(PmError errnum);
Ejemplo n.º 4
0
 public static string Pm_GetErrorText(PmError errnum)
 {
     IntPtr strptr = IntPtr_Pm_GetErrorText(errnum);
     return Marshal.PtrToStringAnsi(strptr);
 }
Ejemplo n.º 5
0
        public static string Pm_GetErrorText(PmError errnum)
        {
            IntPtr strptr = IntPtr_Pm_GetErrorText(errnum);

            return(Marshal.PtrToStringAnsi(strptr));
        }
Ejemplo n.º 6
0
 static extern IntPtr IntPtr_Pm_GetErrorText(PmError errnum);