but i guess *he* is not the one you should be afraid of, it's the big bad ones out there <insert sweepign motion to the eternal catacombs of the endless web > that you should worry about
if it's good enough, any fool will buy it, so thefool as well

heheblueznl wrote:don't challenge him
but i guess *he* is not the one you should be afraid of, it's the big bad ones out there <insert sweepign motion to the eternal catacombs of the endless web > that you should worry about
if it's good enough, any fool will buy it, so thefool as well
thanks Mat!MrMat wrote:One way is in ->this<- post. To use it in unicode mode adding W to the end of all the functions should be enough e.g. use EXECryptor_MessageBoxW everywhere.
Code: Select all
; ProcedureDLL addten(somevar.l)
macro MP0{
_Procedure0:
_addten: ; <-- ** This line missing in 4.02 **
PUSH ebx
PS0=12
XOR eax,eax
PUSH eax
; var.l = 10
MOV dword [esp],10
; ProcedureReturn somevar + var
MOV ebx,dword [esp+PS0+0]
ADD ebx,dword [esp]
MOV eax,ebx
JMP _EndProcedure1
; EndProcedure
XOR eax,eax
_EndProcedure1:
ADD esp,4
POP ebx
RET 4
}