send c++ structure to msmq message
- by Gobalakrishnan
C++ Code:
typedef struct
{
char cfiller[7];
short MsgCode;
char cfiller1[11];
short MsgLength;
char cfiller2[2];
}Message ;
I want to send the above structure as a msmq message
I am able to send string to msmq but it is giving error to send the above structure.
thank you