home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 115 / af115sub.adf / yahzee.lzx / yahzee / tooltypes.h < prev    next >
C/C++ Source or Header  |  1998-06-03  |  708b  |  45 lines

  1. #ifndef TOOLTYPES_H
  2. #define TOOLTYPES_H
  3. /*
  4.  * tooltypes.h
  5.  * ===========
  6.  * Handles tooltypes.
  7.  *
  8.  * Copyright (C) 1994-1998 Håkan L. Younes (lorens@hem.passagen.se)
  9.  */
  10.  
  11. #include <exec/types.h>
  12.  
  13.  
  14. /*
  15.  * save_tooltypes
  16.  * --------------
  17.  * Saves the settings as tooltypes.
  18.  *
  19.  * Arguments:
  20.  *  none
  21.  * Returnvalue:
  22.  *  none
  23.  */
  24. void
  25. save_tooltypes (void);
  26.  
  27. /*
  28.  * handle_startup_msg
  29.  * ------------------
  30.  * Handles arguments passed to the program at startup.
  31.  *
  32.  * Arguments:
  33.  *  args    - Array of argument strings.
  34.  *  from_wb - TRUE if the program was run from the Workbench,
  35.  *            otherwise FALSE.
  36.  * Returnvalue:
  37.  *  none
  38.  */
  39. void
  40. handle_startup_msg (
  41.    char **args,
  42.    BOOL   from_wb);
  43.  
  44. #endif
  45.