Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for timeEndPeriod (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // Windows Multimedia API
    //sys TimeBeginPeriod (period uint32) (err error) [failretval != 0] = winmm.timeBeginPeriod
    //sys TimeEndPeriod (period uint32) (err error) [failretval != 0] = winmm.timeEndPeriod
    
    // syscall interface implementation for other packages
    
    // GetCurrentProcess returns the handle for the current process.
    // It is a pseudo handle that does not need to be closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    			throw("winmm.dll not found")
    		}
    		_timeBeginPeriod = windowsFindfunc(m32, []byte("timeBeginPeriod\000"))
    		_timeEndPeriod = windowsFindfunc(m32, []byte("timeEndPeriod\000"))
    		if _timeBeginPeriod == nil || _timeEndPeriod == nil {
    			print("runtime: GetProcAddress failed; errno=", getlasterror(), "\n")
    			throw("timeBegin/EndPeriod not found")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	proctimeBeginPeriod                                      = modwinmm.NewProc("timeBeginPeriod")
    	proctimeEndPeriod                                        = modwinmm.NewProc("timeEndPeriod")
    	procWinVerifyTrustEx                                     = modwintrust.NewProc("WinVerifyTrustEx")
    	procFreeAddrInfoW                                        = modws2_32.NewProc("FreeAddrInfoW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top