Post Reply 
How to make cas-mode program visible when choosing from program library
07-26-2019, 06:01 AM (This post was last modified: 07-26-2019 06:02 AM by Han.)
Post: #5
RE: How to make cas-mode program visible when choosing from program library
Just create a wrapper as suggested by Cyrille. Create your CAS program with using whatever program name you want and just add an 'h' in front for a HOME program that calls your CAS program. Example:

Code:
#cas
BEGIN CASPRG():=
  return(2-1);
END;
#end;


EXPORT hCASPRG()
BEGIN
  CASPRG();
END;

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How to make cas-mode program visible when choosing from program library - Han - 07-26-2019 06:01 AM



User(s) browsing this thread: 1 Guest(s)