# HG changeset patch # User Sebastien Jodogne # Date 1567699439 -7200 # Node ID 97a3631ca68937d508d6dfa40789ba680072c44b # Parent 4bced7d1ec2065ed7dc0f62a070591c60dc512fd fix type in sdk diff -r 4bced7d1ec20 -r 97a3631ca689 Plugins/Include/orthanc/OrthancCPlugin.h --- a/Plugins/Include/orthanc/OrthancCPlugin.h Wed Sep 04 18:23:22 2019 +0200 +++ b/Plugins/Include/orthanc/OrthancCPlugin.h Thu Sep 05 18:03:59 2019 +0200 @@ -1915,7 +1915,7 @@ typedef struct { OrthancPluginRestOutput* output; - const char* answer; + const void* answer; uint32_t answerSize; const char* mimeType; } _OrthancPluginAnswerBuffer; @@ -1935,7 +1935,7 @@ ORTHANC_PLUGIN_INLINE void OrthancPluginAnswerBuffer( OrthancPluginContext* context, OrthancPluginRestOutput* output, - const char* answer, + const void* answer, uint32_t answerSize, const char* mimeType) {