1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5bfe5f5a4Stalley  * Common Development and Distribution License (the "License").
6bfe5f5a4Stalley  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21bfe5f5a4Stalley 
22fa9e4066Sahrens /*
23bfe5f5a4Stalley  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24fa9e4066Sahrens  * Use is subject to license terms.
25fa9e4066Sahrens  */
26fa9e4066Sahrens 
27fa9e4066Sahrens #ifndef _LIBZFS_JNI_DATASET_H
28fa9e4066Sahrens #define	_LIBZFS_JNI_DATASET_H
29fa9e4066Sahrens 
30bfe5f5a4Stalley #include <libzfs_jni_util.h>
31bfe5f5a4Stalley #include <libzfs.h>
32bfe5f5a4Stalley 
33fa9e4066Sahrens #ifdef __cplusplus
34fa9e4066Sahrens extern "C" {
35fa9e4066Sahrens #endif
36fa9e4066Sahrens 
37fa9e4066Sahrens /*
38fa9e4066Sahrens  * Types
39fa9e4066Sahrens  */
40fa9e4066Sahrens 
41fa9e4066Sahrens typedef struct zjni_DatasetArrayCallbackData {
42fa9e4066Sahrens 	zjni_ArrayCallbackData_t data;
43fa9e4066Sahrens 	zfs_type_t typemask;
44fa9e4066Sahrens } zjni_DatasetArrayCallbackData_t;
45fa9e4066Sahrens 
46fa9e4066Sahrens /*
47fa9e4066Sahrens  * Function prototypes
48fa9e4066Sahrens  */
49fa9e4066Sahrens 
50fa9e4066Sahrens jobjectArray zjni_get_Datasets_below(JNIEnv *, jstring,
51fa9e4066Sahrens     zfs_type_t, zfs_type_t, char *);
52fa9e4066Sahrens jobjectArray zjni_get_Datasets_dependents(JNIEnv *, jobjectArray);
53fa9e4066Sahrens jobject zjni_get_Dataset(JNIEnv *, jstring, zfs_type_t);
54*32f884e0Stalley int zjni_create_add_Pool(zpool_handle_t *, void *);
55fa9e4066Sahrens int zjni_create_add_Dataset(zfs_handle_t *, void *);
56fa9e4066Sahrens 
57fa9e4066Sahrens #ifdef __cplusplus
58fa9e4066Sahrens }
59fa9e4066Sahrens #endif
60fa9e4066Sahrens 
61fa9e4066Sahrens #endif /* _LIBZFS_JNI_DATASET_H */
62