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
22 lines
527 B
#include <windows.h>
|
|
#include <winbase.h> // windows API
|
|
|
|
#include <tchar.h> // Unicode / Ansi support with TCHAR
|
|
#include <assert.h> // ASSERT
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
// MD5 hash
|
|
#include <md5.h>
|
|
|
|
// safe string func.
|
|
#include <strsafe.h>
|
|
|
|
#define MUIRCT_STRSAFE_NULL STRSAFE_FILL_BEHIND_NULL | STRSAFE_NULL_ON_FAILURE
|
|
#define RESOURCE_CHECKSUM_SIZE 16
|
|
|
|
// #include <vector> // STL : vector
|
|
// #include <string> // STL : basic_string< CHAR >
|
|
|
|
// using namespace std ;
|