能力值:
( LV10,RANK:160 )
|
-
-
2 楼
我服了 图片上传不上来。
最后于 2020-5-3 19:11
被淡然他徒弟编辑
,原因:
|
能力值:
( LV10,RANK:160 )
|
-
-
3 楼
1>process.obj : error LNK2001: 无法解析的外部符号 _invoke_watson 1>main.obj : error LNK2001: 无法解析的外部符号 _invoke_watson 1>manualmap.obj : error LNK2001: 无法解析的外部符号 _invoke_watson 1>memory_section.obj : error LNK2001: 无法解析的外部符号 _invoke_watson 1>portable_executre.obj : error LNK2001: 无法解析的外部符号 _invoke_watson 1>process.obj : error LNK2001: 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA) 1>main.obj : error LNK2001: 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA) 1>manualmap.obj : error LNK2001: 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA) 1>memory_section.obj : error LNK2001: 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA) 1>portable_executre.obj : error LNK2001: 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA)
|
能力值:
( LV3,RANK:35 )
|
-
-
4 楼
声明一下就好了 _CRTIMP2_PURE_IMPORT _Prhand _Raise_handler;
extern "C" void __cdecl _invoke_watson(
wchar_t const* const expression,
wchar_t const* const function_name,
wchar_t const* const file_name,
unsigned int const line_number,
uintptr_t const reserved)
{
return;
}
最后于 2020-5-3 20:05
被Chords编辑
,原因:
|
能力值:
( LV10,RANK:160 )
|
-
-
5 楼
using _STDEXT exception;
using _Prhand = void(__cdecl*)(const exception&);
_CRTIMP2_PURE_IMPORT _Prhand _Raise_handler;
EXTERN_C void __cdecl _invoke_watson(
wchar_t const* const expression,
wchar_t const* const function_name,
wchar_t const* const file_name,
unsigned int const line_number,
uintptr_t const reserved)
{
UNREFERENCED_PARAMETER(expression);
UNREFERENCED_PARAMETER(function_name);
UNREFERENCED_PARAMETER(file_name);
UNREFERENCED_PARAMETER(line_number);
UNREFERENCED_PARAMETER(reserved);
} 已经搞定了 谢谢同志。
最后于 2020-5-3 23:36
被淡然他徒弟编辑
,原因:
|
能力值:
( LV1,RANK:0 )
|
-
-
6 楼
都2019啦啊
|
能力值:
( LV10,RANK:160 )
|
-
-
7 楼
|
能力值:
( LV2,RANK:10 )
|
-
-
8 楼
我的跟你的情况相似但是有些不同:请帮忙看下 严重性 代码 说明 项目 文件 行 禁止显示状态 错误 LNK1120 1 个无法解析的外部命令 arksys F:\working\test\vc19\arksword\x64\Debug\arksys.sys 1 错误 LNK2001 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA) arksys F:\working\test\vc19\arksword\arksys\jkCommand.obj 1 错误 LNK2001 无法解析的外部符号 "void (__cdecl* std::_Raise_handler)(class stdext::exception const &)" (?_Raise_handler@std@@3P6AXAEBVexception@stdext@@@ZEA) arksys F:\working\test\vc19\arksword\arksys\NotifyCallback.obj 1
|
能力值:
( LV10,RANK:160 )
|
-
-
9 楼
双刃剑
我的跟你的情况相似但是有些不同:请帮忙看下
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 LNK1120 1 个无法解析的外部命令 arksys F:\working\test\vc19 ...
缺少什么函数 自己定义个空函数就好啦
|
能力值:
( LV2,RANK:10 )
|
-
-
10 楼
遇到这个问题了,搜到了存爷,看到了x64inject。想要
|
能力值:
( LV2,RANK:10 )
|
-
-
11 楼
我就想知道能在内核中把stl库单独打包提取出来吗? 我自己在做bat批处理自动化编译,自己调用的cl库,丢弃了vs和wdk,现在还差stl的库没有提取出来
|
|
|