home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 May / PCWorld_1999-05_cd.bin / software / Vyzkuste / inprise / INTRBASE_55 / INCLUDE / IB_UTIL.PAS < prev    next >
Pascal/Delphi Source File  |  1998-10-18  |  697b  |  20 lines

  1. {***********************************************************}
  2. {                                                           }
  3. {     PROGRAM:    UDF and Blob filter Utilities library         }
  4. {     MODULE:        ib_util.h                                     }
  5. {     DESCRIPTION:    Prototype header file for ib_util.c       }
  6. {                                                           }
  7. {  copyright (c) 1998 by InterBase Software Corporation     }
  8. {                                                           }
  9. {***********************************************************}
  10. unit ib_util;
  11.  
  12. interface
  13.  
  14. function ib_util_malloc(l: integer): pointer; cdecl; external 'ib_util.dll';
  15.  
  16. implementation
  17.  
  18. end.
  19.  
  20.