github.com/megatontech/mynoteforgo@v0.0.0-20200507084910-5d0c6ea6e890/源码/runtime/testdata/testprogcgo/windows/win.go (about)

     1  package windows
     2  
     3  /*
     4  #cgo CFLAGS: -mnop-fun-dllimport
     5  
     6  #include <windows.h>
     7  
     8  DWORD agetthread() {
     9  	return GetCurrentThreadId();
    10  }
    11  */
    12  import "C"
    13  
    14  func GetThread() uint32 {
    15  	return uint32(C.agetthread())
    16  }