0

我使用 VS 2012。我想使用函数 WNetGetUser:

#include "stdafx.h"
#include "windows.h"
#include "iostream"
using namespace std;

void main()
{
char Name[255];
char Test[255];
DWORD size=255;
if (WNetGetUser(Test,Name,&size)==NO_ERROR)
{
    cout << Name << endl;
}
}

但我得到了错误:函数_main中引用的未解析的外部符号_WNetGetUserA@12

我怎么解决这个问题?我在哪里可以找到包含的正确标题?

4

0 回答 0