* Get the feature number related to the window number. * @param window_number The window to get the feature number for. * @return The feature number. */
| 228 | * @return The feature number. |
| 229 | */ |
| 230 | static inline GrfSpecFeature GetFeatureNum(uint window_number) |
| 231 | { |
| 232 | return (GrfSpecFeature)GB(window_number, 24, 8); |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Get the NIFeature related to the window number. |
no test coverage detected