home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / comctl / reitp / reitp.r < prev    next >
Encoding:
Text File  |  1995-04-20  |  2.3 KB  |  137 lines

  1. /**
  2.  **
  3.  **    reitp.r
  4.  **
  5.  **    mrc resource script
  6.  **
  7.  **/
  8.  
  9. #include "mrc\types.r"
  10. include "wlm.rsc";
  11. #include "ftab.r"
  12. //#include "ole2ui.r"
  13.  
  14.  
  15. // Include afxrc-generated resources.
  16.  
  17. #ifdef DEBUG
  18. include "dbugitm.res";
  19. #endif
  20. include "richedit.res";
  21. include "reitp.res";
  22.  
  23. // Our WLM hello application bundle - just the application icon.
  24.  
  25. resource 'BNDL' (128)
  26. {
  27.     'CAPO',    // signature
  28.     0,        // version id
  29.     {
  30.         'ICN#',
  31.         {
  32.             0, 128;
  33.         };
  34.         'FREF',
  35.         {
  36.             0, 128;
  37.         };
  38.     };
  39. };
  40.  
  41. // our application icon
  42.  
  43. resource 'ICN#' (128)
  44. {
  45.     {
  46.     $"00000000"
  47.     $"00000000"
  48.     $"20007f80"
  49.     $"2409ffe0"
  50.     $"06bbccf0"
  51.     $"09bb0c30"
  52.     $"21230c30"
  53.     $"240b0c30"
  54.     $"0cbb0c30"
  55.     $"09bb0c30"
  56.     $"21233f30"
  57.     $"240bfff0"
  58.     $"0cbbccf0"
  59.     $"09bb0c30"
  60.     $"21230c30"
  61.     $"240b0c30"
  62.     $"0cbb0c30"
  63.     $"09bb0c30"
  64.     $"21233f30"
  65.     $"240bfff0"
  66.     $"0cbbc0f0"
  67.     $"09bb0030"
  68.     $"01200000"
  69.     $"00000000"
  70.     $"00000000"
  71.     $"00000000"
  72.     $"04508aa0"
  73.     $"0450daa0"
  74.     $"0550aaa0"
  75.     $"05508800"
  76.     $"06de8aa0"
  77.     $"00000000";
  78.  
  79.     $"00000000"
  80.     $"7ffffffe"
  81.     $"7ffffffe"
  82.     $"7ffffffe"
  83.     $"7ffffffe"
  84.     $"7ffffffe"
  85.     $"7ffffffe"
  86.     $"7ffffffe"
  87.     $"7ffffffe"
  88.     $"7ffffffe"
  89.     $"7ffffffe"
  90.     $"7ffffffe"
  91.     $"7ffffffe"
  92.     $"7ffffffe"
  93.     $"7ffffffe"
  94.     $"7ffffffe"
  95.     $"7ffffffe"
  96.     $"7ffffffe"
  97.     $"7ffffffe"
  98.     $"7ffffffe"
  99.     $"7ffffffe"
  100.     $"7ffffffe"
  101.     $"7ffffffe"
  102.     $"7ffffffe"
  103.     $"7ffffffe"
  104.     $"7ffffffe"
  105.     $"7ffffffe"
  106.     $"7ffffffe"
  107.     $"7ffffffe"
  108.     $"7ffffffe"
  109.     $"7ffffffe"
  110.     $"00000000"
  111.     };
  112. };
  113.  
  114.  
  115. resource 'SIZE' (-1)
  116. {
  117.     dontSaveScreen,
  118.     acceptSuspendResumeEvents,    // we do our own clipboard conversions when switched in and out
  119.     enableOptionSwitch,
  120.     canBackground,                // we can background; we don't currently, but our sleep value
  121.                             // guarantees we don't hog the Mac while we are in the background
  122.     multiFinderAware,            // this says we do our own activate/deactivate; don't fake us out
  123.     backgroundAndForeground,        // this is definitely not a background-only application!
  124.     dontGetFrontClicks,            // change this is if you want "do first click" behavior like the Finder
  125.     ignoreChildDiedEvents,        // essentially, I'm not a debugger (sub-launching)
  126.     is32BitCompatible,            // this app can be run in 32-bit address space
  127.     isHighLevelEventAware,
  128.     localAndRemoteHLEvents,
  129.     notStationeryAware,
  130.     dontUseTextEditServices,
  131.     reserved,
  132.     reserved,
  133.     reserved,
  134.     800 * 1024,
  135.     600 * 1024    
  136. };
  137.