mirror of https://github.com/lianthony/NT4.0
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
334 B
22 lines
334 B
/*
|
|
* project.h - Common project header file for Secure File Verification library.
|
|
*/
|
|
|
|
|
|
/* System Headers
|
|
*****************/
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN /* for windows.h */
|
|
#endif
|
|
#include <windows.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
/* Project Headers
|
|
******************/
|
|
|
|
#include "mssf.h"
|
|
#include "rsa.h"
|
|
|