home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / AESample.sit / AESample / headers / sample.subs.h < prev   
Text File  |  1996-06-22  |  1KB  |  42 lines

  1. /*
  2.  *--------------------------------------------------------------
  3.  * sample.subs.h
  4.  *--------------------------------------------------------------
  5.  */
  6. #ifndef __TYPES__
  7.     #include <Types.h>
  8. #endif
  9. #ifndef __EVENTS__
  10.     #include <Events.h>
  11. #endif
  12. #ifndef __WINDOWS__
  13.     #include <Windows.h>
  14. #endif
  15.  
  16. /* clipboard conversion */
  17. enum scrapCommands {
  18.     kClipboardToPrivate,
  19.     kPrivateToClipboard
  20. };
  21.  
  22. /* sample.subs.c prototypes */
  23. extern Boolean GestaltChecks(void);
  24. extern Boolean SetUpPreferences(void);
  25. extern Boolean SetUpMyCursors(void);
  26. extern Boolean SetUpMyWindows(void);
  27. extern void DoUpdate(EventRecord *);
  28. extern void DoActivate(EventRecord *);
  29. extern void DoMenus(long);
  30. extern void DoContent(WindowRef, Point);
  31. extern void DoGrow(WindowRef, Point);
  32. extern void DoDrag(WindowRef, Point);
  33. extern void DoGoAway(WindowRef, Point);
  34. extern void DoZoom(WindowRef, Point, const short);
  35. extern void DoOSEvent(EventRecord *);
  36. extern void DoResume(EventRecord *);
  37. extern void DoSuspend(EventRecord *);
  38. extern void DoConvertScrap(Boolean);
  39. extern void AdjustMyCursor(void);
  40. extern void DoMountDisk(EventRecord *);
  41. extern void SaveMyPreferences(void);
  42.