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

    question about resource.h in eMbedded Visual C++

    I am new to the eMbedded Visual C++ world. I am working to create a dialog box that will display the VS_VERSION_INFO. I have read the help and it says that i must have the GetFileVersionInfo before I can call the VerQueryValue which will allow me to display the information within the VS_VERSION_INFO thus far i have it defined as such. It thought is not sufficiant does anyone have suggestions as I am new to eMbedded Visual C++

    BOOL GetFileVersionInfo(
    LPTSTR lptstrFilename,
    DWORD dwHandle,
    DWORD dwLen,
    LPVOID lpData
    );

    BOOL GetFileVersionInfo(LPTSTR lptstrFilename, DWORD dwHandle, DWORD dwLen, LPVOID lpData);

    VerQueryValue(pBlock, TEXT("\\FileVersion\\lptstrFilename"),(LPVOID*)&lptstrFilename, &lptstrFilename);

  2. #2
    Join Date
    Feb 2000
    Location
    San Diego, CA
    Posts
    10,354

    Re: question about resource.h in eMbedded Visual C++


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