home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / clib / progs / haswinlib / info / sprites < prev    next >
Encoding:
Text File  |  1991-02-04  |  1.1 KB  |  24 lines

  1.  
  2.                       The HASWIN window library.
  3.                      ===========================
  4.                       Copyright H.A. Shaw 1990.
  5.                      ===========================
  6.  
  7. Sprites under the HASWIN system.
  8. ------------------------------
  9.         HASWIN does not provide many sprite functions itself, but just
  10. provides a simple interface to the WIMP and RSICOS sprite system.  HASWIN
  11. contains several builtin sprites for its own windows (such as the file load
  12. and save windows) and all of these can be accessed by the user program.  In
  13. addition HASWIN automatically provides a single user sprite area.  New
  14. sprites may be added to the area from files.  HASWIN also provides a general
  15. interface routine to the sprite system so that a user program may perform
  16. more complex operations on sprites if required.  A routine is provided to
  17. draw an existing window into a sprite in the user sprite area.
  18.  
  19. int     haswin_getspritearea(int);
  20. int     haswin_loadusersprites(char *);
  21. int     haswin_removespritearea(int **);
  22. int     haswin_spriteop(char *, _kernel_swi_regs *);
  23.  
  24.