Added support for new C_insertpart, C_beginpart, C_endpart functions
This commit is contained in:
parent
93c04d3389
commit
b5f657aba6
|
@ -2,7 +2,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern char *extnd_name(), *extnd_dnam(), *extnd_dlb(), *extnd_ilb(),
|
extern char *extnd_name(), *extnd_dnam(), *extnd_dlb(), *extnd_ilb(),
|
||||||
*extnd_hol(), *extnd_ext(), *extnd_pro(), *extnd_start();
|
*extnd_hol(), *extnd_ext(), *extnd_pro(), *extnd_start(),
|
||||||
|
*extnd_part(), *extnd_cont();
|
||||||
extern holno, procno;
|
extern holno, procno;
|
||||||
|
|
||||||
#include "data.h"
|
#include "data.h"
|
||||||
|
|
|
@ -76,3 +76,21 @@ int hol;
|
||||||
index_symbol_table = find_sym( string, STORE_STRING);
|
index_symbol_table = find_sym( string, STORE_STRING);
|
||||||
return( symbol_table[ index_symbol_table].on_foff + string_area);
|
return( symbol_table[ index_symbol_table].on_foff + string_area);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
char *extnd_part( d)
|
||||||
|
int d;
|
||||||
|
{
|
||||||
|
string_lengte = mysprint( "part%x", d);
|
||||||
|
index_symbol_table = find_sym( string, STORE_STRING);
|
||||||
|
return( symbol_table[ index_symbol_table].on_foff + string_area);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
char *extnd_cont( d)
|
||||||
|
int d;
|
||||||
|
{
|
||||||
|
string_lengte = mysprint( "cont%x", d);
|
||||||
|
index_symbol_table = find_sym( string, STORE_STRING);
|
||||||
|
return( symbol_table[ index_symbol_table].on_foff + string_area);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue