home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Painting / XiPaint3.2-Aminet11.lzx / XiPaint / Developer / OutputLib / clib / picogfx_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-15  |  616 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  AllocFBMem(LONG fbNum, LONG width, LONG height, LONG depth);
  19. APTR  FreeFBMem(APTR fbAdr);
  20. VOID  DisplayOn(APTR fbAdr, LONG displayModes);
  21. VOID  DisplayOff(APTR fbAdr);
  22. VOID  WritePixRGB(APTR fbAdr, LONG x, LONG y, ULONG rgbColor);
  23. ULONG ReadPixRGB(APTR fbAdr, LONG x, LONG y);
  24.  
  25. #endif
  26.