I have an compiler error i can't solve

i get the following error's when trying to compile the file. the line number is 1. but i have a comment on line 1.

1
2
 error LNK1120: 1 unresolved externals
 error LNK2019: unresolved external symbol "void __cdecl listmode(void)" (?listmode@@YAXXZ) referenced in function _main
That is not a line number. It is a count: one symbol that the linker cannot find an implementation for. You call 'listmode()' but no object file included in link phase provides such function.
okay thanks I found the problem and it's working now :)
Topic archived. No new replies allowed.