home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / Creator Changer 1.0.3 / Code and Resource / Creator Changer.change.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  556 b   |  25 lines  |  [TEXT/KAHL]

  1. #define TYPE_LEN     4
  2. #define GOOD        1
  3. #define    BAD            0
  4.  
  5. typedef unsigned     char Str4[5];    //    custom type to conserve memory
  6.  
  7. void                Open_Changer_DLOG(void);
  8. void                    Update_Change_Dialog(void);
  9. void                        Draw_Dialog(void);
  10. int                        Handle_OK_Change(void);
  11. int                            Check_Type_Data(int);
  12. OSType                        Set_Type(int);
  13.  
  14. extern FInfo        File_Info;
  15. extern Str255        File_Name;
  16. extern int            V_Ref_Num;
  17.  
  18. DialogPtr            The_Dialog;
  19. int                    PREV_ALERT=FALSE;
  20.  
  21. typedef union        //    Used this to convert the types to and from strings.
  22.     {
  23.     Str4            TEXT;
  24.     OSType            LONG;
  25.     } File_Union;