Line | Code | Value | Export IDENTIFIER |
115 | if(key == _T("cookie")) | cookie | |
131 | if(!m_cookie.Lookup(_T("MPCSESSIONID"), m_sessid)) | MPCSESSIONID | |
134 | m_sessid.Format(_T("%08x"), rand()*0x12345678); | %08x | |
135 | SetCookie(_T("MPCSESSIONID"), m_sessid); | MPCSESSIONID | |
144 | if(m_cmd == _T("POST")) | POST | |
147 | if(m_hdrlines.Lookup(_T("content-length"), str)) | content-length | |
191 | if(m_cmd == _T("GET") || m_cmd == _T("HEAD") || m_cmd == _T("POST")) | GET | |
| | HEAD | |
| | POST | |
265 | if(m_cmd != _T("HEAD") && reshdr.Find("HTTP/1.0 200 OK") == 0 && !resbody.IsEmpty()) | HEAD | |
270 | CString connection = _T("close"); | close | |
271 | m_hdrlines.Lookup(_T("connection"), connection); | connection | |
276 | // if(connection == _T("close")) | close | |
317 | if(m_request.Lookup(_T("wm_command"), arg)) | wm_command | |
328 | if(arg == CMD_SETPOS && m_request.Lookup(_T("position"), arg)) | position | |
332 | if(_stscanf(arg, _T("%d%c%d%c%d%c%d"), &h, &c, &m, &c, &s, &c, &ms) >= 5) | %d%c%d%c%d%c%d | |
343 | else if(arg == CMD_SETPOS && m_request.Lookup(_T("percent"), arg)) | percent | |
346 | if(_stscanf(arg, _T("%f"), &percent) == 1) | %f | |
349 | else if(arg == CMD_SETVOLUME && m_request.Lookup(_T("volume"), arg)) | volume | |
359 | if(!m_hdrlines.Lookup(_T("referer"), ref)) | referer | |
395 | for(TCHAR drive[] = _T("A:"); drive[0] <= 'Z'; drive[0]++) | A: | |
403 | if(m_get.Lookup(_T("path"), path)) | path | |
416 | if(m_get.Lookup(_T("focus"), focus) && !focus.CompareNoCase(_T("no"))) | focus | |
| | no | |
417 | cmdln.AddTail(_T("/nofocus")); | /nofocus | |
538 | "<td class=\"dirdate\"><nobr>" + CStringA(CTime(fd.ftLastWriteTime).Format(_T("%Y.%m.%d %H:%M"))) + "</nobr></td>"; | %Y.%m.%d %H:%M | |
561 | CString type(_T(" ")); |   | |
572 | "<td class=\"filedate\"><nobr>" + CStringA(CTime(fd.ftLastWriteTime).Format(_T("%Y.%m.%d %H:%M"))) + "</nobr></td>"; | %Y.%m.%d %H:%M | |
603 | state.Format(_T("%d"), fs); | %d | |
610 | default: statestring = _T("n/a"); break; | n/a | |
617 | position.Format(_T("%d"), pos); | %d | |
618 | duration.Format(_T("%d"), dur); | %d | |
621 | // positionstring.Format(_T("%02d:%02d:%02d.%03d"), (pos/3600000), (pos/60000)%60, (pos/1000)%60, pos%1000); | %02d:%02d:%02d.%03d | |
622 | // durationstring.Format(_T("%02d:%02d:%02d.%03d"), (dur/3600000), (dur/60000)%60, (dur/1000)%60, dur%1000); | %02d:%02d:%02d.%03d | |
623 | positionstring.Format(_T("%02d:%02d:%02d"), (pos/3600000), (pos/60000)%60, (pos/1000)%60); | %02d:%02d:%02d | |
624 | durationstring.Format(_T("%02d:%02d:%02d"), (dur/3600000), (dur/60000)%60, (dur/1000)%60); | %02d:%02d:%02d | |
628 | volumelevel.Format(_T("%d"), m_pMainFrame->m_wndToolBar.m_volctrl.GetPos()); | %d | |
629 | muted.Format(_T("%d"), m_pMainFrame->m_wndToolBar.Volume == -10000 ? 1 : 0); | %d | |
662 | volumelevel.Format(_T("%d"), m_pMainFrame->m_wndToolBar.m_volctrl.GetPos()); | %d | |
663 | muted.Format(_T("%d"), m_pMainFrame->m_wndToolBar.Volume == -10000 ? 1 : 0); | %d | |
676 | posstr.Format(_T("%02d:%02d:%02d"), (pos/3600000), (pos/60000)%60, (pos/1000)%60); | %02d:%02d:%02d | |
677 | durstr.Format(_T("%02d:%02d:%02d"), (dur/3600000), (dur/60000)%60, (dur/1000)%60); | %02d:%02d:%02d | |
738 | if(!m_get.Lookup(_T("id"), id)) | id | |
742 | if(1 != _stscanf(id, _T("%x"), &key) || key == 0) | %x | |
| | | |