makehelp.bat
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:2k
源码类别:

DNA

开发平台:

Visual C++

  1. @echo off
  2. REM -- First make map file from Microsoft Visual C++ generated resource.h
  3. echo // MAKEHELP.BAT generated Help Map file.  Used by SCRIBBLE.HPJ. >"hlpScribble.hm"
  4. echo. >>"hlpScribble.hm"
  5. echo // Commands (ID_* and IDM_*) >>"hlpScribble.hm"
  6. makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlpScribble.hm"
  7. echo. >>"hlpScribble.hm"
  8. echo // Prompts (IDP_*) >>"hlpScribble.hm"
  9. makehm IDP_,HIDP_,0x30000 resource.h >>"hlpScribble.hm"
  10. echo. >>"hlpScribble.hm"
  11. echo // Resources (IDR_*) >>"hlpScribble.hm"
  12. makehm IDR_,HIDR_,0x20000 resource.h >>"hlpScribble.hm"
  13. echo. >>"hlpScribble.hm"
  14. echo // Dialogs (IDD_*) >>"hlpScribble.hm"
  15. makehm IDD_,HIDD_,0x20000 resource.h >>"hlpScribble.hm"
  16. echo. >>"hlpScribble.hm"
  17. echo // Frame Controls (IDW_*) >>"hlpScribble.hm"
  18. makehm IDW_,HIDW_,0x50000 resource.h >>"hlpScribble.hm"
  19. REM -- Make help for Project SCRIBBLE
  20. if "%1" == "?" goto :Error
  21. if "%1" == "/?" goto :Error
  22. if "%1" == "-?" goto :Error
  23. if "%1" == "help" goto :Error
  24. if "%1" == "-help" goto :Error
  25. if "%1" == "/help" goto :Error
  26. if "%1" == "MAC" goto Mac
  27. :Intel
  28. if not "%1" == "" goto :Error
  29. if not "%2" == "" goto :Error
  30. echo Building Win32 Help files
  31. start /wait hcrtf -x "hlpScribble.hpj"
  32. echo.
  33. if exist Debugnul if exist hlpScribble.hlp copy "hlpScribble.hlp" Debug
  34. if exist Debugnul if exist hlpScribble.cnt copy "hlpScribble.cnt" Debug
  35. if exist Releasenul if exist hlpScribble.hlp copy "hlpScribble.hlp" Release
  36. if exist Releasenul if exist hlpScribble.cnt copy "hlpScribble.cnt" Release
  37. goto :done
  38. :Mac
  39. echo Building Macintosh Help files
  40. call hc35 hlpScriMac.hpj
  41. if %2x == x goto :done
  42. echo Copying to remote machine
  43. mfile copy -c MSH2 -t HELP "ScriMac.hlp" %2
  44. goto :done
  45. :Error
  46. echo Usage MAKEHELP [MAC [macintosh-path]]
  47. echo       Where macintosh-path is of the form:
  48. echo       ":<MacintoshName>:...:<MacintoshHelpFile>"
  49. :done
  50. echo.