H
hamishd
TestClass.obj : error LNK2005: "int volatile bIsProcessing"
(?bIsProcessing@@3HC) already defined in OtherClass.obj
Creating library Release/TestDLL.lib and object Release/TestDLL.exp
Release/TestDLL.dll : fatal error LNK1169: one or more multiply defined
symbols found
In TestClass header file I have:
volatile BOOL bIsProcessing;
In OtherClass I have:
volatile BOOL * pbProcessing;
I cannot link, and I am confused as what is wrong? I can't see any
difference between this situation and one in a different project which
is linking ok
(?bIsProcessing@@3HC) already defined in OtherClass.obj
Creating library Release/TestDLL.lib and object Release/TestDLL.exp
Release/TestDLL.dll : fatal error LNK1169: one or more multiply defined
symbols found
In TestClass header file I have:
volatile BOOL bIsProcessing;
In OtherClass I have:
volatile BOOL * pbProcessing;
I cannot link, and I am confused as what is wrong? I can't see any
difference between this situation and one in a different project which
is linking ok