Indirect the native pointer as a pointer to wchar_t . This is equivalent to the expression ((wchar_t )((char )Pointer + offset)) . @param offset offset from pointer to perform the indirection @return the wchar_t value being pointed to
(long offset)
| 553 | * @return the <code>wchar_t</code> value being pointed to |
| 554 | */ |
| 555 | public char getChar(long offset) { |
| 556 | return Native.getChar(this, this.peer, offset); |
| 557 | } |
| 558 | |
| 559 | /** |
| 560 | * Indirect the native pointer as a pointer to <code>short</code>. This is |