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 */
|
---|
18 | extern int isJ9VM( char* vm );
|
---|
19 |
|
---|
20 |
|
---|
21 | #ifdef AIX
|
---|
22 | /* Get the version of the VM */
|
---|
23 | extern char* getVMVersion( char* vm );
|
---|
24 |
|
---|
25 | /* Compare JVM Versions */
|
---|
26 | extern int versionCmp( char* ver1, char* ver2 );
|
---|
27 | #endif
|
---|
28 |
|
---|
29 | #endif /* ECLIPSE_UTIL_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.