Tagged Questions
The lpbyte tag has no wiki summary.
1
vote
2answers
75 views
How to iterate through each byte of an LPBYTE in C++
Excuse the simplicity of my question, I'm not used to working with Windows types.
I have an LPBYTE buffer and i wish to XOR each byte of it with another byte.
What is the proper way of getting the ...
1
vote
4answers
258 views
C# calling unmanaged code
I am trying to call unmanaged code using C#.
extern "C" __declspec(dllexport) LPBYTE DataReceived(LPBYTE signals)
{
LPBYTE test;
*(WORD*)(test) = 0x0C;
*(WORD*)(test + 2) = 0x1000;
...
0
votes
3answers
194 views
How to call a function in an unmanaged dll from C# Code?
How can I call the following method from C#, which is in a C++ dll? How Can I recreate the following structure in C#?
Original
Method:
LONG MyMethod (P_HOLO_INFO pInfo, LPVOID pBuffer, LPUSHORT ...
0
votes
4answers
3k views
How to easy convert LPBYTE to char[256] (used to read text from windows registry)
How I can convert LPBYTE to char [256]?
When I read from Windows registry value:
blah REG_SZ "blah some text"
char value[256];
DWORD keytype = REG_SZ;
DWORD dwCount = sizeof(value);
...
0
votes
3answers
3k views
How to pass an array of bytes as a Pointer in C#
I have two questions.They both are concerning a void in C++,which I am trying to translate in C#.
C++ code
void Func_X_2(LPBYTE stream, DWORD key, BYTE keyByte)
{
stream[0] ^= (stream[0] + ...