<?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>topic Re: in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311254#M39840</link>
    <description>* Art Cooney &lt;ARTC&gt;:&lt;BR /&gt;
&amp;gt;  corehdr.pdb is a debug file for AutoCAD's internal code which is why you&lt;BR /&gt;
&amp;gt;  don't have it on your system.  You should be able to cancel out of the&lt;BR /&gt;
&amp;gt;  dialog that asks for it and keep debugging.&lt;BR /&gt;
&lt;BR /&gt;
Yes, that's possible, I assumed that. But the other problem still&lt;BR /&gt;
exists:&lt;BR /&gt;
&lt;BR /&gt;
[ While debugging ]&lt;BR /&gt;
&amp;gt; &amp;gt; For the CString and CStringArray objects I only get error code&lt;BR /&gt;
&amp;gt; &amp;gt; "CXX0017: Error: Symbol foobar not found."&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Same thing for CFont, as I just found out.&lt;BR /&gt;
&lt;BR /&gt;
regards,&lt;BR /&gt;
-- &lt;BR /&gt;
|   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
|   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
| /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
|  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;&lt;/ARTC&gt;</description>
    <pubDate>Mon, 09 Sep 2002 03:39:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2002-09-09T03:39:59Z</dc:date>
    <item>
      <title>Selfwritten DLL with MFC- and ATL-Support</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311248#M39834</link>
      <description>Hi!&lt;BR /&gt;
&lt;BR /&gt;
I used the ATL Wizard from Visual Studio 6.0 to create a DLL with MFC-&lt;BR /&gt;
and ATL-Support.&lt;BR /&gt;
&lt;BR /&gt;
Well, I inserted the acrxEntryPoint Function, exported the Symbol and&lt;BR /&gt;
adapted the project settings (base address, etc.) to meet my needs.&lt;BR /&gt;
&lt;BR /&gt;
Currently, I'm already able to load the ARX in AutoCAD (with the&lt;BR /&gt;
arx/load command), but when I unload the DLL, my application crashes&lt;BR /&gt;
AutoCAD and the error-message is:&lt;BR /&gt;
&lt;BR /&gt;
------------------------------------------&lt;BR /&gt;
Debug Assertion Failed!&lt;BR /&gt;
Program: C:\WINNT\system32\regsvr32.exe&lt;BR /&gt;
File: [...]\atlbase.h&lt;BR /&gt;
Line: 5700&lt;BR /&gt;
&lt;BR /&gt;
Expression: pM -&amp;gt;m_hInst != 0&lt;BR /&gt;
&lt;BR /&gt;
[...]&lt;BR /&gt;
-------------------------------------------&lt;BR /&gt;
&lt;BR /&gt;
I guess, I have to register some stuff before using it, right?&lt;BR /&gt;
I am not experienced with ATL or anything like that, I just had to&lt;BR /&gt;
create an arx-project without the help of the ObjectARX wizard. This&lt;BR /&gt;
project must be able to create a Toolbar and for this I need access to&lt;BR /&gt;
IAcadMenuGroup a.s.o. and this stuff needs ATL.&lt;BR /&gt;
&lt;BR /&gt;
Well, my application loads into AutoCAD, I can call functions in it, I&lt;BR /&gt;
can work with it - although I'm getting the following message when&lt;BR /&gt;
loading it:&lt;BR /&gt;
&lt;BR /&gt;
"AXSupport.arx uses Memory from MSVCRTD.DLL, but AutoCAD uses Memory&lt;BR /&gt;
from MSVCRT.DLL. This may lead to problems."&lt;BR /&gt;
&lt;BR /&gt;
(Note: This error message may not match the exact english one - I&lt;BR /&gt;
translated it from German to English).&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance,&lt;BR /&gt;
-- &lt;BR /&gt;
|   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
|   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
| /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
|  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;</description>
      <pubDate>Thu, 08 Aug 2002 06:42:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311248#M39834</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-08T06:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selfwritten DLL with MFC- and ATL-Support</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311249#M39835</link>
      <description>Assuming this is your DEBUG build-&lt;BR /&gt;
&lt;BR /&gt;
You need to use the same _DEBUG workaround that you would use in any&lt;BR /&gt;
ObjectARX dll, because AutoCAD is linked to the release MFC libraries and&lt;BR /&gt;
you are linked to the DEBUG libraries.  This will crash if anything of&lt;BR /&gt;
substance is passed to/from the dll like CString.&lt;BR /&gt;
&lt;BR /&gt;
If your release build exhibits the same problem then something else is&lt;BR /&gt;
wrong...&lt;BR /&gt;
&lt;BR /&gt;
    |&lt;BR /&gt;
