Simulation Core
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

17 行
467 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