Another problem with the use of own DLL
The situation is as follow:
I have a pack of Classes that i'm using to realize an application that comunicates with some devices.
My need now is that of realize my DLL that invokes some function of this pack of classes.
Of this classes i have only the header file obviously and i want to #include this classes in my DLL.
But it happens that when i try to #include this classes in my DLL starts some errors which do not appear if i #include the same classes in a simple win32 project.
Suppose we have header file:
<vhandtk/A.h> that #includes <vtdim/client.h>
In my DLL i #include the header file <vhandtk/A.h> but when i try to compile it there are many errors which involve a header file <vtdim/socket.h> which is #included in <vtidm/client.h>
This error doen't appear if i #include the same file in a Win32Project.
Can you help me?