viewrfmins - displays instance caracteristics in MBK and RDS format.
See the file man1/alc_origin.1.
#include "rfmnnn.h"
void viewrfmins( InstanceMbk, InstanceRds )
phins_list ∗InstanceMbk;
rdsins_list ∗InstanceRds;
- InstanceMbk
- MBK instance to visualizate
- InstanceRds
- RDS instance to visualizate
The
viewrfmins function displays caracteristics of an instance in MBK and
RDS format.
nothing
none
#include "mphnnn.h"
#include "mutnnn.h"
#include "rdsnnn.h"
#include "rfmnnn.h"
#include "rtlnnn.h"
typedef struct UserStruct
{
char ∗STRING;
void ∗USER1;
} UserStruct;
main()
{
phfig_list ∗MbkFigure;
phins_list ∗MbkInstance;
rdsfig_list ∗RdsFigure;
rdsins_list ∗RdsInstance;
mbkenv();
rdsenv();
loadrdsparam();
/∗ creates MbkFigure Named "core" ∗/
MbkFigure = addphfig("core");
/∗ adds Mbk instance "n1_y" to MbkFigure named "core" ∗/
MbkInstance = addphins(MbkFigure,"n1_y","inv_1",NOSYM,4,9);
/∗ creates RdsFigure named "core_2" ∗/
RdsFigure = addrdsfig("core_2",sizeof(UserStruct));
/∗ creates RdsInstance with MbkInstance ∗/
RdsInstance = insmbkrds ( RdsFigure, MbkInstance, 'A', 0 );
/∗ views Mbk and Rds Instance ∗/
/∗ ∗/ viewrfmins ( MbkInstance, RdsInstance );
}
librfm, insmbkrds
See the file man1/alc_bug_report.1.