locked
Convert between IBuffer and Char* RRS feed

  • Question

  • I want know how to convert form IBuffer to Char* And from Char* to IBuffer,waiting for the anwser:-)
    Friday, April 13, 2012 9:02 AM

Answers

  • The linked documentation includes the appropriate header files. You can use the IID_PPV_ARGS Macro for the query

    IUnknown* pUnk = reinterpret_cast<IUnknown*>(buffer);
    	
    IBufferByteAccess* pBufferByteAccess = nullptr;
    HRESULT hr = pUnk->QueryInterface(IID_PPV_ARGS(pBufferByteAccess);
    

    --Rob

    • Marked as answer by OceanCat Monday, April 16, 2012 5:13 AM
    Sunday, April 15, 2012 6:20 PM
    Moderator

All replies

  • To access the data in the buffer query the IBuffer for its IBufferByteAccess interface.

    You can also read it out by loading it into a DataReader with DataReader.FromBuffer.

    --Rob

    Friday, April 13, 2012 2:58 PM
    Moderator
  • How to query the  IBufferByteAccess interface?I mean I don't know its GUID... 
    Saturday, April 14, 2012 7:03 AM
  • The linked documentation includes the appropriate header files. You can use the IID_PPV_ARGS Macro for the query

    IUnknown* pUnk = reinterpret_cast<IUnknown*>(buffer);
    	
    IBufferByteAccess* pBufferByteAccess = nullptr;
    HRESULT hr = pUnk->QueryInterface(IID_PPV_ARGS(pBufferByteAccess);
    

    --Rob

    • Marked as answer by OceanCat Monday, April 16, 2012 5:13 AM
    Sunday, April 15, 2012 6:20 PM
    Moderator
  • This is the way to convert fro IBuffer to char*.

    How to convert from char* to IBuffer?

    Wednesday, April 18, 2012 12:06 PM
  • You can copy the char* into the IBuffer with a DataWriter.

    --Rob

    Wednesday, April 18, 2012 11:44 PM
    Moderator
  • Can you please explain how that can be done?

    What stream object should be used to initialize DataWriter (stream object)?

    After it is initialized, then I should write it byte by byte?

    Thanks.

    Thursday, April 19, 2012 4:33 AM
  • Sorry, my mistake. I got the DataWriter and DataReader capabilities mixed up.

    To copy the char* in you'll have to get the Buffer with IBufferByteAccess .

    --Rob

    Thursday, April 19, 2012 7:18 PM
    Moderator
  • Hii,  Could you please give an illustrative example of convert from char* to IBuffer?

    Thanks

    • Edited by Vaibhavks Friday, September 28, 2012 6:36 AM
    Friday, September 28, 2012 5:46 AM