又一小技巧
#include "stdafx.h"#include "windows.h"
void print();
int _tmain(int argc, _TCHAR* argv[])
{
_asm{
push print
retn
}
return 0;
}
void print()
{
::MessageBoxA(NULL,"小黄瓜",NULL,MB_OK);
::ExitProcess(NULL);
}
2014-08-13 20:50
2014-08-13 21:05
2014-08-14 08:19
2014-08-14 11:04