home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Painting / XiPaint3.2-Aminet11.lzx / XiPaint / Developer / OutputLib / libraries / picogfx_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-20  |  671 b   |  26 lines

  1. #ifndef CLIB_PICOGFX_PROTOS_H
  2. #define CLIB_PICOGFX_PROTOS_H
  3.  
  4. /**
  5.  **     $Filename: clib/picogfx_protos.h $
  6.  **     $Release: 0 $
  7.  **     $Revision: 0.0 $
  8.  **     $Date: 14 Jan 1992 $
  9.  **
  10.  **     copyright (c) 1992 Hertz Elektronik GmbH
  11.  **     all rights reserved
  12.  **/
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. APTR __stdargs AllocFBMem(LONG fbNum, LONG width, LONG height, LONG depth);
  19. APTR __stdargs FreeFBMem(APTR fbAdr);
  20. VOID __stdargs DisplayOn(APTR fbAdr, LONG displayModes);
  21. VOID __stdargs DisplayOff(APTR fbAdr);
  22. VOID __stdargs WritePixRGB(APTR fbAdr, LONG x, LONG y, ULONG rgbColor);
  23. ULONG __stdargs ReadPixRGB(APTR fbAdr, LONG x, LONG y);
  24.  
  25. #endif
  26.