home *** CD-ROM | disk | FTP | other *** search
/ Hand Held Organizer Toolkit / walnutcreekcdrom-handheldorganizertoolkit-march1998.iso / PalmPilot / development / pfc.sit / Src / TestApp.r < prev    next >
Text File  |  1997-04-08  |  2KB  |  59 lines

  1. /*******************************************************************
  2.  *                             TestApp.r Resource File
  3.  *
  4.  * FileName:
  5.  *        TestApp.r
  6.  *
  7.  * Description:
  8.  *        Resource description for generating Pilot resource database.
  9.  *
  10.  *******************************************************************/
  11.  
  12.  
  13. //-------------------------------------------------------------
  14. // Include definitions of basic Touchdown resources.
  15. //-------------------------------------------------------------
  16. #include <BuildRules.h>
  17. #include <SystemMgr.rh>
  18.  
  19.  
  20.  
  21. //-------------------------------------------------------------
  22. // Code and Globals resources
  23. //-------------------------------------------------------------
  24. // Include the  main code resource
  25. include "TestApp.code" 'CODE' 1 as sysResTAppCode 1;
  26.  
  27. // Include the CODE 0 resource which has the global size information in it
  28. include "TestApp.code" 'CODE' 0 as sysResTAppCode 0;
  29.  
  30. // Include the DATA 0 resource which has the initialized global data info
  31. include "TestApp.code" 'DATA' 0 as sysResTAppGData 0;
  32.  
  33.  
  34.  
  35. //-------------------------------------------------------------
  36. // Include the TestApp UI resources
  37. //-------------------------------------------------------------
  38. #if LANGUAGE==LANGUAGE_ENGLISH
  39. include ":Rsc:TestAppMain.rsrc";
  40.  
  41. #else
  42. #error "The compiler variable LANGUAGE must be defined"
  43.  
  44. #endif
  45.  
  46.  
  47. //-------------------------------------------------------------
  48. // Our PREF resource. The current version of the OS does not
  49. // use the information in this resource but it should be included
  50. // for future compatibility.
  51. //-------------------------------------------------------------
  52. resource sysResTAppPrefs 0 {
  53.     30,                                // priority
  54.     0x1000,                            // stack size
  55.     0x1000                            // minHeapSpace
  56.     }
  57.     
  58.     
  59.