home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / setupdd.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.1 KB  |  36 lines

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