Lines Matching defs:Data
3030 \param Data Array of Length points
3032 char *U_WMRPOLYGON_set(uint16_t Length, const U_POINT16 *Data){
3033 return U_WMRCORE_2U16_N16_set(U_WMR_POLYGON, NULL, &Length, 2*Length, Data);
3040 \param Data Array of Length points
3042 char *U_WMRPOLYLINE_set(uint16_t Length, const U_POINT16 *Data){
3043 return U_WMRCORE_2U16_N16_set(U_WMR_POLYLINE, NULL, &Length, 2*Length, Data);
3052 the byte orders in Data adjusted automatically. The user code must set Data to be little endian no
3056 \param Length Bytes in the Data
3057 \param Data Array of Length bytes
3059 char *U_WMRESCAPE_set(uint16_t Escape, uint16_t Length, const void *Data){
3060 return U_WMRCORE_2U16_N16_set(U_WMR_ESCAPE, &Escape, &Length, Length/2, Data);
5554 \param Data pointer to array of U_POINT16 in memory. Pointer may not be aligned properly for structures.
5559 const char **Data
5561 int size = U_WMRCORE_2U16_N16_get(contents, (U_SIZE_WMRPOLYGON), NULL, Length, Data);
5564 if(IS_MEM_UNSAFE(*Data, iLength, contents+size))return(0);
5574 \param Data pointer to array of U_POINT16 in memory. Pointer may not be aligned properly for structures.
5579 const char **Data
5581 int size = U_WMRCORE_2U16_N16_get(contents, (U_SIZE_WMRPOLYGON), NULL, Length, Data);
5584 if(IS_MEM_UNSAFE(*Data, iLength, contents+size))return(0);
5595 the byte orders in Data adjusted automatically. The user code must set Data to be little endian no
5600 \param Length Bytes in the Data
5601 \param Data Array of Length bytes
5607 const char **Data
5609 int size = U_WMRCORE_2U16_N16_get(contents, (U_SIZE_WMRESCAPE), Escape, Length, Data);
5612 if(IS_MEM_UNSAFE(*Data, iLength, contents+size))return(0);