mmu2_error_converter.h 179 B

12345678
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stddef.h>
  4. namespace MMU2 {
  5. const uint16_t MMUErrorCodeIndex(uint16_t ec);
  6. void TranslateErr(uint16_t ec, char *dst, size_t dstSize);
  7. }