Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unicode_string (0.16 sec)

  1. src/main/java/jcifs/smb1/dcerpc/UnicodeString.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.dcerpc;
    
    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
        public UnicodeString(boolean zterm) {
            this.zterm = zterm;
        }
        public UnicodeString(rpc.unicode_string rus, boolean zterm) {
            this.length = rus.length;
            this.maximum_length = rus.maximum_length;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/UnicodeString.java

     */
    
    package jcifs.dcerpc;
    
    
    /**
     * Unicode string type wrapper
     * 
     */
    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
    
        /**
         * 
         * @param zterm
         *            whether the string should be zero terminated
         */
        public UnicodeString ( boolean zterm ) {
            this.zterm = zterm;
        }
    
    
        /**
         * 
         * @param rus
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
Back to top