This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias curlp="curl -U : --proxy-ntlm --proxy http://<proxy address>:<proxy port>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Definition of the message code | |
| #define WM_DIALOG_SHOW (WM_APP + 10) | |
| // Functions that are members of the dialog class | |
| class CMyDlg : public CDialog | |
| { | |
| ... | |
| afx_msg void OnWindowPosChanged( WINDOWPOS* lpwndpos ); | |
| afx_msg void OnDialogShow(WPARAM wp, LPARAM lp); |
NewerOlder