You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
552 B
38 lines
552 B
/*
|
|
* Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef _VERSION_COMP_H
|
|
#define _VERSION_COMP_H
|
|
|
|
/*
|
|
* Function prototypes.
|
|
*/
|
|
int JLI_ExactVersionId(const char *id1, char *id2);
|
|
int JLI_PrefixVersionId(const char *id1, char *id2);
|
|
int JLI_AcceptableRelease(const char *release, char *version_string);
|
|
int JLI_ValidVersionString(char *version_string);
|
|
|
|
#endif /* _VERSION_COMP_H */
|