Home | History | Annotate | Download | only in windowsRuntimeInstaller

Lines Matching refs:Platform

63 enum Platform

90 // platform (input) - The platform to set the installation for (x64 or x86)
92 int add_explicit_layers(FILE* log, const char* install_path, enum Platform platform);
144 // platform (input) - The platform (x64 or x86) of the registry to use (both exist on x64)
146 int remove_explicit_layers(FILE* log, const char** install_paths, size_t count, enum Platform platform);
151 // platform (input) - The platform of the OS (both registries will be modified if this is x64)
154 int update_registry_layers(FILE* log, enum Platform platform, const struct SDKVersion* version);
173 // platform (input) - The platform for the current OS
175 int update_windows_directories(FILE* log, long abi_major, enum Platform platform,
180 // Get the OS platform (x86 or x64)
183 enum Platform platform = is_64_bit ? PLATFORM_X64 : PLATFORM_X86;
199 CHECK_ERROR_HANDLED(update_windows_directories(log, abi_major, platform, &latest_runtime_version),
203 CHECK_ERROR_HANDLED(update_registry_layers(log, platform, &latest_runtime_version), { fclose(log); });
209 int add_explicit_layers(FILE* log, const char* install_path, enum Platform platform)
211 switch(platform)
225 if(platform == PLATFORM_X64) {
235 const char* pattern = platform == PLATFORM_X64 ? "%s\\Bin\\VkLayer*.json" : "%s\\Bin32\\VkLayer*.json";
249 const char* layer_pattern = platform == PLATFORM_X64 ? "%s\\Bin\\%s" : "%s\\Bin32\\%s";
469 int remove_explicit_layers(FILE* log, const char** install_paths, size_t count, enum Platform platform)
471 switch(platform)
487 if(platform == PLATFORM_X64) {
527 int update_registry_layers(FILE* log, enum Platform platform, const struct SDKVersion* version)
539 if(platform == PLATFORM_X64) {
555 if(platform == PLATFORM_X64) {
661 int update_windows_directories(FILE* log, long abi_major, enum Platform platform, struct SDKVersion* latest_runtime_version)
680 if(platform == PLATFORM_X64) {