----+----------------------------------------------&lt;BR /&gt;
    |  Byron Blattel&lt;BR /&gt;
    |  CADwerx---Applications for AutoCAD&lt;BR /&gt;
    |  Autodesk Registered Developer&lt;BR /&gt;
    |  email: byron@cadwerx.net&lt;BR /&gt;
    |  web site: http://www.cadwerx.net&lt;BR /&gt;
    |&lt;BR /&gt;
&lt;BR /&gt;
"Alexander Griesser" &lt;TUXX&gt; wrote in message&lt;BR /&gt;
news:slrnal50r2.pjb.tuxx@ess-linux.ess.local...&lt;BR /&gt;
&amp;gt; Hi!&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I used the ATL Wizard from Visual Studio 6.0 to create a DLL with MFC-&lt;BR /&gt;
&amp;gt; and ATL-Support.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Well, I inserted the acrxEntryPoint Function, exported the Symbol and&lt;BR /&gt;
&amp;gt; adapted the project settings (base address, etc.) to meet my needs.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Currently, I'm already able to load the ARX in AutoCAD (with the&lt;BR /&gt;
&amp;gt; arx/load command), but when I unload the DLL, my application crashes&lt;BR /&gt;
&amp;gt; AutoCAD and the error-message is:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; ------------------------------------------&lt;BR /&gt;
&amp;gt; Debug Assertion Failed!&lt;BR /&gt;
&amp;gt; Program: C:\WINNT\system32\regsvr32.exe&lt;BR /&gt;
&amp;gt; File: [...]\atlbase.h&lt;BR /&gt;
&amp;gt; Line: 5700&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Expression: pM -&amp;gt;m_hInst != 0&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; [...]&lt;BR /&gt;
&amp;gt; -------------------------------------------&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I guess, I have to register some stuff before using it, right?&lt;BR /&gt;
&amp;gt; I am not experienced with ATL or anything like that, I just had to&lt;BR /&gt;
&amp;gt; create an arx-project without the help of the ObjectARX wizard. This&lt;BR /&gt;
&amp;gt; project must be able to create a Toolbar and for this I need access to&lt;BR /&gt;
&amp;gt; IAcadMenuGroup a.s.o. and this stuff needs ATL.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Well, my application loads into AutoCAD, I can call functions in it, I&lt;BR /&gt;
&amp;gt; can work with it - although I'm getting the following message when&lt;BR /&gt;
&amp;gt; loading it:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; "AXSupport.arx uses Memory from MSVCRTD.DLL, but AutoCAD uses Memory&lt;BR /&gt;
&amp;gt; from MSVCRT.DLL. This may lead to problems."&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (Note: This error message may not match the exact english one - I&lt;BR /&gt;
&amp;gt; translated it from German to English).&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks in advance,&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; |   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
&amp;gt; |   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
&amp;gt; | /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
&amp;gt; |  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;&lt;/TUXX&gt;</description>
      <pubDate>Thu, 08 Aug 2002 07:30:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311249#M39835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-08T07:30:49Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311250#M39836</link>
      <description>* Byron Blattel &lt;NOSPAM&gt;:&lt;BR /&gt;
&amp;gt;  Assuming this is your DEBUG build-&lt;BR /&gt;
&lt;BR /&gt;
Yes, it was. Thanks, I now switched to RELEASE and everything works&lt;BR /&gt;
fine.&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;  You need to use the same _DEBUG workaround that you would use in any&lt;BR /&gt;
&amp;gt;  ObjectARX dll, because AutoCAD is linked to the release MFC libraries and&lt;BR /&gt;
&amp;gt;  you are linked to the DEBUG libraries. &lt;BR /&gt;
&lt;BR /&gt;
Which workaround would that be?&lt;BR /&gt;
&lt;BR /&gt;
thanks,&lt;BR /&gt;
-- &lt;BR /&gt;
|   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
|   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
| /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
|  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;&lt;/NOSPAM&gt;</description>
      <pubDate>Thu, 08 Aug 2002 22:23:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311250#M39836</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-08T22:23:53Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311251#M39837</link>
      <description>&amp;gt; Which workaround would that be?&lt;BR /&gt;
