mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-08-03 19:36:53 -04:00
10 lines
242 B
C++
10 lines
242 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include <string>
|
|
|
|
// Find Java installation in system registry
|
|
bool FindJavaInRegistry(std::wstring &path);
|
|
|
|
// Find Java Installation in registry and environment variable
|
|
bool FindJava(std::wstring &path);
|