Subversion Repositories filter_foundry

Rev

Rev 206 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 206 Rev 439
Line 16... Line 16...
16
    You should have received a copy of the GNU General Public License
16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
19
*/
20
 
20
 
-
 
21
#ifndef MANIFEST_H_
-
 
22
#define MANIFEST_H_
-
 
23
 
21
#include <windows.h>
24
#include <windows.h>
22
 
25
 
23
#ifndef ACTCTX_FLAG_RESOURCE_NAME_VALID
26
#ifndef ACTCTX_FLAG_RESOURCE_NAME_VALID
24
#define ACTCTX_FLAG_RESOURCE_NAME_VALID 8
27
#define ACTCTX_FLAG_RESOURCE_NAME_VALID 8
25
#endif
28
#endif
Line 52... Line 55...
52
} ManifestActivationCtx, *PManifestActivationCtx;
55
} ManifestActivationCtx, *PManifestActivationCtx;
53
 
56
 
54
extern BOOL ActivateManifest(HMODULE hModule, int manifestResourceID, PManifestActivationCtx vars);
57
extern BOOL ActivateManifest(HMODULE hModule, int manifestResourceID, PManifestActivationCtx vars);
55
 
58
 
56
extern BOOL DeactivateManifest(PManifestActivationCtx vars);
59
extern BOOL DeactivateManifest(PManifestActivationCtx vars);
-
 
60
 
-
 
61
#endif