github.com/cellofellow/gopkg@v0.0.0-20140722061823-eec0544a62ad/osext/winsvc/winapi/syscall.go (about) 1 // Copyright 2012 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package winapi 6 7 import "syscall" 8 9 const ( 10 STANDARD_RIGHTS_REQUIRED = 0xf0000 11 12 ERROR_SERVICE_SPECIFIC_ERROR syscall.Errno = 1066 13 ) 14 15 //sys GetCurrentThreadId() (id uint32)