setup.cpp (79aad27f) setup.cpp (d45c90b4)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 67 unchanged lines hidden (view full) ---

76#define CMDLN_REG_NO_MSO_TYPES TEXT( "msoreg=0" )
77
78#define MSI_DLL TEXT( "msi.dll" )
79#define ADVAPI32_DLL TEXT( "advapi32.dll" )
80#define PROFILE_NAME TEXT( "setup.ini" )
81
82#define RUNTIME_X64_NAME TEXT( "redist\\vcredist_x64.exe" )
83#define RUNTIME_X86_NAME TEXT( "redist\\vcredist_x86.exe" )
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 67 unchanged lines hidden (view full) ---

76#define CMDLN_REG_NO_MSO_TYPES TEXT( "msoreg=0" )
77
78#define MSI_DLL TEXT( "msi.dll" )
79#define ADVAPI32_DLL TEXT( "advapi32.dll" )
80#define PROFILE_NAME TEXT( "setup.ini" )
81
82#define RUNTIME_X64_NAME TEXT( "redist\\vcredist_x64.exe" )
83#define RUNTIME_X86_NAME TEXT( "redist\\vcredist_x86.exe" )
84#define PRODUCTCODE_X86 TEXT( "{E503B4BF-F7BB-3D5F-8BC8-F694B1CFF942}" )
85#define PRODUCTCODE_X64 TEXT( "{350AA351-21FA-3270-8B7A-835434E766AD}" )
84// Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161
85#define PRODUCTCODE_X86 TEXT( "{9BE518E6-ECC6-35A9-88E4-87755C07200F}" )
86// Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161
87#define PRODUCTCODE_X64 TEXT( "{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4}" )
86
87#define MSIAPI_DllGetVersion "DllGetVersion"
88#define ADVAPI32API_CheckTokenMembership "CheckTokenMembership"
89
90typedef HRESULT (CALLBACK* PFnDllGetVersion)( DLLVERSIONINFO *pdvi);
91typedef BOOL (WINAPI* PFnCheckTokenMembership)(HANDLE TokenHandle, PSID SidToCheck, PBOOL IsMember);
92
93#ifdef DEBUG

--- 1969 unchanged lines hidden ---
88
89#define MSIAPI_DllGetVersion "DllGetVersion"
90#define ADVAPI32API_CheckTokenMembership "CheckTokenMembership"
91
92typedef HRESULT (CALLBACK* PFnDllGetVersion)( DLLVERSIONINFO *pdvi);
93typedef BOOL (WINAPI* PFnCheckTokenMembership)(HANDLE TokenHandle, PSID SidToCheck, PBOOL IsMember);
94
95#ifdef DEBUG

--- 1969 unchanged lines hidden ---