You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/11/26 16:21:38 UTC

DO NOT REPLY [Bug 5090] New: - Missing Function XalanDestroyParsedSource() in C API

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5090>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5090

Missing Function XalanDestroyParsedSource() in C API

           Summary: Missing Function XalanDestroyParsedSource() in C API
           Product: XalanC
           Version: 1.2.x
          Platform: Alpha
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: XalanC
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: bentleyn@gmx.co.uk


The header file for the C API declares XalanDestroyParsedSource(), which is not 
implemented.  Below is the missing function to be inserted into the CPP file:

XALAN_TRANSFORMER_EXPORT_FUNCTION(int)
XalanDestroyParsedSource(
                      XalanPSHandle   thePSHandle,
                      XalanHandle             theXalanHandle)
{
      return getTransformer(theXalanHandle)->destroyParsedSource(getParsedSource
(thePSHandle));
}