/ msWFSCreateParamsObj */ / Create a parameter object, initialize it. */ The caller should free the object using msWFSFreeParamsObj. */ /
| 2953 | /* The caller should free the object using msWFSFreeParamsObj. */ |
| 2954 | /************************************************************************/ |
| 2955 | wfsParamsObj *msWFSCreateParamsObj() |
| 2956 | { |
| 2957 | wfsParamsObj *paramsObj = (wfsParamsObj *)calloc(1, sizeof(wfsParamsObj)); |
| 2958 | MS_CHECK_ALLOC(paramsObj, sizeof(wfsParamsObj), NULL); |
| 2959 | |
| 2960 | paramsObj->nMaxFeatures = -1; |
| 2961 | paramsObj->nStartIndex = -1; |
| 2962 | |
| 2963 | return paramsObj; |
| 2964 | } |
| 2965 | |
| 2966 | |
| 2967 |
no outgoing calls
no test coverage detected