This method of the DllLib class copies a number of characters to a Java array from the source indicated by a raw native pointer. The native string is assumed to be in Unicode format.
public static void copyUni(int psrc, char jadst[], int elemidx, int nelems);
psrc | A raw pointer to the source of the copy. |
jadst | The Java array to copy the characters to. |
elemidx | The offset that indicates the location in the Java array where the first character is copied to. |
nelems | The number of characters to copy. |
This method was added as of versions 2437 through 2925 of the Microsoft virtual machine.