- 论坛徽章:
- 0
|
问题描述:
在4gl程序中调用一下c函数 。在4gl中如果不加 display "" at 12,5 程序能正常执行,一旦加上 display "" at 12,5 光标就在 12行5 列闪动,输入密码无任何反映。
环境:
操作系统:AIX 5.3
online :9.4
c4gl :7.32
4gl程序如下:
database test11
main
define p_pwd char(13)
let p_pwd = ''
display "" at 12,5
let p_pwd = get_pwd("请输入新口令:")
display "sdfsdf:", p_pwd
end main
C程序如下:
#include <stdio.h>
#include <sys/types.h>
#include <fglsys.h>
get_pwd(n)
int n;
{
int i = 0;
char c_print[40];
popquote(c_print, 40);
for (i=0 ; c_print!=' ' && i<39; i++);
c_print='\0';
strcpy(c_print,crypt(strcpy(c_print,getpass(c_print)),"cs"));
retquote(c_print);
return(1);
} |
|