se ha creao un mundo de p**a risa, maravilloso sistema politico y capitalista del k se benefician 1os pkos
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
include 'win32ax.inc'
.data
t1 db 'sindlll',0
t2 db 'damedll',0
.code
start:
stdcall prueba,t1,t2
ret
proc prueba,t1,t2
mov esi,[t1]
mov ecx,[t2]
push 0
push esi
push ecx
push 0
call [MessageBoxA]
ret
endp
.end start
format PE GUI 4.0 DLL
entry DllEntryPoint
include 'win32a.inc'
section '.data'
dato1 db 'hellooo',0
dato2 db 'agurrrr',0
section '.text' code readable executable
proc DllEntryPoint hinstDLL,fdwReason,lpvReserved
pushad
push dato1
push dato2
mov eax, 0x00402010 ; la direccion de la funcion prueba
call eax
add esp,8
popad
endp
include 'win32ax.inc'
.data
url db 'http://www.google.es/robots.txt',0
src db 'c:\\robots.txt',0
.code
start:
push NULL
push url
push src
push 0
push NULL
call [URLDownloadToFile]
push 0
call [ExitProcess]
.end start