helpstub.c
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /*
  2. COW : Character Oriented Windows
  3. helpstub.c : stub for help
  4. (included for applications that don't supply help)
  5. (for those that do, this module will not be included)
  6. */
  7. #define COW
  8. #include <cow.h>
  9. #include <uevent.h>
  10. #include <udialog.h>
  11. #include <kkeyboar.h>
  12. STATIC BOOL fInsideHelp = FALSE;
  13. VOID FARPUBLIC
  14. Help(hem, hid, pv, kk) 
  15. WORD hem; /* help message */
  16. WORD hid; /* help id */
  17. VOID * pv; /* optional parameter */
  18. WORD kk; /* key shift states */
  19. {
  20. Unreferenced(hem);
  21. Unreferenced(hid);
  22. Unreferenced(pv);
  23. if (fInsideHelp)
  24. return; /* no recursive please */
  25. fInsideHelp = TRUE;
  26. MessageBox(
  27.    (kk & KK_SHIFT) ? "No Tutorial Available" : "No Help Available",
  28.    "(so leave me alone)", NULL, MB_OK);
  29. fInsideHelp = FALSE;
  30. }