diff options
| author | Rebellion Developments <rebellion@nomail> | 2000-03-16 11:25:00 +0100 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-19 05:45:17 +0200 |
| commit | 218ca90543758a20ac326e444ca0643174ca7384 (patch) | |
| tree | 16bfe3e5307f9f515489000f28728224291a0e3b /3dc/win95/list_tem.cpp | |
Import Aliens vs Predator - Gold (Build 116)
Source code release, imported from:
https://www.gamefront.com/games/aliens-vs-predator-3/file/avp-gold-complete-source-code
All text files were converted to Unix format.
Diffstat (limited to '3dc/win95/list_tem.cpp')
| -rw-r--r-- | 3dc/win95/list_tem.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3dc/win95/list_tem.cpp b/3dc/win95/list_tem.cpp new file mode 100644 index 0000000..08ead10 --- /dev/null +++ b/3dc/win95/list_tem.cpp @@ -0,0 +1,28 @@ +#ifdef NDEBUG +; +#else + +char const * list_fail_get_data_from_sentinel = "%s: Tried to get data from sentinel\n"; +char const * list_fail_add_entry_after = "%s: Tried to add after a nonexistent List entry\n"; +char const * list_fail_add_entry_before = "%s: Tried to add before a nonexistent List entry\n"; +char const * list_fail_delete_entry = "%s: Tried to delete a nonexistent List entry\n"; +char const * list_fail_delete_entry_by_pointer = "%s: Tried to delete-by-pointer the sentinel of a list.\n"; +char const * list_fail_alter_entry = "%s: Tried to alter a nonexistent List entry\n"; +char const * list_fail_next_entry_nonexist = "%s: Tried to get entry after nonexistent entry."; +char const * list_fail_next_entry_sentinel = "%s: Tried to get next entry, which is sentinel."; +char const * list_fail_prev_entry_nonexist = "%s: Tried to get entry before nonexistent entry"; +char const * list_fail_prev_entry_sentinel = "%s: Tried to get previous entry, which is sentinel."; +char const * list_fail_last_entry = "%s: Tried to get last entry from a 0-length list.\n."; +char const * list_fail_first_entry = "%s: Tried to get first entry from a 0-length list.\n."; +char const * list_fail_similar_entry = "%s: Tried to get entry similar to nonexistent entry"; +char const * list_fail_delete_last_entry = "%s: Tried to delete last element from an empty List.\n"; +char const * list_fail_delete_first_entry = "%s: Tried to delete first element from an empty List.\n"; +char const * list_fail_operator = "%s: Tried to get entry %d from %d-entry list.\n"; +char const * lit_fail_next = "%s: Tried to take an Iterator past the sentinel of a List.\n"; +char const * lit_fail_operator = "%s: Tried to take contents of sentinel of List\n"; +char const * lit_fail_delete_current = "%s: Tried to delete sentinel of List\n"; +char const * lit_fail_change_current = "%s: Tried to change contents of sentinel of List\n"; + +#endif + + |
