| 12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * Copyright (C) 2023 Eric Helgeson
- *
- * This file is part of BlueSCSI
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- **/
- #pragma once
- #define MAX_MAC_PATH 32
- #define CD_IMG_DIR "CD%d"
- #define TOOLBOX_LIST_FILES 0xD0
- #define TOOLBOX_GET_FILE 0xD1
- #define TOOLBOX_COUNT_FILES 0xD2
- #define TOOLBOX_SEND_FILE_PREP 0xD3
- #define TOOLBOX_SEND_FILE_10 0xD4
- #define TOOLBOX_SEND_FILE_END 0xD5
- #define TOOLBOX_TOGGLE_DEBUG 0xD6
- #define TOOLBOX_LIST_CDS 0xD7
- #define TOOLBOX_SET_NEXT_CD 0xD8
- #define TOOLBOX_LIST_DEVICES 0xD9
- #define TOOLBOX_COUNT_CDS 0xDA
- #define OPEN_RETRO_SCSI_TOO_MANY_FILES 0x0001
|