// @(#)dynload.h	3.7 7/28/92

#ifndef ArmySymbols 

#ifdef __GNUG__
#pragma interface
#endif

#define ArmySymbols



typedef char	*(*pfcp)(char *);

pfcp dyn_load(char *ofile, char *function, int dont_load= 0);


// `patch_vtable' patches a vtable. Note that the vtable should
// be copied from the readonly text segment the first time this
// function is called !

int patch_vtable(void *the_object, void *org_vf, void *new_vf,
  int copy_from_ro_segment);

#endif
