Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: cmcfgex.cpp
  4. //
  5. // Module: CMCFG32.DLL
  6. //
  7. // Synopsis: Source for the CmConfigEx API.
  8. //
  9. // Copyright (c) 1998-1999 Microsoft Corporation
  10. //
  11. // Author: quintinb Created Header 08/17/99
  12. // quintinb deprecated the CMConfigEx private interface 03/23/01
  13. //
  14. //+----------------------------------------------------------------------------
  15. #include "cmmaster.h"
  16. //+---------------------------------------------------------------------------
  17. //
  18. // Function: CMConfigEx
  19. //
  20. // Synopsis: Given the correct info in an INS file, this function extracts
  21. // the CMP, CMS, PBK, PBR, and INF files and invoke cmstp.exe
  22. // to install the profile.
  23. //
  24. // Arguments: pszInfFile full path to the INS file
  25. //
  26. // Returns: BOOL TRUE = success, FALSE = failure
  27. //
  28. //----------------------------------------------------------------------------
  29. extern "C" BOOL WINAPI CMConfigEx(
  30. LPCTSTR pszInsFile
  31. )
  32. {
  33. CMASSERTMSG(FALSE, TEXT("CMConfigEx -- The CMConfigEx Private Interface has been deprecated -- returning failure."));
  34. SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
  35. return FALSE;
  36. }