Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/xnpal.cc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.24 by youi, Sat Jan 22 09:24:21 2005 UTC revision 1.25 by youi, Mon Jan 24 01:53:03 2005 UTC
# Line 742  result_t pubmedToZval( const pubmed_t *p Line 742  result_t pubmedToZval( const pubmed_t *p
742   * @return RES_OK   * @return RES_OK
743   *   *
744   */   */
745  result_t itemidsToZval( itemid_t *piid, int len, zval **ppz )  result_t itemidsToZval( const itemid_t *piid, int len, zval **ppz )
746  {  {
747          zend_hash_clean( Z_ARRVAL_PP(ppz) );          zend_hash_clean( Z_ARRVAL_PP(ppz) );
748    
# Line 2623  ZEND_FUNCTION(xnp_dump_item_id) Line 2623  ZEND_FUNCTION(xnp_dump_item_id)
2623          zCriteria_t zcri(zcriteria);          zCriteria_t zcri(zcriteria);
2624          result = zcri.getResult();          result = zcri.getResult();
2625          if ( RES_OK == result ){          if ( RES_OK == result ){
2626                  itemid_t *piids;                  const itemid_t *piids;
2627                  int iidsLen;                  int iidsLen;
2628                  result = dumpItemID( (sessionid_t)sid, &zcri, &piids, &iidsLen );                  result = dumpItemID( (sessionid_t)sid, &zcri, &piids, &iidsLen );
2629                  if ( RES_OK == result ){                  if ( RES_OK == result ){
# Line 2667  ZEND_FUNCTION(xnp_get_item_id_by_binder_ Line 2667  ZEND_FUNCTION(xnp_get_item_id_by_binder_
2667          zCriteria_t zcri(zcriteria);          zCriteria_t zcri(zcriteria);
2668          result = zcri.getResult();          result = zcri.getResult();
2669          if ( RES_OK == result ){          if ( RES_OK == result ){
2670                  itemid_t *pitemids;                  const itemid_t *pitemids;
2671                  int itemidLen;                  int itemidLen;
2672                  result = getItemIDByBinderID( (sessionid_t)sid, iid, &zcri, &pitemids, &itemidLen );                  result = getItemIDByBinderID( (sessionid_t)sid, iid, &zcri, &pitemids, &itemidLen );
2673                  if ( RES_OK == result ){                  if ( RES_OK == result ){
# Line 2713  ZEND_FUNCTION(xnp_get_item_id_by_index_i Line 2713  ZEND_FUNCTION(xnp_get_item_id_by_index_i
2713          zCriteria_t zcri(zcriteria);          zCriteria_t zcri(zcriteria);
2714          result = zcri.getResult();          result = zcri.getResult();
2715          if ( RES_OK == result ){          if ( RES_OK == result ){
2716                  itemid_t *pitemids;                  const itemid_t *pitemids;
2717                  int itemidLen;                  int itemidLen;
2718                  result = getItemIDByIndexID( (sessionid_t)sid, xid, &zcri, &pitemids, &itemidLen );                  result = getItemIDByIndexID( (sessionid_t)sid, xid, &zcri, &pitemids, &itemidLen );
2719                  if ( RES_OK == result ){                  if ( RES_OK == result ){

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26