&lt;BR /&gt;
To temporarily undefine _DEBUG for the CRT, the 'Wizard' wraps all MFC/ATL&lt;BR /&gt;
includes with the following -&lt;BR /&gt;
&lt;BR /&gt;
// 'DEBUG workaround' below prevents the MFC or ATL #include-s&lt;BR /&gt;
// from pulling in "afx.h" that would force the debug CRT through&lt;BR /&gt;
// #pragma-s.&lt;BR /&gt;
&lt;BR /&gt;
#ifdef _DEBUG&lt;BR /&gt;
#define _DEBUG_WAS_DEFINED&lt;BR /&gt;
#undef _DEBUG&lt;BR /&gt;
#define NDEBUG&lt;BR /&gt;
#endif&lt;BR /&gt;
&lt;BR /&gt;
// MFC includes&lt;BR /&gt;
#include &lt;AFXWIN.H&gt;         // MFC core and standard components&lt;BR /&gt;
#include &lt;AFXEXT.H&gt;         // MFC extensions&lt;BR /&gt;
...&lt;BR /&gt;
#define _ATL_APARTMENT_THREADED&lt;BR /&gt;
#include &lt;ATLBASE.H&gt;&lt;BR /&gt;
// You may derive a class from CComModule and use it if you want to override&lt;BR /&gt;
// something, but do not change the name of _Module&lt;BR /&gt;
extern CComModule _Module;&lt;BR /&gt;
#include &lt;ATLCOM.H&gt;&lt;BR /&gt;
#include &lt;AFXTEMPL.H&gt;&lt;BR /&gt;
...&lt;BR /&gt;
// I also put my STL includes inside as well&lt;BR /&gt;
#include &lt;VECTOR&gt;&lt;BR /&gt;
#include &lt;MAP&gt;&lt;BR /&gt;
&lt;BR /&gt;
#ifdef _DEBUG_WAS_DEFINED&lt;BR /&gt;
#undef NDEBUG&lt;BR /&gt;
#define _DEBUG&lt;BR /&gt;
#undef _DEBUG_WAS_DEFINED&lt;BR /&gt;
#endif&lt;/MAP&gt;&lt;/VECTOR&gt;&lt;/AFXTEMPL.H&gt;&lt;/ATLCOM.H&gt;&lt;/ATLBASE.H&gt;&lt;/AFXEXT.H&gt;&lt;/AFXWIN.H&gt;</description>
      <pubDate>Fri, 09 Aug 2002 06:47:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311251#M39837</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-09T06:47:48Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311252#M39838</link>
      <description>* Byron Blattel &lt;NOSPAM&gt;:&lt;BR /&gt;
&amp;gt;  &amp;gt; Which workaround would that be?&lt;BR /&gt;
&amp;gt;  &lt;BR /&gt;
&amp;gt;  To temporarily undefine _DEBUG for the CRT, the 'Wizard' wraps all MFC/ATL&lt;BR /&gt;
&amp;gt;  includes with the following -&lt;BR /&gt;
&lt;BR /&gt;
Ah, ok, now I did this hack in my stdafx.h and I can debug my&lt;BR /&gt;
ARX-Application now. The only remaining problem is:&lt;BR /&gt;
&lt;BR /&gt;
When I start the debugger and use f.ex. a CString Object inside of my&lt;BR /&gt;
ARX-Code, I'm prompted to give the path to a file called "corehdr.pdb",&lt;BR /&gt;
which is definetly not on my system.&lt;BR /&gt;
&lt;BR /&gt;
I asked google about that, but it also returned no hits, so maybe one of&lt;BR /&gt;
you can help me out there or tell me, what else I need to do, to have a&lt;BR /&gt;
full debuggable arx-workspace.&lt;BR /&gt;
&lt;BR /&gt;
First, I thought, the problem would be there with all MFC classes, so I&lt;BR /&gt;
instantiated a CArray object and that works fine. I can see the contents&lt;BR /&gt;
in the debugger. &lt;BR /&gt;
&lt;BR /&gt;
For the CString and CStringArray objects I only get error code&lt;BR /&gt;
"CXX0017: Error: Symbol foobar not found."&lt;BR /&gt;
&lt;BR /&gt;
Same thing for CFont, as I just found out.&lt;BR /&gt;
&lt;BR /&gt;
Does anyone know about such a behaviour or can anyone tell me, why I&lt;BR /&gt;
need corehdr.pdb and why this file is not installed on my system?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in Advance,&lt;BR /&gt;
-- &lt;BR /&gt;
|   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
|   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
| /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
|  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;&lt;/NOSPAM&gt;</description>
      <pubDate>Wed, 28 Aug 2002 07:19:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311252#M39838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-28T07:19:14Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311253#M39839</link>
      <description>corehdr.pdb is a debug file for AutoCAD's internal code which is why you&lt;BR /&gt;
