public static int pixSeedfill8(this Pix pixs, L_Stack stack, int x, int y) { if (null == pixs || null == stack) { throw new ArgumentNullException("pixs, stack cannot be null."); } return(Native.DllImports.pixSeedfill8((HandleRef)pixs, (HandleRef)stack, x, y)); }
public static Box pixSeedfill8BB(this Pix pixs, L_Stack stack, int x, int y) { if (null == pixs || null == stack) { throw new ArgumentNullException("pixs, stack cannot be null."); } var pointer = Native.DllImports.pixSeedfill8BB((HandleRef)pixs, (HandleRef)stack, x, y); if (IntPtr.Zero == pointer) { return(null); } else { return(new Box(pointer)); } }
// Text description public static int lstackPrint(IntPtr fp, L_Stack lstack) { throw new NotImplementedException(); }
public static int lstackGetCount(this L_Stack lstack) { throw new NotImplementedException(); }
public static IntPtr lstackRemove(this L_Stack lstack) { throw new NotImplementedException(); }
// Accessors public static int lstackAdd(this L_Stack lstack, IntPtr item) { throw new NotImplementedException(); }
public static void lstackDestroy(this L_Stack plstack, int freeflag) { throw new NotImplementedException(); }