home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / IB5 / IntrBase / INCLUDE / IB_UTIL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-18  |  697 b   |  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.