Toolbox.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Copyright (C) 2023 Eric Helgeson
  3. *
  4. * This file is part of BlueSCSI
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. **/
  19. #pragma once
  20. #define MAX_MAC_PATH 32
  21. #define CD_IMG_DIR "CD%d"
  22. #define TOOLBOX_LIST_FILES 0xD0
  23. #define TOOLBOX_GET_FILE 0xD1
  24. #define TOOLBOX_COUNT_FILES 0xD2
  25. #define TOOLBOX_SEND_FILE_PREP 0xD3
  26. #define TOOLBOX_SEND_FILE_10 0xD4
  27. #define TOOLBOX_SEND_FILE_END 0xD5
  28. #define TOOLBOX_TOGGLE_DEBUG 0xD6
  29. #define TOOLBOX_LIST_CDS 0xD7
  30. #define TOOLBOX_SET_NEXT_CD 0xD8
  31. #define TOOLBOX_LIST_DEVICES 0xD9
  32. #define TOOLBOX_COUNT_CDS 0xDA
  33. #define OPEN_RETRO_SCSI_TOO_MANY_FILES 0x0001