| 1 | ###User Defined Function###
|
|---|
| 2 | _WinAPI_IsProcessorFeaturePresent
|
|---|
| 3 |
|
|---|
| 4 | ###Description###
|
|---|
| 5 | Determines whether the specified processor feature is supported by the current computer
|
|---|
| 6 |
|
|---|
| 7 | ###Syntax###
|
|---|
| 8 | #include <WinAPISys.au3>
|
|---|
| 9 | _WinAPI_IsProcessorFeaturePresent ( $iFeature )
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 | ###Parameters###
|
|---|
| 13 | @@ParamTable@@
|
|---|
| 14 | $iFeature
|
|---|
| 15 | The processor feature to be tested. This parameter can be one of the $PF_* constants.
|
|---|
| 16 | @@End@@
|
|---|
| 17 |
|
|---|
| 18 | ###ReturnValue###
|
|---|
| 19 | @@ReturnTable@@
|
|---|
| 20 | True: the feature is supported.
|
|---|
| 21 | False: the feature is not supported.
|
|---|
| 22 | @@End@@
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 | ###Remarks###
|
|---|
| 26 | $PF_* constants require #include <APISysConstants.au3>.
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | ###Related###
|
|---|
| 30 | None.
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 | ###See Also###
|
|---|
| 34 | @@MsdnLink@@ IsProcessorFeaturePresent
|
|---|