BOLTStack.XLGraphics.XLGP_PushBitmap C# (CSharp) Method

XLGP_PushBitmap() private method

private XLGP_PushBitmap ( IntPtr luaState, IntPtr hBitmap ) : bool
luaState System.IntPtr
hBitmap System.IntPtr
return bool
        public static extern bool XLGP_PushBitmap(IntPtr luaState, IntPtr hBitmap);

Usage Example

Example #1
0
 public static void PushBitmap(this IntPtr L, IntPtr handle)
 {
     XLGraphics.XLGP_PushBitmap(L, handle);
 }