SetupDD.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // setupdd.h - Public definitions for users of SETUPDD.DLL
  2. //
  3. //
  4. #ifndef _SETUPDD_H_
  5. #define _SETUPDD_H_
  6. // NMInstallNTDisplayDriver
  7. //
  8. // The public entry point of SETUPDD.DLL.  Installs the NetMeeting display
  9. // driver for Windows NT. 
  10. // 
  11. // Parameters:
  12. // HWND - Handle of the parent window used by the setup engine when 
  13. // displaying dialogs).
  14. //
  15. // Returns:
  16. // TRUE if the driver was successfully installed.  In this event,
  17. // the caller should prompt the user to restart the system for
  18. // the changes to take effect.
  19. //  FALSE if this version of the OS does not support this driver
  20. // (NT 4.0 SP 3 or later, or NT 4.x, x > 0, is required) or if
  21. // an error occurs during installation.
  22. //
  23. // Limitations:
  24. // NetMeeting must already be installed on the system for this function
  25. // to work.
  26. // This function does not detect if the display driver is already
  27. // installed and enabled.
  28. BOOL DECLSPEC_IMPORT WINAPI NMInstallNTDisplayDriver(HWND hWnd);
  29. #endif // _SETUPDD_H_