vote up 1 vote down star

I am upgrading an unmanaged C++ application to use the XP/Vista style common controls by adding a manifest. According to MSDN's page on application manifests, you are required to specify the name and version in the manifest, and optionally the description:

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity
    version="1.2.3.4"
    processorArchitecture="*"
    name="CompanyName.ApplicationName"
    type="win32"
  />
  <description>Application's description here</description>
</assembly>

How are these details used? There is a mention about backward compatibility being implied by having the same major and minor versions for assemblies, but this does not seem to apply to applications. I also haven't been able to see the name, version, or description specified by the manifest in the application's properties on Windows XP.

What effect does changing these have? Is it worthwhile to keep the version up-to-date?

flag

2 Answers

vote up 0 vote down

No, the XP SP2 version of Notepad.exe has a manifest naming itself for example. You can see it in Visual Studio with File + Open, c:\windows\notepad.exe, open the RT_MANIFEST note and double-click "1". You'll see the dependency on V6.0.0.0 of comctl32.dll there too.

That said, I see no mechanism where that info could ever be used anywhere. Manifests are there to control dependencies on DLLs. Windows finds the manifest from the .exe, either by its name (.manifest file) or from the RT_MANIFEST resource. In that chicken-and-egg case, the .exe is always first. The docs on manifest usage contains some guidance on assemblies using their version number to store persistent state in the registry or private stores. But afaik, the APIs neither enforce nor help doing this using the manifest info.

Btw, don't use "*" for processor architecture. It has to be either x86 or amd64 for unmanaged code.

link|flag
vote up 0 vote down

For common controls to use the XP/Vista themes in a C++ application which does not link the manifest in (such as Visual C++ 6 apps), the following is a template you can use:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
 version="1.0.0.0"
 processorArchitecture="X86"
 name="Program Name"
 type="win32"
/>
<description>Description of Program</description>
<dependency>
 <dependentAssembly>
 <assemblyIdentity
   type="win32"
   name="Microsoft.Windows.Common-Controls"
   version="6.0.0.0"
   processorArchitecture="X86"
   publicKeyToken="6595b64144ccf1df"
   language="*"
 />
 </dependentAssembly>
</dependency>
</assembly>
link|flag
I've been able to find this example manifest everywhere, and you can add the manifest by hand to the resource script and VC6 will happily link it in. I'm just trying to understand the purpose to all the parts of the manifest. – Jason Owen Dec 21 '08 at 22:14
1  
I don't think they do actually have a purpose. The description for example isn't currently used, and as such, never will be, due to the huge number of programs that would be described "Description of Program". – Chris Becke Jan 6 '09 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.