| | |
Don't know what this C++ error means
Please support our C++ advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Dec 2004
Posts: 1
Reputation:
Solved Threads: 0
I ran my C++ program and got these error messages. I have no idea what they mean.
Will somone please help.
error LNK2019: unresolved external symbol "int __cdecl GetInformation(int,int,int,char (* const)[15],char (* const)[15],float * const,float * const,float * const,float * const,float * const)" (?GetInformation@@YAHHHHQAY0P@D0QAM1111@Z) referenced in function _main
fatal error LNK1120: 1 unresolved externals
Will somone please help.error LNK2019: unresolved external symbol "int __cdecl GetInformation(int,int,int,char (* const)[15],char (* const)[15],float * const,float * const,float * const,float * const,float * const)" (?GetInformation@@YAHHHHQAY0P@D0QAM1111@Z) referenced in function _main
fatal error LNK1120: 1 unresolved externals
•
•
Join Date: Dec 2004
Posts: 12
Reputation:
Solved Threads: 1
•
•
•
•
Originally Posted by Starlight620
I ran my C++ program and got these error messages. I have no idea what they mean.Will somone please help.
error LNK2019: unresolved external symbol "int __cdecl GetInformation(int,int,int,char (* const)[15],char (* const)[15],float * const,float * const,float * const,float * const,float * const)" (?GetInformation@@YAHHHHQAY0P@D0QAM1111@Z) referenced in function _main
fatal error LNK1120: 1 unresolved externals
- The function is in a library that you link statically to the program, but the library itself is not present;
- The function is in a C++ file that is not placed within a project, and therefore the compiler does not include it in the linking phase;
- You are calling the function with incorrect parameters, the linker tries to find an overloaded func with signature matching the call and fails.
So, check your libraries, your C++ files and your parameters when you call this function.
![]() |
Similar Threads
- Can someone tell me what this error means? (C++)
- FTP Error 550..no go for deletes or anything! (Windows Software)
- c++ debugging error (C++)
- Error! (C)
- RUNDLL ERROR / w3knet.dll (Viruses, Spyware and other Nasties)
Other Threads in the C++ Forum
- Previous Thread: Homework Help/Feedback
- Next Thread: c++ debugging error
| Thread Tools | Search this Thread |
api array arrays based beginner binary bitmap c++ c/c++ calculator char class classes code compile compiler console conversion count data delete deploy desktop developer directshow dll download dynamic encryption error file forms fstream function functions game getline givemetehcodez google graph gui homeworkhelp homeworkhelper iamthwee ifstream input int integer java lib linkedlist linker linux list loop looping loops map math matrix memory news node number output parameter pointer problem program programming project proxy python read recursion recursive return string strings struct temperature template templates test text text-file tree unix url variable vector video visual visualstudio win32 windows winsock word wordfrequency wxwidgets






