Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4236582
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T02:39:35+00:00 2026-05-21T02:39:35+00:00

I was going through JNI tutorial and I came across below line in generated

  • 0

I was going through JNI tutorial and I came across below line in generated header file.

JNIEXPORT jbyteArray JNICALL Java_ReadFile_loadFile
(JNIEnv *, jobject, jstring);

I can understand the meaning of jbyteArray, JNIEnv, jobject and jstring.These are required to pass information to and from c program. But I was not able to understand why are JNIEXPORT and JNICALL are used. And what are these termed as in c program(function, Structure, Enum – I regret if this question is very trivial)? Any help is appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T02:39:36+00:00Added an answer on May 21, 2026 at 2:39 am

    JNIEXPORT and JNICALL are macros used
    to specify the calling and linkage
    convention of both JNI functions and
    native method implementations.

    See here section 12.4

    For example, in my jvm (Ubuntu 32bit), the header file jni_md.h contains:

    #define JNIEXPORT 
    #define JNIIMPORT
    #define JNICALL
    

    Which will make your function look like:
    jbyteArray Java_ReadFile_loadFile
    (JNIEnv *, jobject, jstring);

    While win32 jni_md.h contains:

    #define JNIEXPORT __declspec(dllexport)
    #define JNICALL __stdcall
    

    Since windows use different calling conventions and your function will look like:

    __declspec(dllexport) jbyteArray __stdcall Java_ReadFile_loadFile
    (JNIEnv *, jobject, jstring);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

While going through a Zend tutorial , I came across the following statement: Note
Going through the Symblog tutorial of Symfony2, While creating forms I came to a
Going through a tutorial for android (related to multithreading, loopers and handlers), i came
While going through the exercises, I came across something that, even after research, I
While going through some C code having inline assembly I came across the .byte
Was going through the Filezilla source code and came to this line: int systemFolders[3]
Going through some documentation on modifying CGImageRef data, I came across a strange example
Going through EASTL, I stumbled across a peculiar line of code. The following link
While going through Effective C++ (by Scott Meyers), I came across the following code
When going through the underscore.js library, i came across for (var i = 0,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.