bigloo.foreign.PUSH_EXIT C# (CSharp) Method

PUSH_EXIT() public static method

public static PUSH_EXIT ( exit v, int protect ) : Object
v exit
protect int
return Object
        public static Object PUSH_EXIT( exit  v,
				      int  protect )
        {
            //print( "** PUSH " + v + " " + protect );
            v.userp= protect;
            v.prev= (exit)bgldynamic.abgldynamic.get().exitd_top;
            bgldynamic.abgldynamic.get().exitd_top= v;
            return unspecified._unspecified;
        }
foreign