Click here to Skip to main content
15,897,704 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Answeryes the value of --i equals that of i - 1 however the side effects are different Pin
Luc Pattyn23-Feb-11 13:36
sitebuilderLuc Pattyn23-Feb-11 13:36 
GeneralRe: yes the value of --i equals that of i - 1 however the side effects are different Pin
Stefan_Lang24-Feb-11 1:59
Stefan_Lang24-Feb-11 1:59 
QuestionKey pressed time Logic Pin
manchukuo23-Feb-11 9:29
manchukuo23-Feb-11 9:29 
AnswerRe: Key pressed time Logic Pin
David Crow23-Feb-11 9:32
David Crow23-Feb-11 9:32 
GeneralRe: Key pressed time Logic Pin
manchukuo23-Feb-11 10:12
manchukuo23-Feb-11 10:12 
QuestionRe: Key pressed time Logic Pin
David Crow23-Feb-11 10:18
David Crow23-Feb-11 10:18 
AnswerRe: Key pressed time Logic Pin
manchukuo23-Feb-11 10:20
manchukuo23-Feb-11 10:20 
Questionunresolved external symbol error when i compile my win32 app Pin
smishtiaqhussain23-Feb-11 1:53
smishtiaqhussain23-Feb-11 1:53 
I am new at c++, and ;I am trying to use existing library that contains .c and .h files.This library also contain one test program.I have included all .c and .h files to my project. When i try to build my project I get the about 10 different "LNK2019: unresolved external symbol errors". maybe some one can help me figure this out.I have checked that .c and .h files contain these function i-e mzd_copy,mzd_echelonize_m4ri etc. I am using visual studio C++ .net 2008. I have uploaded my project at mediafire
http://www.mediafire.com/?6bcuo1tmg3smysc

the error i received are as follows:
Error	7	error LNK2019: unresolved external symbol _mzd_copy referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	6	error LNK2019: unresolved external symbol _mzd_echelonize_m4ri referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	4	error LNK2019: unresolved external symbol _mzd_echelonize_naive referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	3	error LNK2019: unresolved external symbol _mzd_echelonize_pluq referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	2	error LNK2019: unresolved external symbol _mzd_equal referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	1	error LNK2019: unresolved external symbol _mzd_free referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	9	error LNK2019: unresolved external symbol _mzd_init referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	8	error LNK2019: unresolved external symbol _mzd_randomize referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	5	error LNK2019: unresolved external symbol _mzd_top_echelonize_m4ri referenced in function "int __cdecl elim_test_equality(int,int)" (?elim_test_equality@@YAHHH@Z)	test_elimination.obj
Error	10	fatal error LNK1120: 9 unresolved externals	C:\Users\Ishtiaq\Documents\Visual Studio 2008\Projects\test333\Debug\test333.exe

AnswerRe: unresolved external symbol error when i compile my win32 app Pin
_AnsHUMAN_ 23-Feb-11 1:56
_AnsHUMAN_ 23-Feb-11 1:56 
AnswerRe: unresolved external symbol error when i compile my win32 app Pin
Richard MacCutchan23-Feb-11 2:02
mveRichard MacCutchan23-Feb-11 2:02 
AnswerRe: unresolved external symbol error when i compile my win32 app Pin
tagopi23-Feb-11 2:03
tagopi23-Feb-11 2:03 
GeneralRe: unresolved external symbol error when i compile my win32 app Pin
smishtiaqhussain23-Feb-11 2:35
smishtiaqhussain23-Feb-11 2:35 
GeneralRe: unresolved external symbol error when i compile my win32 app Pin
Richard MacCutchan23-Feb-11 3:18
mveRichard MacCutchan23-Feb-11 3:18 
GeneralRe: unresolved external symbol error when i compile my win32 app Pin
smishtiaqhussain23-Feb-11 21:25
smishtiaqhussain23-Feb-11 21:25 
GeneralRe: unresolved external symbol error when i compile my win32 app Pin
Richard MacCutchan23-Feb-11 22:33
mveRichard MacCutchan23-Feb-11 22:33 
AnswerRe: unresolved external symbol error when i compile my win32 app Pin
tagopi23-Feb-11 16:47
tagopi23-Feb-11 16:47 
QuestionNeed assistance on how to send emails in VC6 Pin
John50223-Feb-11 1:07
John50223-Feb-11 1:07 
AnswerRe: Need assistance on how to send emails in VC6 Pin
_AnsHUMAN_ 23-Feb-11 1:58
_AnsHUMAN_ 23-Feb-11 1:58 
AnswerRe: Need assistance on how to send emails in VC6 Pin
Rolf Kristensen23-Feb-11 6:41
Rolf Kristensen23-Feb-11 6:41 
QuestionCFileDialog default path Pin
john563223-Feb-11 1:06
john563223-Feb-11 1:06 
AnswerRe: CFileDialog default path Pin
Richard MacCutchan23-Feb-11 1:59
mveRichard MacCutchan23-Feb-11 1:59 
AnswerRe: CFileDialog default path Pin
Maximilien23-Feb-11 2:36
Maximilien23-Feb-11 2:36 
QuestionHow to Use WPF in Vc++ win32/MFC application? Pin
mathivanaan22-Feb-11 23:46
mathivanaan22-Feb-11 23:46 
AnswerRe: How to Use WPF in Vc++ win32/MFC application? Pin
Richard MacCutchan23-Feb-11 2:03
mveRichard MacCutchan23-Feb-11 2:03 
AnswerRe: How to Use WPF in Vc++ win32/MFC application? Pin
manchukuo23-Feb-11 9:09
manchukuo23-Feb-11 9:09 

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.