home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / CMCD0304.ISO / Software / Freeware / Programare / nullsoft / nsis20.exe / Source / exehead / state.h < prev    next >
C/C++ Source or Header  |  2004-01-29  |  723b  |  22 lines

  1. extern NSIS_STRING g_usrvars[1];
  2.  
  3. #define state_command_line        g_usrvars[20]
  4. #define state_install_directory   g_usrvars[21]
  5. #define state_output_directory    g_usrvars[22]
  6. #define state_exe_directory       g_usrvars[23]
  7. #define state_language            g_usrvars[24] 
  8. #define state_temp_dir            g_usrvars[25]
  9. #ifdef NSIS_CONFIG_PLUGIN_SUPPORT
  10. #  define state_plugins_dir       g_usrvars[26]
  11. #endif
  12. #define state_click_next          g_usrvars[28]
  13.  
  14. extern char g_caption[NSIS_MAX_STRLEN*2];
  15. #ifdef NSIS_CONFIG_VISIBLE_SUPPORT
  16. extern HWND g_hwnd;
  17. extern HANDLE g_hInstance;
  18. extern HWND insthwnd,insthwndbutton;
  19. #else
  20. #define g_hwnd 0
  21. #define g_hInstance 0
  22. #endif//NSIS_CONFIG_VISIBLE_SUPPORT