View previous topic :: View next topic |
Author |
Message |
issac1029 Intermediate

Joined: 10 Dec 2005 Posts: 159 Topics: 75
|
Posted: Sun Mar 12, 2006 9:57 pm Post subject: how to define alias? |
|
|
I encount a error
Quote: | 'EW2456E SYMBOL symbol UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE DESIGNATED CALL LIBRARY. '] |
and
Quote: | 'User Action: Make the indicated missing entry available to the Binder or
correct the reference. In order to make the entry
available to the Binder, you can:
-add the member to SYSLIB
-add an alias of that name to an existing member
-INCLUDE a module which contains the missing entry
-provide a LIBRARY control statement to direct the
Binder to a different library during autocall
-correct the source of the INCLUDE error ' |
To solve this problem I want to add an alias of that name to an existing member ,how to do that? [/code] |
|
Back to top |
|
 |
bauer Intermediate
Joined: 10 Oct 2003 Posts: 317 Topics: 50 Location: Germany
|
Posted: Mon Mar 13, 2006 2:59 am Post subject: |
|
|
Hi issac1029,
add
to your linkage editor sysin.
See manual sc26-4564-01
regrads,
bauer |
|
Back to top |
|
 |
issac1029 Intermediate

Joined: 10 Dec 2005 Posts: 159 Topics: 75
|
Posted: Mon Mar 13, 2006 3:56 am Post subject: |
|
|
Hi bauer,
That means I link-edit with ALIAS myalias for program A,then when I compile program B ,I can '-add an alias of that name to an existing member ',am I right about that?
Thanks |
|
Back to top |
|
 |
bauer Intermediate
Joined: 10 Oct 2003 Posts: 317 Topics: 50 Location: Germany
|
Posted: Mon Mar 13, 2006 6:15 am Post subject: |
|
|
I'm not sure I understand your question.
If you compile program A and linkedit it with alias B you will find on your object lib member A with alias name B.
But using alias names means only alias NAMES for your modul. If you like to create alias ENTRYs (two names for same part of objectcode), you have to add this entrys to your code.
bauer |
|
Back to top |
|
 |
issac1029 Intermediate

Joined: 10 Dec 2005 Posts: 159 Topics: 75
|
Posted: Mon Mar 13, 2006 7:23 am Post subject: |
|
|
Thanks bauer~ |
|
Back to top |
|
 |
|
|