diff options
Diffstat (limited to 'plugins/windows/src/native/winutil.h')
-rw-r--r-- | plugins/windows/src/native/winutil.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/windows/src/native/winutil.h b/plugins/windows/src/native/winutil.h new file mode 100644 index 0000000..169280e --- /dev/null +++ b/plugins/windows/src/native/winutil.h @@ -0,0 +1,17 @@ +/* + * %W% %E% + * + * Copyright 2002 Sun Microsystems, Inc. All rights reserved. + * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + */ + +#ifndef _WINUTIL_H +#define _WINUTIL_H + +#include <windows.h> +#include <jni.h> + +extern jbyteArray wrapGUID(JNIEnv *env, const GUID *guid); +extern void unwrapGUID(JNIEnv *env, const jobjectArray byte_array, GUID *guid); + +#endif |