View Single Post
Old Jul 12th, 2005, 5:38 AM   #10
rsnd
Hobbyist Programmer
 
rsnd's Avatar
 
Join Date: Jun 2005
Location: Helltown
Posts: 162
Rep Power: 4 rsnd is on a distinguished road
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!
rsnd is offline   Reply With Quote