[BACK]Return to miscf.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/miscf.c between version 1.23 and 1.24

version 1.23, 2004/03/11 09:53:34 version 1.24, 2004/10/27 08:21:47
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.22 2004/03/11 09:52:56 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.23 2004/03/11 09:53:34 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 59 
Line 59 
 #include <windows.h>  #include <windows.h>
 #endif  #endif
   
   void Pset_secure_mode();
   void Pset_secure_flag();
 void Pquit(), Pdebug(), Pnmono(), Pnez(), Popt(), Pshell(), Pheap();  void Pquit(), Pdebug(), Pnmono(), Pnez(), Popt(), Pshell(), Pheap();
 void Ptoplevel();  void Ptoplevel();
 void Perror(), Perror3(), Pversion(), Pcopyright(), Pflist(), Pdelete_history(), Ppause(), Pxpause();  void Perror(), Perror3(), Pversion(), Pcopyright(), Pflist(), Pdelete_history(), Ppause(), Pxpause();
Line 77  void Ptest();
Line 79  void Ptest();
 void delete_history(int,int);  void delete_history(int,int);
   
 struct ftab misc_tab[] = {  struct ftab misc_tab[] = {
           {"set_secure_mode",Pset_secure_mode,-1},
           {"set_secure_flag",Pset_secure_flag,-2},
         {"module_list",Pmodule_list,0},          {"module_list",Pmodule_list,0},
         {"remove_module",Premove_module,1},          {"remove_module",Premove_module,1},
         {"module_definedp",Pmodule_definedp,1},          {"module_definedp",Pmodule_definedp,1},
Line 113  struct ftab misc_tab[] = {
Line 117  struct ftab misc_tab[] = {
 #endif  #endif
         {0,0,0},          {0,0,0},
 };  };
   
   void Pset_secure_mode(NODE arg,Q *rp)
   {
           int s;
           if ( argc(arg) )
                   setsecuremode(QTOS((Q)ARG0(arg)));
           s = getsecuremode();
           STOQ(s,*rp);
   }
   
   void Pset_secure_flag(NODE arg,Q *rp)
   {
           int ac,s;
   
           ac = argc(arg);
           if ( !ac )
                   error("set_secure_flag : a function name must be specified");
           if ( ac == 2 )
                   s = QTOS((Q)ARG1(arg));
           else
                   s = 1;
           setsecureflag(BDY((STRING)ARG0(arg)),s);
           STOQ(s,*rp);
   }
   
 void Ptest(arg,rp)  void Ptest(arg,rp)
 NODE arg;  NODE arg;

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>