摘要:
1 // IsPE.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 #include "windows.h" 6 BOOL IsPeFile(char szFile[]); 7 int main(int argc, char* argv[]) 8 { 9 printf("%d",sizeof(float));10 IsPeFile("c:\\123.exe");11 return 0;
阅读全文