version 1.3, 2025/03/09 19:50:47
|
version 1.4, 2025/03/24 04:13:11
|
Line 25
|
Line 25
|
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
* $Log$ |
* $Log$ |
|
* Revision 1.4 2025/03/24 04:13:11 snw |
|
* Replace action macro dat with fra_dat to avoid symbol conflict on OS/2 |
|
* |
* Revision 1.3 2025/03/09 19:50:47 snw |
* Revision 1.3 2025/03/09 19:50:47 snw |
* Second phase of REUSE compliance and header reformat |
* Second phase of REUSE compliance and header reformat |
* |
* |
Line 266 short freem_data(freem_ref_t *ref)
|
Line 269 short freem_data(freem_ref_t *ref)
|
|
|
case MREF_RT_LOCAL: |
case MREF_RT_LOCAL: |
// call into the symbol table |
// call into the symbol table |
symtab (dat, key, result); |
symtab (fra_dat, key, result); |
ref->status = merr (); |
ref->status = merr (); |
break; |
break; |
|
|
case MREF_RT_GLOBAL: |
case MREF_RT_GLOBAL: |
// call into the FreeM global handler; result in &result |
// call into the FreeM global handler; result in &result |
global (dat, key, result); |
global (fra_dat, key, result); |
ref->status = merr (); |
ref->status = merr (); |
break; |
break; |
|
|
case MREF_RT_SSVN: |
case MREF_RT_SSVN: |
// call into the SSVN code |
// call into the SSVN code |
ssvn (dat, key, result); |
ssvn (fra_dat, key, result); |
ref->status = merr (); |
ref->status = merr (); |
break; |
break; |
|
|