blob: 51a6ff1f023d1d375ddc0095de017034c07b619e [file] [log] [blame]
/*
* Copyright (c) 2014 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
#ifndef ORG_ECLIPSE_OOMPH_JREINFO_LIB_SRC_JRES_H_
#define ORG_ECLIPSE_OOMPH_JREINFO_LIB_SRC_JRES_H_
#include "eclipseUnicode.h"
typedef struct jre_s {
_TCHAR* javaHome;
int jdk;
struct jre_s* next;
} JRE;
JRE* findAllJREs();
#endif /* ORG_ECLIPSE_OOMPH_JREINFO_LIB_SRC_JRES_H_ */