Simulation Core
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

17 行
451 B

  1. module CQuery
  2. implicit none
  3. public GetCurrentProcessorNumber
  4. interface
  5. function GetCurrentProcessorNumber() bind(C,Name='GetCurrentProcessorNumber')
  6. use ifwinty
  7. implicit none
  8. !DEC$ ATTRIBUTES STDCALL :: GetCurrentProcessorNumber
  9. integer(DWORD) :: GetCurrentProcessorNumber
  10. end function GetCurrentProcessorNumber
  11. end interface
  12. contains
  13. end module CQuery