Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7dc1aedf8fbdc023dfa11416b0eb6c98f365b780 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2007, 2017 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     LinuxPasswordProviderMessages.java
 *******************************************************************************/
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class LinuxPasswordProvider */

#ifndef _Included_LinuxPasswordProvider
#define _Included_LinuxPasswordProvider
#ifdef __cplusplus
extern "C" {
#endif

/*
 * Class:     LinuxPasswordProvider
 * Method:    getMasterPassword
 * Signature: ()Ljava/lang/String;
 */
JNIEXPORT jstring JNICALL Java_org_eclipse_equinox_internal_security_linux_LinuxPasswordProvider_getMasterPassword
  (JNIEnv *, jobject);

/*
 * Class:     LinuxPasswordProvider
 * Method:    saveMasterPassword
 * Signature: (Ljava/lang/String;)V
 */
JNIEXPORT void JNICALL Java_org_eclipse_equinox_internal_security_linux_LinuxPasswordProvider_saveMasterPassword
  (JNIEnv *, jobject, jstring);

#ifdef __cplusplus
}
#endif
#endif

Back to the top