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.

24 lines
357 B

  1. /*++
  2. Copyright (C) 1999 Microsoft Corporation
  3. Module Name:
  4. upg.c
  5. Abstract:
  6. test program to test upgrade phase
  7. --*/
  8. #include <upgrade.h>
  9. void _cdecl main(void)
  10. {
  11. DWORD Error;
  12. Error = DhcpUpgConvertDhcpDbToTemp();
  13. if( NO_ERROR != Error ) {
  14. printf("ConvertDhcpDatabaseToText: %ld\n", Error);
  15. }
  16. }