<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Calling a function in external dll in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649443#M3880845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that the "utf8" part of your function alias is working ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The documentation states it is ";ansi" or nothing and having tested that with PB11.5, any other value than "ansi" is ignored and the dll function gets utf-16le strings.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Nov 2014 16:57:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-11-13T16:57:31Z</dc:date>
    <item>
      <title>Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaq-p/10649430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to improve te speed of an application by offloading string manipulations to an external dll. I created a dll with two functions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace&lt;/P&gt;&lt;P&gt;fnstringreplace2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fnstringreplace3 function just returns an int: 42. The replace function returns an int but accepts a string. in this string all '?' are replaced with a space. The declarations in C are as follows:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="padding-left: 30px;"&gt;#ifdef STRINGREPLACE2_EXPORTS&lt;/P&gt;
&lt;P&gt;#define STRINGREPLACE2_API __declspec(dllexport)&lt;/P&gt;
&lt;P&gt;#else&lt;/P&gt;
&lt;P&gt;#define STRINGREPLACE2_API __declspec(dllimport)&lt;/P&gt;
&lt;P&gt;#endif&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; extern "C" STRINGREPLACE2_API int&amp;nbsp; replace(TCHAR * string);&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt; extern "C" STRINGREPLACE2_API int&amp;nbsp; fnstringreplace2(void);&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;The code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="padding-left: 30px;"&gt;extern "C" STRINGREPLACE2_API int fnstringreplace2(void)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;&amp;nbsp; return 42;&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;extern "C" STRINGREPLACE2_API int replace(TCHAR * string) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; HRESULT res;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; size_t maximalStringSize=1024;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; size_t targetSize;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; res = StringCchLength(string,maximalStringSize,&amp;amp;targetSize);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for(unsigned int i = 0;i &amp;lt; targetSize ;i++)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; switch (string[i])&lt;/P&gt;
&lt;P&gt;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; case '?':&lt;/P&gt;
&lt;P&gt;&amp;nbsp; string[i]=' ';&lt;/P&gt;
&lt;P&gt;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 1;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;}&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM style="color: #808000; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;The dll seems to work just fine. When I tried to use the dll in powerbuilder I can get the &lt;SPAN style="font-size: 13px;"&gt;fnstringreplace2 function to work just fine but the replace function doesn't. IT says my arguments are invallid: see attachment.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;My declarations in powerbuilder are:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;FUNCTION int replace(ref string sayit) LIBRARY "stringreplace2.dll"&lt;/P&gt;
&lt;P&gt;FUNCtION int fnstringreplace2() LIBRARY "stringreplace2.dll"&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;I tried also tried it with char* in the c++ code but this doesn't seem to make any difference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;Any help would be appreciated&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;Greetings&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px;"&gt;Vincent Mangelschots&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;EM style="color: #808000; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 15:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaq-p/10649430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-12T15:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649431#M3880833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try making your string argument LPSTR rather than TCHAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sybase.com/detail?id=44648" title="http://www.sybase.com/detail?id=44648"&gt;Prototyping API Calls for PowerBuilder Technote: Modeling &amp;amp;amp; Development - Sybase Inc&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 16:03:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649431#M3880833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-12T16:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649432#M3880834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you compile your Dll using the calling convention __Stdcall(/Gz) :&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/584446" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Abdallah.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 09:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649432#M3880834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T09:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649433#M3880835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should add __stdcall.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some discussion/explanation can be found here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/6334283/declspec-and-stdcall-vs-declspec-only" title="http://stackoverflow.com/questions/6334283/declspec-and-stdcall-vs-declspec-only"&gt;c# - declspec and stdcall vs declspec only - Stack Overflow&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arnd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 09:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649433#M3880835</guid>
      <dc:creator>arnd_schmidt</dc:creator>
      <dc:date>2014-11-13T09:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649434#M3880836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I add __stdcall then powerbuilder doesn't recognize the function anymore (bad runtime function at line x) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 10:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649434#M3880836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T10:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649435#M3880837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you declare it in PB.&lt;/P&gt;&lt;P&gt;Try :&lt;/P&gt;&lt;P&gt;FUNCTION string functionName(ref string msg) LIBRARY "Your_Full_Path\YourDLL.dll"&amp;nbsp;&amp;nbsp; ALIAS FOR "functionName;utf8"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 10:38:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649435#M3880837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T10:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649436#M3880838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't use the full path but the application opens the dll succesfully (checked it using process explorer and depency walker). I added the alias for but that doesn't change anything&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 12:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649436#M3880838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T12:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649437#M3880839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you use a .DEF file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 12:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649437#M3880839</guid>
      <dc:creator>arnd_schmidt</dc:creator>
      <dc:date>2014-11-13T12:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649438#M3880840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 12:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649438#M3880840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T12:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649439#M3880841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My function is defined as this in C :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bool my_func (LPCWSTR msg) { }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in PB :&lt;/P&gt;&lt;P&gt;FUNCTION bool my_func(ref string msg) LIBRARY "mydll.dll"&amp;nbsp;&amp;nbsp; ALIAS FOR "my_func;utf8"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Abdallah.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 13:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649439#M3880841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T13:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649440#M3880842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LPCWSTR is a constant.&amp;nbsp; It wouldn't make sense to pass it as a REF as you can't change the value.&amp;nbsp; Did you mean LPWSTR?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 14:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649440#M3880842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T14:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649441#M3880843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx to &lt;A _jive_internal="true" data-avatarid="-1" data-userid="448148" data-username="abdellah.elrhazoui" href="https://answers.sap.com/people/abdellah.elrhazoui" style="font-weight: bold; font-size: 10.9090909957886px; color: #8b8b8b; background: #ffffff;"&gt;Abdallah ELRHAZOUI&lt;/A&gt; for steering my in the right direction. When i changed the call method the functions got renamed in the dll. I didn't have a def file so powerbuilder couldn't find them. I renamed the declaration to the new functionnames (got them using dependency walker) and now it seem to work. Thank you all for helping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 14:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649441#M3880843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T14:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649442#M3880844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right. It should be LPWSTR. In my case, I use it but do not change it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 14:23:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649442#M3880844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T14:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649443#M3880845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that the "utf8" part of your function alias is working ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The documentation states it is ";ansi" or nothing and having tested that with PB11.5, any other value than "ansi" is ignored and the dll function gets utf-16le strings.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 16:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649443#M3880845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-13T16:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function in external dll</title>
      <link>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649444#M3880846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's called "name mageling".&lt;/P&gt;&lt;P&gt;However, you should make sure that the caller allocate and deallocate memory. Memory shouldn't be allocated by your *.dll and released from the process which uses your *.dll.&lt;/P&gt;&lt;P&gt;To follow this rule you will save a lot of time hunting down weird problems. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1078/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here's a good explanation why:&lt;/P&gt;&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/13625388/is-it-bad-practice-to-allocate-memory-in-a-dll-and-give-a-pointer-to-it-to-a-cli" title="http://stackoverflow.com/questions/13625388/is-it-bad-practice-to-allocate-memory-in-a-dll-and-give-a-pointer-to-it-to-a-cli"&gt;c++ - Is it bad practice to allocate memory in a DLL and give a pointer to it to a client app? - Stack Overflow&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Nov 2014 16:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/calling-a-function-in-external-dll/qaa-p/10649444#M3880846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-16T16:06:52Z</dc:date>
    </item>
  </channel>
</rss>

