OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

sca-c-cpp message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: NEW ISSUE: Minor C API changes



Target: C C&I Specification (CD03 Rev 2)

Description:
While working on the test cases for the C API, I noticed an error and some signatures that could be improved.  Specifically

void SCAPropertyStruct(wchar_t *propertyName,
                           void **value,                                                  <- should be a single level pointer:  void *value
                           int *compCode,
                           int *reason);

void SCAGetReplyMessage(SCAREF token,
                        int *bufferLen,
                        char *buffer,                                                    <- should be a void *
                        int *compCode,
                        int *reason);

void SCAGetFaultMessage(SCAREF token,
                        int *bufferLen,
                        wchar_t **faultName,
                        char *buffer,                                                    <- should be a void *
                        int *compCode,
                        int *reason);

void SCASetFaultMessage(wchar_t *serviceName,
                        wchar_t *operationName,
                        wchar_t *faultName,
                        int bufferLen,
                        char *buffer,                                                    <- should be a void *
                        int *compCode,
                        int *reason);

Proposal:
See above

Bryan Aupperle, Ph.D.
STSM, WebSphere Enterprise Platform Software Solution Architect

Research Triangle Park,  NC
+1 919-254-7508 (T/L 444-7508)
Internet Address: aupperle@us.ibm.com


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]