1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

[238773] Rev up RAPI version numbers

This commit is contained in:
Martin Oberhuber 2008-06-30 14:48:58 +00:00
parent 5828c808a0
commit b49dcc82a3
4 changed files with 4 additions and 3 deletions

View file

@ -386,7 +386,7 @@
<feature url="features/org.eclipse.rse.useractions_1.1.0.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.0.qualifier">
<category name="TM and RSE 3.0.1"/>
</feature>
<feature url="features/org.eclipse.rse.wince_0.1.1.qualifier.jar" id="org.eclipse.rse.wince" version="0.1.1.qualifier" os="win32" arch="x86">
<feature url="features/org.eclipse.rse.wince_0.2.0.qualifier.jar" id="org.eclipse.rse.wince" version="0.2.0.qualifier" os="win32" arch="x86">
<category name="TM and RSE 3.0.1"/>
</feature>
<feature url="features/org.eclipse.tm.discovery_3.0.0.qualifier.jar" id="org.eclipse.tm.discovery" version="3.0.0.qualifier">

View file

@ -2,7 +2,7 @@
<feature
id="org.eclipse.rse.wince"
label="%featureName"
version="0.1.1.qualifier"
version="0.2.0.qualifier"
provider-name="%providerName"
plugin="org.eclipse.rse.subsystems.wince"
image="eclipse_update_120.jpg">

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.tm.rapi
Bundle-Version: 0.1.0.qualifier
Bundle-Version: 0.2.0.qualifier
Eclipse-PlatformFilter: (& (osgi.os=win32) (osgi.arch=x86))
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -292,6 +292,7 @@ public abstract class IRapiSession extends IUnknown {
* @return byte array returned from the native function; the length and the content of the returned array
* corresponds to <code>*outLen</code> and <code>*out</code> respectively
* @throws RapiException if an error occurs.
* @since org.eclipse.tm.rapi 0.2
*/
public abstract byte[] invoke(String dllPath, String funcName, byte[] input) throws RapiException;
}