Exemplo n.º 1
0
 private static extern uint GetGlyphIndicesNative(IntPtr hdc, string text, int textLength, [Out] short[] indices, GgiFlags flags);
Exemplo n.º 2
0
 public static extern uint GetGlyphIndices(IntPtr hdc, string text, int textLength, [Out] short[] indices, GgiFlags flags);
Exemplo n.º 3
0
 public static uint GetGlyphIndices(IntPtr hdc, string text, int textLength, [Out] short[] indices, GgiFlags flags)
 {
     return(GetGlyphIndicesNative(hdc, text, textLength, indices, flags));
 }