Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ZeroDivisionException (0.15 sec)

  1. src/runtime/testdata/testprog/syscall_windows.go

    package main
    
    import (
    	"internal/syscall/windows"
    	"runtime"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    func init() {
    	register("RaiseException", RaiseException)
    	register("ZeroDivisionException", ZeroDivisionException)
    	register("StackMemory", StackMemory)
    }
    
    func RaiseException() {
    	const EXCEPTION_NONCONTINUABLE = 1
    	mod := syscall.MustLoadDLL("kernel32.dll")
    	proc := mod.MustFindProc("RaiseException")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top