home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / LFC-SW2.LHA / StormWizard / Include / c / libraries / wizardhooks.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-16  |  1.8 KB  |  48 lines

  1. #ifndef    WIZARD_WIZARDHOOKS_H
  2. #define    WIZARD_WIZARDHOOKS_H
  3.  
  4. // Hook-Methoden, die öffentlich sind *******************************
  5.  
  6. #define    WBUTTONM_INFO                0x100F00
  7. #define    WSLIDERM_RENDER            0x100F01
  8.  
  9. /********************************************************************
  10. **                                                                 **
  11. ** WBUTTONM_INFO:                                                  **
  12. **                                                                 **
  13. ** Returnwert ist undefiniert.                                     **
  14. **                                                                 **
  15. ** Wenn der Hook diese Methode nicht behandelt, dann kann er Sie   **
  16. ** ignorieren.                                                     **
  17. **                                                                 **
  18. ********************************************************************/
  19.  
  20. struct WizardButtonInfo
  21. {
  22.     ULONG                             MethodID;
  23.     struct WizardViewInfo    *wbp_State;
  24. };
  25.  
  26.  
  27.  
  28. /********************************************************************
  29. **                                                                 **
  30. ** WSLIDERM_RENDER:                                                **
  31. **                                                                 **
  32. ** Returnwert ist undefiniert.                                     **
  33. **                                                                 **
  34. ** Wenn der Hook diese Methode nicht behandelt, dann kann er Sie   **
  35. ** ignorieren.                                                     **
  36. **                                                                 **
  37. ********************************************************************/
  38.  
  39. struct WizardSliderRender
  40. {
  41.     ULONG                             MethodID;
  42.     struct RastPort            *wpsl_RastPort;
  43.     struct IBox                     wpsl_Bounds;
  44.     struct IBox                     wpsl_KnobBounds;
  45. };
  46.  
  47. #endif /* WIZARD_WIZARDHOOK_H */
  48.