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.

23 lines
358 B

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