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

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

using namespace mailcore;

#define nativeType IMAPMessageRenderingOperation
#define javaType nativeType

JNIEXPORT jstring JNICALL Java_com_libmailcore_IMAPMessageRenderingOperation_result
  (JNIEnv * env, jobject obj)
{
    return MC_JAVA_BRIDGE_GET_STRING(result);
}

MC_JAVA_BRIDGE