home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxtech12.zip / SPLASH.RC < prev    next >
Text File  |  1995-09-11  |  1KB  |  57 lines

  1. /*
  2.  * Define the RCDATA structure
  3.  */
  4.  
  5. #ifndef PMEXE_RCDATA_RC_INCLUDED
  6. #define PMEXE_RCDATA_RC_INCLUDED
  7.  
  8. /* RCDATA ID */
  9.  
  10. #define PMEXE_RCDATA_ID 65432
  11.  
  12. /* Min version of VX-REXX required */
  13.  
  14. #ifndef PMEXE_MIN_VERSION_LEVEL
  15. #define PMEXE_MIN_VERSION_LEVEL 210
  16. #endif
  17.  
  18. /* Timeout period in seconds */
  19.  
  20. #ifndef PMEXE_TIMEOUT_INTERVAL
  21. #define PMEXE_TIMEOUT_INTERVAL 10
  22. #endif
  23.  
  24. /* If this is non-zero, splash screen is hidden after the
  25.    DLL is loaded, otherwise it stays up for the timeout period */
  26.    
  27. #ifndef PMEXE_HIDE_AFTER_LOAD
  28. #define PMEXE_HIDE_AFTER_LOAD 1
  29. #endif
  30.  
  31. /* ID of bitmap to display */
  32.  
  33. #ifndef PMEXE_BITMAP_ID
  34. #define PMEXE_BITMAP_ID PMEXE_RCDATA_ID
  35. #endif
  36.  
  37. /* If this is non-zero and no bitmap can be found, displays 
  38.    a simple message */
  39.    
  40. #ifndef PMEXE_DISPLAY_MESSAGE 
  41. #define PMEXE_DISPLAY_MESSAGE 1
  42. #endif
  43.  
  44. /* This is the RCDATA that PMEXE looks for and loads */
  45.  
  46. RCDATA PMEXE_RCDATA_ID
  47. BEGIN
  48.     12,
  49.     PMEXE_MIN_VERSION_LEVEL,
  50.     PMEXE_TIMEOUT_INTERVAL,
  51.     PMEXE_HIDE_AFTER_LOAD,
  52.     PMEXE_BITMAP_ID,
  53.     PMEXE_DISPLAY_MESSAGE
  54. END 
  55.  
  56. #endif
  57.