MCPcopy Index your code
hub / github.com/MapServer/MapServer / msSetWMSParamInt

Function msSetWMSParamInt

mapwmslayer.c:139–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137
138#ifdef USE_WMS_LYR
139static int msSetWMSParamInt(wmsParamsObj *wmsparams,
140 const char *name, int value)
141{
142 char szBuf[100];
143
144 snprintf(szBuf, sizeof(szBuf), "%d", value);
145 msInsertHashTable(wmsparams->params, name, szBuf);
146 wmsparams->numparams++;
147
148 return MS_SUCCESS;
149}
150#endif /* def USE_WMS_LYR */
151
152/**********************************************************************

Callers 1

msBuildWMSLayerURLFunction · 0.85

Calls 1

msInsertHashTableFunction · 0.85

Tested by

no test coverage detected