End Google Ads 201810 - BS.net 01 --> Hi all .

step 1: create new project on visual studio (project1.exe)
step 2: create WinUtils.h and WinUtils.cpp on project1.exe and main1.cpp

step 3 : add new project (project2.exe) and create main2.cpp

Now I want to use WinUtils.h and WinUtils.cpp on project2.exe
example
//-----------------main2.cpp--------------------
#include "../utils/WinUtils.h"

int main()
{
bool value = WinUtils::isWin64bit();/ function static
return 0 ;
}
//--------------------------------------------
when i build code ,I saw error:
+ error LNK2001: unresolved external symbol "public: static int __cdecl WinUtils::Is64BitOS(void)" (?Is64BitOS@WinUtils@@SAHXZ)
+ fatal error LNK1120: 1 unresolved externals

I make sure that isWin64bit() function is "public static"

Please help me this problem .because my code has very much h and cpp files.

Thanks

Thong LT