bigloo.foreign.bgl_open_output_file C# (CSharp) Method

bgl_open_output_file() public static method

public static bgl_open_output_file ( byte file, byte buf ) : Object
file byte
buf byte
return Object
        public static Object bgl_open_output_file( byte[] file, byte[] buf )
        {
            if (bigloo_strcmp( file, getbytes( "null:" ) ))
               return new output_stream_port( Stream.Null, file );
            else
               return new output_stream_port( file );
        }
foreign