コード例 #1
0
ファイル: Functions.cs プロジェクト: White-Wolf/Minesharp
 [DllImport("libX11", EntryPoint = "XCreatePixmapCursor")]//, CLSCompliant(false)]
 public extern static IntPtr XCreatePixmapCursor(IntPtr display, IntPtr source, IntPtr mask, ref XColor foreground_color, ref XColor background_color, int x_hot, int y_hot);
コード例 #2
0
ファイル: Functions.cs プロジェクト: White-Wolf/Minesharp
 [DllImport("libX11", EntryPoint = "XLookupColor")]//, CLSCompliant(false)]
 public extern static int XLookupColor(IntPtr display, IntPtr Colormap, string Coloranem, ref XColor exact_def_color, ref XColor screen_def_color);
コード例 #3
0
ファイル: Functions.cs プロジェクト: White-Wolf/Minesharp
 [DllImport("libX11", EntryPoint = "XAllocColor")]//, CLSCompliant(false)]
 public extern static int XAllocColor(IntPtr display, IntPtr Colormap, ref XColor colorcell_def);
コード例 #4
0
ファイル: Functions.cs プロジェクト: linkedinyou/opentk
 [DllImport("libX11", EntryPoint = "XCreatePixmapCursor")]//, CLSCompliant(false)]
 public extern static IntPtr XCreatePixmapCursor(IntPtr display, IntPtr source, IntPtr mask, ref XColor foreground_color, ref XColor background_color, int x_hot, int y_hot);
コード例 #5
0
ファイル: Functions.cs プロジェクト: linkedinyou/opentk
 [DllImport("libX11", EntryPoint = "XAllocColor")]//, CLSCompliant(false)]
 public extern static int XAllocColor(IntPtr display, IntPtr Colormap, ref XColor colorcell_def);
コード例 #6
0
ファイル: Functions.cs プロジェクト: linkedinyou/opentk
 [DllImport("libX11", EntryPoint = "XLookupColor")]//, CLSCompliant(false)]
 public extern static int XLookupColor(IntPtr display, IntPtr Colormap, string Coloranem, ref XColor exact_def_color, ref XColor screen_def_color);
コード例 #7
0
ファイル: API.cs プロジェクト: challal/scallion
 public static extern Status XAllocNamedColor(Display display, Colormap colormap, string color_name, out XColor screen_def_return, out XColor exact_def_return);
コード例 #8
0
ファイル: Functions.cs プロジェクト: conankzhang/fez
 public static int XAllocNamedColor(IntPtr display, IntPtr colormap, string color_name, out XColor screen_def_return, out XColor exact_def_return);