home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kolekce / d567 / FLEXCEL.ZIP / XLSAdapter / libgsfHdr.inc < prev    next >
Encoding:
Text File  |  2002-09-26  |  2.7 KB  |  32 lines

  1. //************************************************************************************//
  2. //  File created automatically by LibGen.xls                                 //
  3. //  Do not modify by hand                                                             //
  4. //************************************************************************************//
  5.  
  6.   procedure gsf_init ( ); cdecl; external libgsf;
  7.   procedure gsf_shutdown ( ); cdecl; external libgsf;
  8.   function gsf_infile_msole_new (source: PGsfInput;  err: PPGError ): PGsfInfile; cdecl; external libgsf;
  9.   function gsf_outfile_msole_new (sink: PGsfOutput ): PGsfOutfile; cdecl; external libgsf;
  10.   function gsf_output_name (gOutput: PGsfOutput ): Pchar; cdecl; external libgsf;
  11.   function gsf_output_container (gOutput: PGsfOutput ): PGsfOutfile; cdecl; external libgsf;
  12.   function gsf_output_size (gOutput: PGsfOutput ): ssize_t; cdecl; external libgsf;
  13.   function gsf_output_close (gOutput: PGsfOutput ): gboolean; cdecl; external libgsf;
  14.   function gsf_output_is_closed (gOutput: PGsfOutput ): gboolean; cdecl; external libgsf;
  15.   function gsf_output_tell (gOutput: PGsfOutput ): integer; cdecl; external libgsf;
  16.   function gsf_output_seek (gOutput: PGsfOutput; offset: off_t; whence: GsfOff_t ): gboolean; cdecl; external libgsf;
  17.   function gsf_output_write (gOutput: PGsfOutput;num_bytes: size_t; data: pointer ): gboolean; cdecl; external libgsf;
  18.   function gsf_input_name (gInput: PGsfInput ): Pchar; cdecl; external libgsf;
  19.   function gsf_input_container (gInput: PGsfInput ): PGsfInfile; cdecl; external libgsf;
  20.   function gsf_input_size (gInput: PGsfInput ): ssize_t; cdecl; external libgsf;
  21.   function gsf_input_eof (gInput: PGsfInput ): gboolean; cdecl; external libgsf;
  22.   function gsf_input_tell (gInput: PGsfInput ): integer; cdecl; external libgsf;
  23.   function gsf_input_seek (gInput: PGsfInput; offset: off_t; whence: GsfOff_t ): gboolean; cdecl; external libgsf;
  24.   function gsf_input_read (gInput: PGsfInput;num_bytes: size_t; data: pointer ): gboolean; cdecl; external libgsf;
  25.   function gsf_outfile_new_child (outfile: PGsfOutfile; name: Pchar; is_dir: gboolean ): PGsfOutput; cdecl; external libgsf;
  26.   function gsf_infile_num_children (infile: PGsfInfile ): integer; cdecl; external libgsf;
  27.   function gsf_infile_name_by_index (infile: PGsfInfile; i: Longint ): Pchar; cdecl; external libgsf;
  28.   function gsf_infile_child_by_index (infile: PGsfInfile; i: Longint ): PGsfInput; cdecl; external libgsf;
  29.   function gsf_infile_child_by_name (infile: PGsfInfile; Name: PChar ): PGsfInput; cdecl; external libgsf;
  30.   function gsf_output_stdio_new (filename: Pchar; err:PPGError ): PGsfOutput; cdecl; external libgsf;
  31.   function gsf_input_stdio_new (filename: Pchar; err:PPGError ): PGsfInput; cdecl; external libgsf;
  32.