| 1312 | } |
| 1313 | |
| 1314 | void append_path( ptr32< const char * >& dst, const char *src ) |
| 1315 | { |
| 1316 | size_t len; |
| 1317 | |
| 1318 | steamclient_unix_path_to_dos_path( 1, src, pos, g_tmppath + TEMP_PATH_BUFFER_LENGTH - pos, 1 ); |
| 1319 | len = strlen( pos ) + 1; |
| 1320 | pos += len; |
| 1321 | |
| 1322 | dst.value = pos32; |
| 1323 | pos32 += len; |
| 1324 | } |
| 1325 | }; |
| 1326 | |
| 1327 | u64_CallbackMsg_t::operator w32_CallbackMsg_t() const |
no test coverage detected