Click here to Skip to main content
15,928,983 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: From Author : Clipboard Pin
Nish Nishant24-Apr-02 17:57
sitebuilderNish Nishant24-Apr-02 17:57 
GeneralRe: From Author : Clipboard Pin
Ravi Bhavnani24-Apr-02 19:13
professionalRavi Bhavnani24-Apr-02 19:13 
GeneralFrom Author : Clipboard Pin
25-Apr-02 2:19
suss25-Apr-02 2:19 
GeneralClipboard Pin
24-Apr-02 16:51
suss24-Apr-02 16:51 
Generalfrom author Pin
24-Apr-02 17:02
suss24-Apr-02 17:02 
GeneralA newbie question:Adding a .cpp to a project. Pin
dhon24-Apr-02 16:35
dhon24-Apr-02 16:35 
GeneralRe: A newbie question:Adding a .cpp to a project. Pin
Josh Knox24-Apr-02 16:44
Josh Knox24-Apr-02 16:44 
GeneralRe: A newbie question:Adding a .cpp to a project. Pin
dhon24-Apr-02 19:40
dhon24-Apr-02 19:40 
i'm working on an open source system according to the documentation->"If you get the following error message:
Link Error: CallSim.obj : error LNK2001: unresolved
external symbol "public: virtual __thiscall
SKC_UserTimer::~SKC_UserTimer(void)"
(??1SKC_UserTimer@@UAE@XZ)
• Make sure that include/BaseClasses.cpp and include/
CMessages.api.cpp are members of the project."

i already added this files to my project and still i got this->"Linking...
Switch1Dlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall XLC_AssignSpan::~XLC_AssignSpan(void)" (??1XLC_AssignSpan@@UAE@XZ)
Switch1Dlg.obj : error LNK2001: unresolved external symbol "public: __thiscall XLC_AssignSpan::XLC_AssignSpan(int)" (??0XLC_AssignSpan@@QAE@H@Z)
Debug/Switch1.exe : fatal error LNK1120: 2 unresolved externals
Error executing link.exe.
Creating browse info file...

Switch1.exe - 3 error(s), 0 warning(s)"


under the CMessages.api.cpp i have this->SK_DEFINE_CLASS(XLC_AssignSpan);

XLC_AssignSpan::XLC_AssignSpan(int sz)
: dynStorage((sz > sizeof(XL_AssignSpan)) ? malloc(sz) : NULL)
{
msgRep = (dynStorage ? (XL_AssignSpan *)dynStorage : &repStorage);
sk_initMsg(msgRep, TAG_AssignSpan);
}

XLC_AssignSpan::~XLC_AssignSpan()
{
if (dynStorage) {
free(dynStorage);
}
}"

what else am i missing here. thanks guys in advance.

GeneralRe: A newbie question:Adding a .cpp to a project. Pin
Christian Graus24-Apr-02 23:16
protectorChristian Graus24-Apr-02 23:16 
GeneralRe: A newbie question:Adding a .cpp to a project. Pin
dhon24-Apr-02 23:20
dhon24-Apr-02 23:20 
GeneralRe: A newbie question:Adding a .cpp to a project. Pin
Alexandru Savescu24-Apr-02 23:22
Alexandru Savescu24-Apr-02 23:22 
GeneralRe: A newbie question:Adding a .cpp to a project. Pin
dhon24-Apr-02 23:36
dhon24-Apr-02 23:36 
GeneralRe: A newbie question:Adding a .cpp to a project. Pin
Sameer Maggon24-Apr-02 19:37
Sameer Maggon24-Apr-02 19:37 
GeneralApplication Optimization Pin
Sameer Maggon24-Apr-02 16:30
Sameer Maggon24-Apr-02 16:30 
GeneralRe: Application Optimization Pin
Shog924-Apr-02 16:52
sitebuilderShog924-Apr-02 16:52 
GeneralRe: Application Optimization Pin
Mike Nordell25-Apr-02 9:34
Mike Nordell25-Apr-02 9:34 
GeneralAbout DataGrid Bind!! Pin
Forlegend24-Apr-02 16:28
Forlegend24-Apr-02 16:28 
GeneralRe: About DataGrid Bind!! Pin
Mike Eriksson24-Apr-02 23:53
Mike Eriksson24-Apr-02 23:53 
Generalcall back Pin
NicholasCougar24-Apr-02 15:34
NicholasCougar24-Apr-02 15:34 
GeneralRe: call back Pin
Ernest Laurentin25-Apr-02 6:01
Ernest Laurentin25-Apr-02 6:01 
Questionhow to realloc a unsigned char __gc Pin
Albert Pascual24-Apr-02 14:03
sitebuilderAlbert Pascual24-Apr-02 14:03 
AnswerRe: how to realloc a unsigned char __gc Pin
Paul M Watt24-Apr-02 14:46
mentorPaul M Watt24-Apr-02 14:46 
GeneralRe: how to realloc a unsigned char __gc Pin
Albert Pascual24-Apr-02 14:50
sitebuilderAlbert Pascual24-Apr-02 14:50 
GeneralRe: how to realloc a unsigned char __gc Pin
Albert Pascual25-Apr-02 5:49
sitebuilderAlbert Pascual25-Apr-02 5:49 
Generalpointers Pin
24-Apr-02 13:02
suss24-Apr-02 13:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.