home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / cdity / yak / src / localprotos.h < prev    next >
C/C++ Source or Header  |  1994-09-18  |  2KB  |  59 lines

  1. #ifndef LIBRARIES_COMMODITIES_H
  2. #include <libraries/commodities.h>
  3. #endif
  4.  
  5. #ifndef CODE_H
  6. #include "code.h"
  7. #endif
  8.  
  9.  
  10. /* Prototypes for functions defined in dummy.c */
  11.  
  12. #ifdef USE_OVERLAYS
  13. void DummyOverlay(void);
  14. #else
  15. #define DummyOverlay()
  16. #endif
  17.  
  18. /* Prototypes for functions defined in handler.c */
  19. STACKARGS void MyScreenToBack(struct Screen *scr);
  20. __regargs void ActivateMouseWindow(BYTE why);
  21. void BlankScreen(void);
  22. void UnBlankScreen(void);
  23. SAVEDS void Handler(long *CxMsg, CxObj *CO);
  24. void EndHandler(void);
  25. BOOL InitHandler(void);
  26. void TurnMouseOn(void);
  27. struct Screen *ScreenUnderMouse( void );
  28.  
  29. /* Prototypes for functions defined in help.c */
  30. BOOL ShowYakInterface(void);
  31. void HideInterface(void);
  32.  
  33. /* Prototypes for functions defined in LastActiveWindow.c */
  34. void RememberActiveWindow( void );
  35. struct Window *LastActiveWindow(struct Screen *CurrentScreen);
  36.  
  37. /* functions defined in main.c for global consumption */
  38. void PostError(char *body, ...);
  39. __regargs BOOL InitPattern(char *newpatstr, UWORD n);
  40. char *getString(ULONG MsgID);
  41.  
  42. /* Prototypes for functions defined in pri.c */
  43. __regargs void MyPri(UWORD which);
  44.  
  45. /* Prototypes for functions defined in settings.c */
  46. void SaveSettings(void);
  47. void LoadSettings(void);
  48.  
  49. /* Prototypes for functions defined in clickdrive.c */
  50. __regargs void SetClickDrive (BOOL toggle);
  51.  
  52. /* Prototypes for functions defined in blackborder.c */
  53. __regargs void ToggleBlackBorder(BOOL toggle);
  54.  
  55. /* Prototypes for functions defined in MMB_Shift.c */
  56. __regargs void ToggleMMBShift(BOOL toggle);
  57.  
  58.  
  59.