source: trunk/src/plugins/platform-launcher/library/eclipseUtil.h

Last change on this file was 28, checked in by lpino, 18 years ago
File size: 682 bytes
Line 
1/*
2 * Copyright (c) 2002 IBM Corp and others. All rights reserved.
3 * This file is made available under the terms of the Common Public License v1.0
4 * which accompanies this distribution, and is available at
5 * http://www.eclipse.org/legal/cpl-v10.html
6 *
7 * Contributors:
8 * Kevin Cornell (Rational Software Corporation)
9 */
10
11
12#ifndef ECLIPSE_UTIL_H
13#define ECLIPSE_UTIL_H
14
15/* Eclipse Launcher Utility Methods */
16
17/* Is the given Java VM J9 */
18extern int isJ9VM( char* vm );
19
20
21#ifdef AIX
22/* Get the version of the VM */
23extern char* getVMVersion( char* vm );
24
25/* Compare JVM Versions */
26extern int versionCmp( char* ver1, char* ver2 );
27#endif
28
29#endif /* ECLIPSE_UTIL_H */
Note: See TracBrowser for help on using the repository browser.