You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by su...@apache.org on 2003/08/14 07:10:04 UTC

cvs commit: xml-axis/c/src/common Packet.h

susantha    2003/08/13 22:10:04

  Modified:    c/src/common Packet.h
  Log:
  Avoided having to rewrite function prototypes
  
  Revision  Changes    Path
  1.5       +2 -11     xml-axis/c/src/common/Packet.h
  
  Index: Packet.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/Packet.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Packet.h	13 Aug 2003 14:07:19 -0000	1.4
  +++ Packet.h	14 Aug 2003 05:10:04 -0000	1.5
  @@ -73,6 +73,7 @@
   #ifdef __cplusplus
   extern "C"
   {
  +#endif
   	//This function is implemented in axis
   	int initialize_module();
   
  @@ -89,18 +90,8 @@
   
   	//This fucntion should be implemented by module authors
   	int send_transport_information(Ax_soapstream *str);
  +#ifdef __cplusplus
   }
  -
  -#else
  -	int initialize_module();
  -
  -	int process_request(Ax_soapstream *str);
  -
  -	int send_response_bytes(char * res, void* opsteam);
  -
  -	int get_request_bytes(char * req, int reqsize, int* retsize, void* ipstream);
  -
  -	int send_transport_information(Ax_soapstream *str);
   #endif
   
   #endif