DeviceFileTypes.h 287 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/DistinctNumeric.h>
  8. namespace Kernel {
  9. AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MajorNumber);
  10. AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MinorNumber);
  11. }