i want to write a cd burning program. For this purpose i used CSIDL_CDBURN_AREA.

if (FAILED (SHGetFolderPath (NULL, CSIDL_CDBURN_AREA, NULL,
SHGFP_TYPE_CURRENT, szPath)))
fprintf (stderr, "cburnd: SHGetFolderPath() failure\n");

and used headers #include <ShlObj.h>, #include <ShFolder.h> but getting compilation error.

I included these headers form C:\Program Files\Microsoft Platform SDK\Include PATH.
My SDK is Platform SDK for Windows server 2003SP1

Please help