AndyHollywood
Programmer
Hello, I wonder if anybody can help me to get rid of the unresolved external linking errors that i get in my code?!
I have written a program that requires the use of a dll to deploy system wide hooks to monitir the users interactions, it was originally an example from msdn and i had planned to modify it to collect user information, but i can't get it to compile!
A link to my code:
It gives me erros along the lines of:
I I have no idea what they mean or how to solve them! If somebody could explain what they mean i would be grateful, or if somebody could tell me how to solve them i would be exstatic!!
Cheers in advance
Andy
I have written a program that requires the use of a dll to deploy system wide hooks to monitir the users interactions, it was originally an example from msdn and i had planned to modify it to collect user information, but i can't get it to compile!
A link to my code:
It gives me erros along the lines of:
Code:
key32.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) int __stdcall InitHooksDll(struct HWND__ *,int)" (__imp_?InitHooksDll@@YGHPAUHWND__@@H@Z)
key32.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) int __stdcall PaintHooksDll(struct HDC__ *)" (__imp_?PaintHooksDll@@YGHPAUHDC__@@@Z)
key32.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) int __stdcall InstallFilter(int,int)" (__imp_?InstallFilter@@YGHHH@Z)
I I have no idea what they mean or how to solve them! If somebody could explain what they mean i would be grateful, or if somebody could tell me how to solve them i would be exstatic!!
Cheers in advance
Andy