| | |
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 |
Tag cloud for C++
api application array arrays based beginner binary bmp c++ c/c++ calculator char char* class classes code compile compiler console conversion convert count data delete deploy dll download dynamic dynamiccharacterarray encryption error file format forms fstream function functions game givemetehcodez graph gui homeworkhelp iamthwee ifstream input int java lib library linker list loop looping loops map math matrix memory microsoft newbie news number numbertoword output pointer problem program programming project python random read recursion recursive reference rpg simple sorting string strings struct temperature template templates test text text-file tree url variable vector video visual visualstudio void win32 windows winsock wordfrequency wxwidgets






