aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/native/com_libmailcore_IMAPMessageRenderingOperation.cpp
blob: e841943d1a67a9d6d59bb161891eeeaf92f59dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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)
{
    MC_POOL_BEGIN;
    jstring result = MC_JAVA_BRIDGE_GET_STRING(result);
    MC_POOL_END;
    return result;
}

MC_JAVA_BRIDGE