home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / d / desklib / !DeskSrc / FN / Libraries / Clear / c0 / Init < prev    next >
Encoding:
Text File  |  1996-05-10  |  976 b   |  32 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Clear.c.Init
  12.     Author:  Copyright © 1993 Jason Howat
  13.     Version: 1.00 (16 Dec 1993)
  14.     Purpose: Initialise the Clear library.
  15. */
  16.  
  17.  
  18. #include "Desk.Clear.h"
  19.  
  20. #include "ClearDefs.h"
  21.  
  22.  
  23. char            *Desk_clear__creator;
  24. unsigned        Desk_clear__creatorversion;
  25.  
  26.  
  27. void Desk_Clear_Init(char *creator, unsigned version)
  28. {
  29.   Desk_clear__creator = creator;
  30.   Desk_clear__creatorversion = version;
  31. }
  32.