home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / PennyWise™ Framework / PennyWise Application Framework / WindowID.h < prev   
Encoding:
Text File  |  1994-08-06  |  1.4 KB  |  35 lines  |  [TEXT/KAHL]

  1. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  2. //                                                                                //
  3. //                                                                                //
  4. //                    Copyright PennyWise Software, 1994.                            //
  5. //                                                                                //
  6. //            Part of the PennyWise Software Application Framework                //
  7. //                                                                                //
  8. //                                                                                //
  9. //            WindowID.h                Written by Peter Kaplan                        //
  10. //                                                                                //
  11. //                                                                                //
  12. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  13. //                                                                                //
  14. //        This is the file the programmer will edit to add window                    //
  15. //        types. It never needs to be included because "PWWindowList.h"            //
  16. //        will do the work. Just make the changes in this file and forget            //    
  17. //        them.                                                                     //
  18. //                                                                                //
  19. //        This file insures that there will be no reason to edit the                //
  20. //        "PWWindowList.h" file--because it includes this file right at            //
  21. //        the beginning.                                                             //
  22. //                                                                                //
  23. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  24. #ifndef    _APPLICATIONS_WINDOW_IDS
  25. #define    _APPLICATIONS_WINDOW_IDS
  26.  
  27. // Each type of window must have its own type defined here
  28. // Add yours to the end of the list
  29. #define    kWINDOW_ID_NONE            0
  30.  
  31. // Increment this number by one for each 
  32. // window type you add
  33. #define    kMAX_WINDOW_IDS            1    /* This must change per Application */
  34.  
  35. #endif