CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2009
    Posts
    61

    CSIDL_CDBURN_AREA gettng error

    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

  2. #2
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: CSIDL_CDBURN_AREA gettng error

    Is there some reason you don't that error contains useful information?

  3. #3
    Join Date
    Jun 2009
    Posts
    61

    Re: CSIDL_CDBURN_AREA gettng error

    I got the answer. Used function of same name in library file

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured