Hi
I am trying to access Byte array from an int array which contain address of byte array. i.e
MSMQ_SEND *ReadBytesFromArr = NULL;
ReadBytesFromArr = (MSMQ_SEND*)Queue_Element_Send[1];
where Queue_Element_Send[1] contains address.which contain byte array.
but i am getting some junk character after typecast in C code only.
definition of MSMQ_SEND:
typedef struct MESSAGE_QUQUE {
BYTE *Queue_Element;
INT32 Queue_Element_Len;
} MSMQ_SEND;
