BOLTStack.XLGraphics.XLGP_CheckBitmap C# (CSharp) Method

XLGP_CheckBitmap() private method

private XLGP_CheckBitmap ( IntPtr luaState, int index, IntPtr &lpBitmap ) : bool
luaState System.IntPtr
index int
lpBitmap System.IntPtr
return bool
        public static extern bool XLGP_CheckBitmap(IntPtr luaState, int index, ref IntPtr lpBitmap);

Usage Example

Example #1
0
        public static IntPtr GetBitmap(this IntPtr L, int index)
        {
            IntPtr bitmap = IntPtr.Zero;

            XLGraphics.XLGP_CheckBitmap(L, index, ref bitmap);
            return(bitmap);
        }