Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Interoperability returning a string from a Win32 DLL

0.00/5 (No votes)
27 Aug 2013 1  
Returning a string from a Win32 DLL using Interop.

Introduction

Define  a function in native DLL (let's call it “Win32Native.dll”)  as shown below.

extern "C" __declspec(dllexport)  char * GetStringFromDLL() 
{ 
    const size_t alloc_size = 128; 
    STRSAFE_LPSTR result=(STRSAFE_LPSTR)CoTaskMemAlloc(alloc_size); 
    STRSAFE_LPCSTR teststr = "This is return string From Native DLL"; 
    StringCchCopyA ( result, alloc_size, teststr ); 
    return result; 
}

Points of Interest

  • STRSAFE_LPSTR is a typedef of char *
  • StringCchCopy is a replacement for strcpy (with safety).  The size, in characters, of the destination buffer is provided to the function to ensure that StringCchCopyb does not write past the end of this buffer. has two variants.

Writing the client code (the managed part)

We can simply create a console base application which can use this DLL. Let’s name it MarshallingTest.

See the code snippet below.

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Runtime.InteropServices; 
using System.Text;
namespace MarshallingTest 
{ 
    class Program 
    { 
       [DllImport("Win32Native.dll")] public static extern String GetStringFromDLL();
        static void Main(string[] args) 
        { 
            Console.WriteLine("Line displayed below is returned from a Native DLL"); 
            string strData = GetStringFromDLL(); 
            Console.WriteLine ( "Returned value [" + strData +"]" ); 
        } 
    } 
}

Points of Interest

  • namespace System.Runtime.InteropServices; defines the declarations necessary for Interop operations, like DllImport.
  • DllImport defines the DLL entry point.

Compile and execute you will get following output.

image

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here