VBNick 3 Junior Poster

I can't figure out, or google how to do this =/
I just need something to put my computer to sleep

#pragma comment (lib, "PowrProf.lib")
#include "stdafx.h"
#include "windows.h"
#include "Powrprof.h"
int _tmain(int argc, _TCHAR* argv[])
{
	SetSuspendState(false, false, false);
	return 0;
}

I get this error:
1>Sleeper.obj : error LNK2019: unresolved external symbol _SetSuspendState@12 referenced in function _wmain
1>C:\Users\Nicolas\Desktop\Sleeper\Debug\Sleeper.exe : fatal error LNK1120: 1 unresolved externals

can anyone help plz?