Transfer code in C++

Posts 112 of 12 · Page 1 of 1
Transfer code in C++
4Byte is DWORD right?
What about ..
Byte=?
2Byte=?
8Byte=?
Float=?
Double=?
ArrayOfByte=?
Can any one tell me?
Is like an alphabets like is AWROD BRWORD CWORD DWORDS when biggers so
Byte=AWORD
2Byte=BWORD
3Biyet=CWORD
8Byte=EWORD
Float=FWROD
Double=GWORD
ArrayOfByte=ZWORD
Quote Originally Posted by Saltine View Post
Is like an alphabets like is AWROD BRWORD CWORD DWORDS when biggers so
Byte=AWORD
2Byte=BWORD
3Biyet=CWORD
8Byte=EWORD
Float=FWROD
Double=GWORD
ArrayOfByte=ZWORD
thanks, but how to write in C++ for Array of Byte?
oh yea,i see some source code for Float,they using float but not FWORD,is it also work?
Quote Originally Posted by loped View Post


thanks, but how to write in C++ for Array of Byte?
Code:
byte array[5] = {0x1, 0xD, 0x1, 0x0, 0x7};
Quote Originally Posted by flameswor10 View Post
Code:
byte array[5] = {0x1, 0xD, 0x1, 0x0, 0x7};
thanks
/msg too short
Quote Originally Posted by loped View Post
4Byte is DWORD right?
What about ..
Byte=?
2Byte=?
8Byte=?
Float=?
Double=?
ArrayOfByte=?
Can any one tell me?
a bite is a bite !
2 bitesis a 2 bites
8byrtes is gues whot, a 8 bytes
flote is 4 byts lol
duble is a DUBLE FLOETE , so its 8 byites ))))))

DONT ASK A SIZE OF A ARAY ITS NOT CHANGE ALWAYS A SAME !
Quote Originally Posted by Shanks_ View Post
a bite is a bite u stuiped
2 bitesis a 2 bites ,stupod
8byrtes is gues whot, a 8 bytes ,stuoipd
flote is 4 byts lol
duble is a DUBLE FLOETE , so its 8 byites ))))))

DONT ASK A SIZE OF A ARAY ITS NOT CHANGE ALWAYS A SAME !
dont say stupid i ask this because some of my hack is in Array of Byte,if change to 4Byte its not same value,i already try
and also i wanna put this in C++ writing..
Quote Originally Posted by loped View Post


dont say stupid i ask this because some of my hack is in Array of Byte,if change to 4Byte its not same value,i already try
and also i wanna put this in C++ writing..
k i fix a informations ))
Lol this thread is trolling

byte = BYTE
2byte = WORD
4byte = DWORD (DOUBLE WORD)
8byte = QWORD (QUADRUPLE WORD)
Float = float (4 bytes)
Double = double (8 bytes)
Array of byte = BYTE[]
Quote Originally Posted by TrollerCoaster View Post
Lol this thread is trolling

byte = BYTE
2byte = WORD
4byte = DWORD (DOUBLE WORD)
8byte = QWORD (QUADRUPLE WORD)
Float = float (4 bytes)
Double = double (8 bytes)
Array of byte = BYTE[]
how to write in C++? can give example
Quote Originally Posted by loped View Post


how to write in C++? can give example
DWORD RDWORD(DWORD ulBase){ // read process memory code
if (!IsBadReadPtr((VOID*)ulBase, sizeof(DWORD))){
return(*(DWORD*)(ulBase));
}
return 0;
}
void WDWORD(DWORD ulBase,DWORD Vaule){ //write process memory code
if (!IsBadWritePtr((VOID*)ulBase, sizeof(DWORD))){
(*(DWORD*)ulBase)=Vaule;
}
}

example;

WDWORD(Pointer + Offset,value);
RDWORD(Pointer + Offset);
To be pedantic, in C++ (not C++ in MSVS) these data types are only guaranteed a certain size and can be bigger. So if you move all those typedefs to a different implementation you might be wrong.
Posts 112 of 12 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?