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 sa...@apache.org on 2005/09/26 10:01:57 UTC

svn commit: r291580 - in /webservices/axis2/trunk/c/xdocs: ./ developer_guide.html

Author: samisa
Date: Mon Sep 26 01:01:53 2005
New Revision: 291580

URL: http://svn.apache.org/viewcvs?rev=291580&view=rev
Log:
Added documentation folder and initial developer guide

Added:
    webservices/axis2/trunk/c/xdocs/
    webservices/axis2/trunk/c/xdocs/developer_guide.html

Added: webservices/axis2/trunk/c/xdocs/developer_guide.html
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/xdocs/developer_guide.html?rev=291580&view=auto
==============================================================================
--- webservices/axis2/trunk/c/xdocs/developer_guide.html (added)
+++ webservices/axis2/trunk/c/xdocs/developer_guide.html Mon Sep 26 01:01:53 2005
@@ -0,0 +1,12 @@
+Coding Convention
+Header file names should be prefixed with 'axis2c_'
+e.g. axis2c_om_element.h
+
+Header macro definition should be the same as the header file name but in all uppercase. Use _H in place of .h
+e.g. for axis2c_om_element.h AXIS2C_OM_ELEMENT_H
+
+enum members should be prefixed with 'AXIS2C_'
+e.g. AXIS2C_OM_DOCUMENT
+
+struct names should be prefixed with 'axis2c'
+e.g. axis2c_node