home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / setupdd.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  1KB  |  34 lines

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