// link to shell32.lib

#include <windows.h>
#include <shlobj.h>

int APIENTRY WinMain(HINSTANCE hinst, HINSTANCE hinstPrev, LPSTR lpCmdLine, int nCmdShow) {

 	SHAddToRecentDocs(0, 0);
	return 0;

}

