version 1.22, 2004/03/11 09:52:56 |
version 1.24, 2004/10/27 08:21:47 |
|
|
* 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.21 2004/02/25 06:43:52 ohara 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" |
|
|
#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(); |
|
|
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 105 struct ftab misc_tab[] = { |
|
Line 109 struct ftab misc_tab[] = { |
|
{"hex_dump",Phex_dump,2}, |
{"hex_dump",Phex_dump,2}, |
{"peek",Ppeek,1}, |
{"peek",Ppeek,1}, |
{"poke",Ppoke,2}, |
{"poke",Ppoke,2}, |
{"test",Ptest,2}, |
|
#if !defined(VISUAL) && defined(DO_PLOT) |
#if !defined(VISUAL) && defined(DO_PLOT) |
{"xpause",Pxpause,0}, |
{"xpause",Pxpause,0}, |
#endif |
#endif |
Line 114 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; |