G
Guest
When adding a "Managed Assembly" i.e., a dll to an existing C++/CLI program i
get the error:
LDAPfunctions.h(183) : error C2011: 'LDAPfunctions::LdapSsl' : 'class' type
redefinition
This is for the code:
namespace LDAPfunctions
{
public ref class LdapSsl // error link points here
{
***
Any idea what could be causing this?
The above namespace has included within its 'include' file some other class
definitions and C constructs that are not within the LDAPfunctions namespace.
Is there some rule against doing that?
Thanks
get the error:
LDAPfunctions.h(183) : error C2011: 'LDAPfunctions::LdapSsl' : 'class' type
redefinition
This is for the code:
namespace LDAPfunctions
{
public ref class LdapSsl // error link points here
{
***
Any idea what could be causing this?
The above namespace has included within its 'include' file some other class
definitions and C constructs that are not within the LDAPfunctions namespace.
Is there some rule against doing that?
Thanks