don't have it on your system.  You should be able to cancel out of the&lt;BR /&gt;
dialog that asks for it and keep debugging.&lt;BR /&gt;
&lt;BR /&gt;
"Alexander Griesser" &lt;TUXX&gt; wrote in message&lt;BR /&gt;
news:slrnampqfi.450.tuxx@ess-linux.ess.local...&lt;BR /&gt;
&amp;gt; * Byron Blattel &lt;NOSPAM&gt;:&lt;BR /&gt;
&amp;gt; &amp;gt;  &amp;gt; Which workaround would that be?&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;  To temporarily undefine _DEBUG for the CRT, the 'Wizard' wraps all&lt;BR /&gt;
MFC/ATL&lt;BR /&gt;
&amp;gt; &amp;gt;  includes with the following -&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Ah, ok, now I did this hack in my stdafx.h and I can debug my&lt;BR /&gt;
&amp;gt; ARX-Application now. The only remaining problem is:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; When I start the debugger and use f.ex. a CString Object inside of my&lt;BR /&gt;
&amp;gt; ARX-Code, I'm prompted to give the path to a file called "corehdr.pdb",&lt;BR /&gt;
&amp;gt; which is definetly not on my system.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I asked google about that, but it also returned no hits, so maybe one of&lt;BR /&gt;
&amp;gt; you can help me out there or tell me, what else I need to do, to have a&lt;BR /&gt;
&amp;gt; full debuggable arx-workspace.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; First, I thought, the problem would be there with all MFC classes, so I&lt;BR /&gt;
&amp;gt; instantiated a CArray object and that works fine. I can see the contents&lt;BR /&gt;
&amp;gt; in the debugger.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; For the CString and CStringArray objects I only get error code&lt;BR /&gt;
&amp;gt; "CXX0017: Error: Symbol foobar not found."&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Same thing for CFont, as I just found out.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Does anyone know about such a behaviour or can anyone tell me, why I&lt;BR /&gt;
&amp;gt; need corehdr.pdb and why this file is not installed on my system?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks in Advance,&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; |   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
&amp;gt; |   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
&amp;gt; | /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
&amp;gt; |  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;&lt;/NOSPAM&gt;&lt;/TUXX&gt;</description>
      <pubDate>Thu, 29 Aug 2002 14:53:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311253#M39839</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-29T14:53:30Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311254#M39840</link>
      <description>* Art Cooney &lt;ARTC&gt;:&lt;BR /&gt;
&amp;gt;  corehdr.pdb is a debug file for AutoCAD's internal code which is why you&lt;BR /&gt;
&amp;gt;  don't have it on your system.  You should be able to cancel out of the&lt;BR /&gt;
&amp;gt;  dialog that asks for it and keep debugging.&lt;BR /&gt;
&lt;BR /&gt;
Yes, that's possible, I assumed that. But the other problem still&lt;BR /&gt;
exists:&lt;BR /&gt;
&lt;BR /&gt;
[ While debugging ]&lt;BR /&gt;
&amp;gt; &amp;gt; For the CString and CStringArray objects I only get error code&lt;BR /&gt;
&amp;gt; &amp;gt; "CXX0017: Error: Symbol foobar not found."&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Same thing for CFont, as I just found out.&lt;BR /&gt;
&lt;BR /&gt;
regards,&lt;BR /&gt;
-- &lt;BR /&gt;
|   .-.  |   CCNA Alexander Griesser &lt;TUXX&gt;    | .''`. |&lt;BR /&gt;
|   /v\   \     Software Developer,  EDV Software Service     / : :' : |&lt;BR /&gt;
| /(   )\  |           Bahnhofstr. 8, 9500 Villach           |  `. `'  |&lt;BR /&gt;
|  ^^ ^^   `-------------------------------------------------'    `-   |&lt;/TUXX&gt;&lt;/ARTC&gt;</description>
      <pubDate>Mon, 09 Sep 2002 03:39:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/selfwritten-dll-with-mfc-and-atl-support/m-p/311254#M39840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-09-09T03:39:59Z</dc:date>
    </item>
  </channel>
</rss>

