I have a structure say for an example
typedef struct { DWORD time; BYTE* message; DWORD size; } ACCP_MESSAGE_COMMAND_PARAM_T;
Now this is common to both master and client end and through master we r requesting to client with the following data 20,"MessageRequest",30.
Now at client side i want to display the message which is requested by master using %s. But i am able to display only through %c not by %s.. Moreover if iam converting BYte* to LPCWSTR how should i achieve? Bcz whenever i am doing so it throws an exception..
Please Reply Thanks Abhineet Agarwal