aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/native/com_libmailcore_IMAPFetchNamespaceOperation.cpp
blob: c2ad0091b526e04d7082e9e1c8e0dbc11a846c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "com_libmailcore_IMAPFetchNamespaceOperation.h"

#include "MCBaseTypes.h"
#include "JavaHandle.h"
#include "TypesUtils.h"
#include "MCIMAPFetchNamespaceOperation.h"

using namespace mailcore;

#define nativeType IMAPFetchNamespaceOperation
#define javaType nativeType

JNIEXPORT jobject JNICALL Java_com_libmailcore_IMAPFetchNamespaceOperation_namespaces
  (JNIEnv * env, jobject obj)
{
    return MC_JAVA_BRIDGE_GET(namespaces);
}

MC_JAVA_BRIDGE