Error in Vc++ 2005 Express

When i Compile my application, I receive this result
This is a old project that i covert in VC++ 2005
**********************************************************************

ASPSimpleobjhand.cpp
ASPSimpleStore.cpp
Generating Code...
Compiling resources...
Compiling manifest to resources...
Linking...
.\ASPSimple.def(3) : warning LNK4017: DESCRIPTION statement not supported for the target platform; ignored
Creating library .\Debug/ASPSimple.lib and object .\Debug/ASPSimple.exp
ASPSimple.obj : error LNK2019: unresolved external symbol __imp__RegCloseKey@4 referenced in function _DllRegisterServer@0
ASPSimple.obj : error LNK2019: unresolved external symbol __imp__RegSetValueExA@24 referenced in function _DllRegisterServer@0
ASPSimple.obj : error LNK2019: unresolved external symbol __imp__RegCreateKeyExA@36 referenced in function _DllRegisterServer@0
ASPSimple.obj : error LNK2019: unresolved external symbol __imp__RegOpenKeyExA@20 referenced in function _DllRegisterServer@0
ASPSimple.obj : error LNK2019: unresolved external symbol __imp__RegDeleteKeyA@8 referenced in function _DllUnregisterServer@0
ASPSimple.obj : error LNK2019: unresolved external symbol __imp__RegEnumKeyExA@32 referenced in function _DllUnregisterServer@0
ASPSimpleFldr.obj : error LNK2019: unresolved external symbol __imp__LoadImageA@24 referenced in function "public: virtual long __thiscall CASPSimpleFolder::GetObjTypeUIData(struct tagObjUIData *)" (?GetObjTypeUIData@CASPSimpleFolder@@UAEJPAUtagObjUIData@@@Z)
ASPSimpleFldr.obj : error LNK2019: unresolved external symbol __imp__DialogBoxParamA@20 referenced in function "public: virtual long __thiscall CASPSimpleFolder::ActivateDialog(unsigned int,struct HWND__ *,struct IEnumReplItem *)" (?ActivateDialog@CASPSimpleFolder@@UAEJIPAUHWND__@@PAUIEnumReplItem@@@Z)
ASPSimpleFldr.obj : error LNK2019: unresolved external symbol __imp__EndDialog@8 referenced in function "public: static int __stdcall CASPSimpleFolder::SettingsDlgProc(struct HWND__ *,unsigned int,unsigned int,long)" (?SettingsDlgProc@CASPSimpleFolder@@SGHPAUHWND__@@IIJ@Z)
.\Debug/ASPSimple.dll : fatal error LNK1120: 9 unresolved externals
Build log was saved at "file://d:\Progetti\ASPSimple\Debug\BuildLog.htm"
ASPSimple - 10 error(s), 10 warning(s)
**********************************************************************
[2566 byte] By [alexgr] at [2008-2-8]
# 1
You are probably missing some libraries to link to. Try linking to Advapi32.lib & User32.lib

If you still see the errors even after linking to the above libs, then you might want to use the newsgroups at http://msdn.microsoft.com/newsgroups/topic.aspx?url=/MSDN-FILES/028/201/015/topic.xml since most of the symbols mentioned in your error are windows SDK ones.

Thanks,
Ayman Shoukry
VC++ Team

AymanShoukry at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C++ 2005 Express Edition...