我是C ++的新手,我试图复制此代码并在visual studio 2010中运行。但是它提供了未解析的extern'c'错误以及代码下面列出的另一个未解析的令牌“extern”C“。
这是导致错误的代码:
#ifdef _MANAGED // Works only with managed C++
#pragma once
#pragma managed(push, on)
#include <stdlib.h> //free
typedef void (__cdecl *_PVFV)(void);
extern "C" void * __cdecl _decode_pointer(void *);
extern "C" void * __cdecl _encoded_null();
// crtdll.c
extern "C" _PVFV *__onexitbegin;
extern "C" _PVFV *__onexitend;
void CrtDestroyStatics(void)
{
_PVFV * onexitbegin = (_PVFV *)_decode_pointer(__onexitbegin);
if (onexitbegin)
{
_PVFV * onexitend = (_PVFV *)_decode_pointer(__onexitend);
_PVFV function_to_call = NULL;
/* save the start and end for later comparison */
_PVFV * onexitbegin_saved = onexitbegin;
_PVFV * onexitend_saved = onexitend;
while (1)
{
_PVFV * onexitbegin_new = NULL;
_PVFV * onexitend_new = NULL;
/* find the last valid function pointer to call. */
while (--onexitend >= onexitbegin && (*onexitend == NULL || *onexitend == _encoded_null()))
{
/* keep going backwards. */
}
if (onexitend < onexitbegin)
{
/* there are no more valid entries in the list, we are done. */
break;
}
/* cache the function to call. */
function_to_call = (_PVFV)_decode_pointer(*onexitend);
/* mark the function pointer as visited. */
*onexitend = (_PVFV)_encoded_null();
/* call the function, which can eventually change __onexitbegin and __onexitend */
(*function_to_call)();
onexitbegin_new = (_PVFV *)_decode_pointer(__onexitbegin);
onexitend_new = (_PVFV *)_decode_pointer(__onexitend);
if ( ( onexitbegin_saved != onexitbegin_new ) || ( onexitend_saved != onexitend_new ) )
{
/* reset only if either start or end has changed */
__onexitbegin = onexitbegin_saved = onexitbegin_new;
__onexitend = onexitend_saved = onexitend_new;
}
break;
}
/*
* free the block holding onexit table to
* avoid memory leaks. Also zero the ptr
* variables so that they are clearly cleaned up.
*/
free ( onexitbegin ) ;
__onexitbegin = __onexitend = (_PVFV *)_encoded_null();
}
} //CrtDestroyStatics
#pragma managed(pop)
#endif
以下是链接器错误:
Error 4 error LNK2019: unresolved external symbol "extern "C" void * __cdecl _decode_pointer(void *)" (?_decode_pointer@@$$J0YAPEAXPEAX@Z) referenced in function "void __cdecl CrtDestroyStatics(void)" (?CrtDestroyStatics@@$$FYAXXZ)
Error 3 error LNK2028: unresolved token (0A000F2F) "extern "C" void * __cdecl _decode_pointer(void *)" (?_decode_pointer@@$$J0YAPEAXPEAX@Z) referenced in function "void __cdecl CrtDestroyStatics(void)" (?CrtDestroyStatics@@$$FYAXXZ)
虽然我在Linker-&gt;输入
中为其他依赖项继承了这些库值kernel32.lib
user32.lib
gdi32.lib
winspool.lib
comdlg32.lib
advapi32.lib
请告诉我我犯了什么错?
答案 0 :(得分:0)
如果你的kernel32中没有_decode_poiner
,那么你的配置似乎没有正确设置。如果您使用的是较旧版本的VS并进行了升级,请确保链接器不指向旧环境。
您可以查看here以获取有关如何解决此问题的其他信息。