Test.c
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:1k
- #include <windows.h>
- BOOL EnvelopeCheck()
- {
- #include "includeGccEnvelopeCheckFunc.inc"
- // You could write "return" statement on compiler warnings
- // ASProtect will change this condition after protection
- // return FALSE;
- }
- //----------------------------------------------------------------------
- int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
- PSTR szCmdLine, int iCmdShow)
- {
- MessageBox(0,"Begin","",0);
- if ( EnvelopeCheck() ) {
- MessageBox(0,"Envelope found!","",0);
- }
- else
- MessageBox(0,"Envelope not found!","",0);
- #include "includeGccEnvelopeCheck.inc"
- MessageBox(0,"End","",0);
- return 0;
- }