WinDLL.java
     1: //========================================================================================
     2: //  WinDLL.java
     3: //    en:Windows DLL
     4: //    ja:Windows DLL
     5: //  Copyright (C) 2003-2023 Makoto Kamada
     6: //
     7: //  This file is part of the XEiJ (X68000 Emulator in Java).
     8: //  You can use, modify and redistribute the XEiJ if the conditions are met.
     9: //  Read the XEiJ License for more details.
    10: //  https://stdkmd.net/xeij/
    11: //========================================================================================
    12: 
    13: package xeij;
    14: 
    15: public final class WinDLL {
    16: 
    17:   public static native int version ();
    18: 
    19: }