|
Last change
on this file since 1389 was 1389, checked in by bird, 22 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
660 bytes
|
| Line | |
|---|
| 1 | // natIntBufferImpl.cc
|
|---|
| 2 |
|
|---|
| 3 | /* Copyright (C) 2002, 2003 Free Software Foundation
|
|---|
| 4 |
|
|---|
| 5 | This file is part of libgcj.
|
|---|
| 6 |
|
|---|
| 7 | This software is copyrighted work licensed under the terms of the
|
|---|
| 8 | Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|---|
| 9 | details. */
|
|---|
| 10 |
|
|---|
| 11 | #include <config.h>
|
|---|
| 12 |
|
|---|
| 13 | #include <gcj/cni.h>
|
|---|
| 14 | #include <jvm.h>
|
|---|
| 15 |
|
|---|
| 16 | #include <gnu/java/nio/IntBufferImpl.h>
|
|---|
| 17 |
|
|---|
| 18 | JArray<jint>*
|
|---|
| 19 | gnu::java::nio::IntBufferImpl::nio_cast(JArray<jbyte>*)
|
|---|
| 20 | {
|
|---|
| 21 | return NULL;
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | void
|
|---|
| 25 | gnu::java::nio::IntBufferImpl::nio_put_Byte(gnu::java::nio::IntBufferImpl*, jint, jint, jbyte)
|
|---|
| 26 | {
|
|---|
| 27 | }
|
|---|
| 28 |
|
|---|
| 29 | jbyte
|
|---|
| 30 | gnu::java::nio::IntBufferImpl::nio_get_Byte(gnu::java::nio::IntBufferImpl*, jint, jint)
|
|---|
| 31 | {
|
|---|
| 32 | return 0;
|
|---|
| 33 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.