Changeset 127

Show
Ignore:
Timestamp:
04/20/09 19:09:00 (3 years ago)
Author:
ol
Message:

Add alist new struct. WFS idgen struct. Add new FE_ERROR_FUNCTION code error report

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/ows/ows.h

    r102 r127  
    7373    unsigned int size; 
    7474} mlist; 
     75 
     76 
     77typedef struct Alist_node { 
     78        buffer * key; 
     79        list * value; 
     80        struct Alist_node * next; 
     81} alist_node; 
     82 
     83typedef struct Alist { 
     84        alist_node * first; 
     85        alist_node * last; 
     86} alist; 
    7587 
    7688 
     
    320332}; 
    321333 
     334enum wfs_insert_idgen { 
     335        WFS_GENERATE_NEW, 
     336        WFS_USE_EXISTING, 
     337        WFS_REPLACE_DUPLICATE 
     338}; 
    322339 
    323340typedef struct Wfs_request { 
     
    336353    list * sections; 
    337354 
    338     mlist * insert_results; 
     355    alist * insert_results; 
    339356    int delete_results; 
    340357    int update_results; 
     
    356373    FE_ERROR_GEOMETRY, 
    357374    FE_ERROR_FID, 
    358     FE_ERROR_SRS 
     375    FE_ERROR_SRS, 
     376    FE_ERROR_FUNCTION 
    359377}; 
    360378