TPSVCINFO

    今天看后台服务代码时,在PC文件中总是发现TPSVCINFO这个结构体
查了一下发现是Tuxedo定义的。其成员如下所示

  struct   TPSVCINFO{  
    char name[32];    //Name of service invoked.  
    long flags;       //Transaction and reply status.  
    char *data;       //The contents of the inpubuffer.  
    long len;         //The length of the input buffer.  
    int cd;           //Not used presently.  
    long appkey;      //Application-dependent security code.  
  }

你可能感兴趣的:(C++,c,Security,C#)