Mercurial > vba-linux
diff src/NLS.h @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/NLS.h Sat Mar 03 10:31:27 2012 -0600 1.3 @@ -0,0 +1,52 @@ 1.4 +#ifndef VBS_NLS_H 1.5 +#define VBA_NLS_H 1.6 + 1.7 +#if _MSC_VER > 1000 1.8 +#pragma once 1.9 +#endif // _MSC_VER > 1000 1.10 + 1.11 +#define N_(String) (String) 1.12 + 1.13 +#define MSG_UNSUPPORTED_VBA_SGM 1 1.14 +#define MSG_CANNOT_LOAD_SGM 2 1.15 +#define MSG_SAVE_GAME_NOT_USING_BIOS 3 1.16 +#define MSG_SAVE_GAME_USING_BIOS 4 1.17 +#define MSG_UNSUPPORTED_SAVE_TYPE 5 1.18 +#define MSG_CANNOT_OPEN_FILE 6 1.19 +#define MSG_BAD_ZIP_FILE 7 1.20 +#define MSG_NO_IMAGE_ON_ZIP 8 1.21 +#define MSG_ERROR_OPENING_IMAGE 9 1.22 +#define MSG_ERROR_READING_IMAGE 10 1.23 +#define MSG_UNSUPPORTED_BIOS_FUNCTION 11 1.24 +#define MSG_INVALID_BIOS_FILE_SIZE 12 1.25 +#define MSG_INVALID_CHEAT_CODE 13 1.26 +#define MSG_UNKNOWN_ARM_OPCODE 14 1.27 +#define MSG_UNKNOWN_THUMB_OPCODE 15 1.28 +#define MSG_ERROR_CREATING_FILE 16 1.29 +#define MSG_FAILED_TO_READ_SGM 17 1.30 +#define MSG_FAILED_TO_READ_RTC 18 1.31 +#define MSG_UNSUPPORTED_VB_SGM 19 1.32 +#define MSG_CANNOT_LOAD_SGM_FOR 20 1.33 +#define MSG_ERROR_OPENING_IMAGE_FROM 21 1.34 +#define MSG_ERROR_READING_IMAGE_FROM 22 1.35 +#define MSG_UNSUPPORTED_ROM_SIZE 23 1.36 +#define MSG_UNSUPPORTED_RAM_SIZE 24 1.37 +#define MSG_UNKNOWN_CARTRIDGE_TYPE 25 1.38 +#define MSG_MAXIMUM_NUMBER_OF_CHEATS 26 1.39 +#define MSG_INVALID_GAMESHARK_CODE 27 1.40 +#define MSG_INVALID_GAMEGENIE_CODE 28 1.41 +#define MSG_INVALID_CHEAT_TO_REMOVE 29 1.42 +#define MSG_INVALID_CHEAT_CODE_ADDRESS 30 1.43 +#define MSG_UNSUPPORTED_CHEAT_LIST_VERSION 31 1.44 +#define MSG_UNSUPPORTED_CHEAT_LIST_TYPE 32 1.45 +#define MSG_INVALID_GSA_CODE 33 1.46 +#define MSG_CANNOT_IMPORT_SNAPSHOT_FOR 34 1.47 +#define MSG_UNSUPPORTED_SNAPSHOT_FILE 35 1.48 +#define MSG_UNSUPPORTED_ARM_MODE 36 1.49 +#define MSG_UNSUPPORTED_CODE_FILE 37 1.50 +#define MSG_GBA_CODE_WARNING 38 1.51 +#define MSG_INVALID_CBA_CODE 39 1.52 +#define MSG_CBA_CODE_WARNING 40 1.53 +#define MSG_OUT_OF_MEMORY 41 1.54 + 1.55 +#endif // VBA_NLS_H