< prev index next >

src/hotspot/os/windows/include/jvm_md.h

Move definition to the build system

13  * version 2 for more details (a copy is included in the LICENSE file that                                                 
14  * accompanied this code).                                                                                                 
15  *                                                                                                                         
16  * You should have received a copy of the GNU General Public License version                                               
17  * 2 along with this work; if not, write to the Free Software Foundation,                                                  
18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.                                                           
19  *                                                                                                                         
20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA                                                 
21  * or visit www.oracle.com if you need additional information or have any                                                  
22  * questions.                                                                                                              
23  */                                                                                                                        
24 
25 #ifndef _JAVASOFT_JVM_MD_H_                                                                                                
26 #define _JAVASOFT_JVM_MD_H_                                                                                                
27 
28 /*                                                                                                                         
29  * This file is currently collecting system-specific dregs for the                                                         
30  * JNI conversion, which should be sorted out later.                                                                       
31  */                                                                                                                        
32 
33 #ifndef WIN32_LEAN_AND_MEAN                                                                                                
34 #define WIN32_LEAN_AND_MEAN                                                                                                
35 #endif                                                                                                                     
36                                                                                                                            
37 #include <windows.h>                                                                                                       
38 #include <windef.h>                                                                                                        
39 #include <winbase.h>                                                                                                       
40 
41 #include "jni.h"                                                                                                           
42 
43 typedef int socklen_t;                                                                                                     
44 
45 #define JNI_ONLOAD_SYMBOLS   {"_JNI_OnLoad@8", "JNI_OnLoad"}                                                               
46 #define JNI_ONUNLOAD_SYMBOLS {"_JNI_OnUnload@8", "JNI_OnUnload"}                                                           
47 #define JVM_ONLOAD_SYMBOLS      {"_JVM_OnLoad@12", "JVM_OnLoad"}                                                           
48 #define AGENT_ONLOAD_SYMBOLS    {"_Agent_OnLoad@12", "Agent_OnLoad"}                                                       
49 #define AGENT_ONUNLOAD_SYMBOLS  {"_Agent_OnUnload@4", "Agent_OnUnload"}                                                    
50 #define AGENT_ONATTACH_SYMBOLS  {"_Agent_OnAttach@12", "Agent_OnAttach"}                                                   
51 
52 #define JNI_LIB_PREFIX ""                                                                                                  
53 #define JNI_LIB_SUFFIX ".dll"                                                                                              
54 
55 struct dirent {                                                                                                            

13  * version 2 for more details (a copy is included in the LICENSE file that
14  * accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License version
17  * 2 along with this work; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21  * or visit www.oracle.com if you need additional information or have any
22  * questions.
23  */
24 
25 #ifndef _JAVASOFT_JVM_MD_H_
26 #define _JAVASOFT_JVM_MD_H_
27 
28 /*
29  * This file is currently collecting system-specific dregs for the
30  * JNI conversion, which should be sorted out later.
31  */
32 




33 #include <windows.h>
34 #include <windef.h>
35 #include <winbase.h>
36 
37 #include "jni.h"
38 
39 typedef int socklen_t;
40 
41 #define JNI_ONLOAD_SYMBOLS   {"_JNI_OnLoad@8", "JNI_OnLoad"}
42 #define JNI_ONUNLOAD_SYMBOLS {"_JNI_OnUnload@8", "JNI_OnUnload"}
43 #define JVM_ONLOAD_SYMBOLS      {"_JVM_OnLoad@12", "JVM_OnLoad"}
44 #define AGENT_ONLOAD_SYMBOLS    {"_Agent_OnLoad@12", "Agent_OnLoad"}
45 #define AGENT_ONUNLOAD_SYMBOLS  {"_Agent_OnUnload@4", "Agent_OnUnload"}
46 #define AGENT_ONATTACH_SYMBOLS  {"_Agent_OnAttach@12", "Agent_OnAttach"}
47 
48 #define JNI_LIB_PREFIX ""
49 #define JNI_LIB_SUFFIX ".dll"
50 
51 struct dirent {
< prev index next >