You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- module CQuery
- implicit none
- public GetCurrentProcessorNumber
-
- interface
-
- function GetCurrentProcessorNumber() bind(C,Name='GetCurrentProcessorNumber')
- use ifwinty
- implicit none
- !DEC$ ATTRIBUTES STDCALL :: GetCurrentProcessorNumber
- integer(DWORD) :: GetCurrentProcessorNumber
- end function GetCurrentProcessorNumber
-
- end interface
-
- contains
- end module CQuery
|