Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readUnsignedInt (0.69 sec)

  1. src/main/java/jcifs/pac/PacDataInputStream.java

        }
    
    
        public long readUnsignedInt () throws IOException {
            return ( readInt() ) & 0xffffffffL;
        }
    
    
        public int readUnsignedShort () throws IOException {
            return ( readShort() ) & 0xffff;
        }
    
    
        public Date readFiletime () throws IOException {
            Date date = null;
    
            long last = readUnsignedInt();
            long first = readUnsignedInt();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 21 21:19:58 GMT 2018
    - 5.1K bytes
    - Viewed (0)
Back to top