+ Warning for possible library overloading

git-svn-id: trunk@17803 -
This commit is contained in:
pierre 2011-06-23 08:28:49 +00:00
parent 965b57d7b8
commit f220513821
3 changed files with 314 additions and 304 deletions

View File

@ -1754,7 +1754,7 @@ type_e_record_helper_must_extend_same_record=04102_E_Derived record helper must
#
# Symtable
#
# 05080 is the last used one
# 05084 is the last used one
#
% \section{Symbol handling}
% This section lists all the messages that concern the handling of symbols.
@ -1998,6 +1998,12 @@ sym_e_external_class_name_mismatch2=05083_E_Complete class definition with exter
% When a class is declared using a formal external definition, the actual external
% definition (if any) must specify the same external name as the formal definition
% (since both definitions refer to the same actual class type).
sym_w_library_overload=05084_W_Possible library conflict: symbol "$1" from library "$2" also found in library "$3"
% Some OS do not have library specific namespaces, for those
% OS, the function declared as "external 'libname' name 'funcname'",
% the 'libname' part is only a hint, funcname might also be loaded
% by another library. This warning appears if 'funcname' is used twice
% with two different library names.
%
% \end{description}
#

View File

@ -563,6 +563,7 @@ const
sym_e_interprocgoto_into_init_final_code_not_allowed=05081;
sym_e_external_class_name_mismatch1=05082;
sym_e_external_class_name_mismatch2=05083;
sym_w_library_overload=05084;
cg_e_parasize_too_big=06009;
cg_e_file_must_call_by_reference=06012;
cg_e_cant_use_far_pointer_there=06013;
@ -894,9 +895,9 @@ const
option_info=11024;
option_help_pages=11025;
MsgTxtSize = 60250;
MsgTxtSize = 60342;
MsgIdxMax : array[1..20] of longint=(
24,89,311,103,84,54,111,23,202,63,
24,89,311,103,85,54,111,23,202,63,
49,20,1,1,1,1,1,1,1,1
);

File diff suppressed because it is too large Load Diff