我正在尝试使用 SetSuspendState 方法使用c ++程序暂停我的系统,但我在链接时遇到问题。
我在Windows 7操作系统(64位)上使用 g ++ - 4(GCC)4.3.4 20090804(发布)1 编译器。
我写的代码是
#include <iostream>
#include "windows.h"
#include "powrprof.h"
using namespace std;
int main() {
cout << SetSuspendState(false, true, false);
return 0;
}
以下是我面临的错误:
/cygdrive/c/Users/Vikas/AppData/Local/Temp/ccFpLgPi.o:suspend.cpp :(文本+ 0xa4): 未定义的引用 `_SetSuspendState @ 12'collect2:ld 返回1退出状态
请帮助我解决这个问题。
提前致谢...