void cdecl main(int argc,char **argv)  {
   int         rc;
   rc=VioGlobalReg("GVIOSPY","VIOSERVICE",
                   VR_VIOWRTNCHAR | VR_VIOWRTNATTR | VR_VIOWRTNCELL | VR_VIOWRTTTY |
                   VR_VIOWRTCHARSTR | VR_VIOWRTCHARSTRATT | VR_VIOWRTCELLSTR |
                   VR_VIOSCROLLUP | VR_VIOSCROLLDN | VR_VIOSCROLLLF | VR_VIOSCROLLRT |
                   VR_VIOSETCURPOS | VR_VIOSHOWBUF
                   ,
                   0L,0L);
   if (rc!=0) {
      printf("Register Failed rc=%d\n",rc);
      exit(rc);
      return;
   } else DosBeep(400,50);
}
示例#2
0
文件: wrap.c 项目: ErisBlastar/osfree
USHORT __pascal VIOGLOBALREG(const PSZ pszModName, const PSZ pszEntryName, const ULONG flFun1, const ULONG flFun2, const USHORT usReturn)
{
  return VioGlobalReg(pszModName, pszEntryName, flFun1, flFun2, usReturn);
}