* <!-- description --> * @brief Outputs a string to the console * * <!-- inputs/outputs --> * @param str the string to output */
| 269 | * @param str the string to output |
| 270 | */ |
| 271 | static inline void |
| 272 | bferror(char const *const str) |
| 273 | { |
| 274 | serial_write("[BAREFLANK ERROR] "); |
| 275 | serial_write(str); |
| 276 | serial_write("\n"); |
| 277 | |
| 278 | DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[BAREFLANK ERROR] %s", str); |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * <!-- description --> |
no test coverage detected