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.

22 lines
527 B

  1. #include <windows.h>
  2. #include <winbase.h> // windows API
  3. #include <tchar.h> // Unicode / Ansi support with TCHAR
  4. #include <assert.h> // ASSERT
  5. #include <stdlib.h>
  6. #include <stdio.h>
  7. // MD5 hash
  8. #include <md5.h>
  9. // safe string func.
  10. #include <strsafe.h>
  11. #define MUIRCT_STRSAFE_NULL STRSAFE_FILL_BEHIND_NULL | STRSAFE_NULL_ON_FAILURE
  12. #define RESOURCE_CHECKSUM_SIZE 16
  13. // #include <vector> // STL : vector
  14. // #include <string> // STL : basic_string< CHAR >
  15. // using namespace std ;