vs如何查看程序所使用到的链接库?


比如下面这个windows c程序,我想在vs2015中查看它用到的链接库(KERNEL32.LIB或USER32.LIB等等)如何做到?


 #include <Windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    PSTR szCmdLine, int iCmdShow)
{
    MessageBox(NULL, TEXT("Hello, Windows 98!"), TEXT("HelloMsg"), 
        MB_RETRYCANCEL|MB_DEFBUTTON2|MB_ICONERROR);
    return 0;
}

visual-studio

笑得很累不笑了 10 years, 4 months ago
YUSA龙骑 answered 10 years, 4 months ago

属性页>配置属性>链接器>输入>附加依赖项

此花露琪亚 answered 10 years, 4 months ago

Your Answer