ib_util.pas 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. (*******************************************************************)
  2. (* *)
  3. (* The contents of this file are subject to the Interbase Public *)
  4. (* License Version 1.0 (the "License"); you may not use this file *)
  5. (* except in compliance with the License. You may obtain a copy *)
  6. (* of the License at http://www.Inprise.com/IPL.html *)
  7. (* *)
  8. (* Software distributed under the License is distributed on an *)
  9. (* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express *)
  10. (* or implied. See the License for the specific language governing *)
  11. (* rights and limitations under the License. *)
  12. (* *)
  13. (* The Original Code was created by Inprise Corporation *)
  14. (* and its predecessors. Portions created by Inprise Corporation are *)
  15. (* Copyright (C) Inprise Corporation. *)
  16. (* *)
  17. (* All Rights Reserved. *)
  18. (* Contributor(s): ______________________________________. *)
  19. (*******************************************************************)
  20. {***********************************************************}
  21. { }
  22. { PROGRAM: UDF and Blob filter Utilities library }
  23. { MODULE: ib_util.h }
  24. { DESCRIPTION: Prototype header file for ib_util.c }
  25. { }
  26. {***********************************************************}
  27. unit ib_util;
  28. interface
  29. function ib_util_malloc(l: integer): pointer; cdecl; external 'ib_util.dll';
  30. implementation
  31. end.