LNK2001 Error in C ++ Project Build

1

I'm trying to give Build a project in Visual Studio and this error is appearing:

Severity    Code    Description Project File    Line    Suppression State
Error   LNK2001 unresolved external symbol "class CPSock ListenSocket" (?ListenSocket@@3VCPSock@@A) TMSrv   C:\Users\Hudson\Documents\Visual Studio 2015\Projects\W2PP\Code\TMSrv\Server.obj    1   

Severity    Code    Description Project File    Line    Suppression State
Error   LNK1120 1 unresolved externals  TMSrv   C:\Users\Hudson\Documents\Visual Studio 2015\Projects\W2PP\Build\Debug\Server\TMSrv\run\TMSrv.exe   1   

Does anyone know what it can be?

    
asked by anonymous 05.09.2016 / 21:13

1 answer

2

Some implementation files, apparently from the CPSock :: ListenSocket class, and from TMSrv, are missing, which can be an external variable or a function.

Or there are missing files in the build, or link-editing.

    
05.09.2016 / 21:25