|
Hmmm...ok...that didnot work!!!
[php]#include <windows.h>
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
char msg []= "128";
char msg2 []= "Equal";
char msg3 []= "NotEqual";
MessageBox(0,NULL,NULL,0);
__asm{
mov ecx, 0x00;
push ecx;
push msg3;
push msg;
push ecx;
call dword ptr [MessageBoxA];
pop eax;
pop eax;
pop eax;
pop eax;
}
MessageBox(0,NULL,NULL,0);
return 0;
}
[/php]
__________________
Spread your wings and fly! Chicken!
|