Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nextEntryOffset (0.15 sec)

  1. src/internal/syscall/windows/syscall_windows.go

    //sys	ProcessPrng(buf []byte) (err error) = bcryptprimitives.ProcessPrng
    
    type FILE_ID_BOTH_DIR_INFO struct {
    	NextEntryOffset uint32
    	FileIndex       uint32
    	CreationTime    syscall.Filetime
    	LastAccessTime  syscall.Filetime
    	LastWriteTime   syscall.Filetime
    	ChangeTime      syscall.Filetime
    	EndOfFile       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    }
    
    type Overlapped struct {
    	Internal     uintptr
    	InternalHigh uintptr
    	Offset       uint32
    	OffsetHigh   uint32
    	HEvent       Handle
    }
    
    type FileNotifyInformation struct {
    	NextEntryOffset uint32
    	Action          uint32
    	FileNameLength  uint32
    	FileName        uint16
    }
    
    type Filetime struct {
    	LowDateTime  uint32
    	HighDateTime uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top