News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Manifest does not work

Started by n00b!, September 16, 2008, 06:51:06 PM

Previous topic - Next topic

n00b!

.

RuiLoureiro

Hi n00b!

I am using this

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    processorArchitecture="x86"
    version="5.1.0.0"
    type="win32"
    name="Example"
/>
<description>Example by RuiLoureiro</description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
         type="win32"
         name="Microsoft.Windows.Common-Controls"
         version="6.0.0.0"
         publicKeyToken="6595b64144ccf1df"
         language="*"
         processorArchitecture="x86"
        />
    </dependentAssembly>
</dependency>
</assembly>


In rsrc.rc:

#define MANIFEST       24
#define IDR_MANIFEST   1
IDR_MANIFEST   MANIFEST  DISCARDABLE "manifest.xml"


If i change to
#define IDR_MANIFEST   2
it doesnt work i dont know why and i would like to know why.

Anyone can help us
Thank you
Rui

GregL

Rui,

1 means it's an exe, 2 means it's a dll.


RuiLoureiro

Quote from: Greg on September 17, 2008, 01:03:25 AM
1 means it's an exe, 2 means it's a dll.
Greg,
          Many thanks  :U