Home
last modified time | relevance | path

Searched refs:LPARAM (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/lzma/CPP/Windows/Control/
DComboBox.h19 LRESULT AddString(LPCTSTR s) { return SendMsg(CB_ADDSTRING, 0, (LPARAM)s); } in AddString()
35 …etLBText(int index, LPTSTR s) { return SendMsg(CB_GETLBTEXT, MY_int_TO_WPARAM(index), (LPARAM)s); } in GetLBText()
41 …LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, MY_int_TO_WPARAM(in… in SetItemData()
62 LRESULT InsertItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_INSERTITEM, 0, (LPARAM)item); } in InsertItem()
64 LRESULT InsertItem(COMBOBOXEXITEMW *item) { return SendMsg(CBEM_INSERTITEMW, 0, (LPARAM)item); } in InsertItem()
67 LRESULT SetItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_SETITEM, 0, (LPARAM)item); } in SetItem()
68 …D exMask, DWORD exStyle) { return (DWORD)SendMsg(CBEM_SETEXTENDEDSTYLE, exMask, (LPARAM)exStyle); } in SetExtendedStyle()
70 …List(HIMAGELIST imageList) { return (HIMAGELIST)SendMsg(CBEM_SETIMAGELIST, 0, (LPARAM)imageList); } in SetImageList()
DReBar.h15 { return LRESULTToBool(SendMsg(RB_SETBARINFO, 0, (LPARAM)barInfo)); } in SetBarInfo()
17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, MY_int_TO_WPARAM(index), (LPARAM)bandInfo)); } in InsertBand()
19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); } in SetBandInfo()
23 { return LRESULTToBool(SendMsg(RB_SIZETORECT, 0, (LPARAM)rect)); } in SizeToRect()
DToolBar.h28 return LRESULTToBool(SendMsg(TB_GETMAXSIZE, 0, (LPARAM)size));
34 …IMAGELIST imageList) { return HIMAGELIST(SendMsg(TB_SETIMAGELIST, listIndex, (LPARAM)imageList)); } in SetImageList()
35 … LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, numButtons, (LPARAM)buttons)); } in AddButton()
37 …LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW, numButtons, (LPARAM)buttons)); } in AddButtonW()
DDialog.cpp28 DialogProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam) in DialogProcedure()
50 bool CDialog::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage()
82 bool CDialog::OnCommand(unsigned code, unsigned itemID, LPARAM lParam) in OnCommand()
390 … aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
399 return DialogBoxParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
408 …aHWND = CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
420 …aHWND = CreateDialogParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this… in Create()
431 return DialogBoxParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
441 return DialogBoxParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this); in Create()
DListView.h55 …W *columnInfo) { return (int)SendMsg(LVM_INSERTCOLUMNW, (WPARAM)columnIndex, (LPARAM)columnInfo); } in InsertColumn()
57 int InsertItem(const LV_ITEMW* item) { return (int)SendMsg(LVM_INSERTITEMW, 0, (LPARAM)item); } in InsertItem()
59 …bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item… in SetItem()
82 bool GetItemParam(unsigned itemIndex, LPARAM &param) const;
87 bool SortItems(PFNLVCOMPARE compareFunction, LPARAM dataParam) in SortItems()
143 virtual LRESULT OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
DListView.cpp30 bool CListView::GetItemParam(unsigned index, LPARAM &param) const in GetItemParam()
56 item.lParam = (LPARAM)index; in InsertItem()
89 item.lParam = (LPARAM)index; in InsertItem()
107 static LRESULT APIENTRY ListViewSubclassProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in ListViewSubclassProc()
116 LRESULT CListView2::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage()
DProgressBar.h22 …t maxValue) { return (DWORD)SendMsg(PBM_SETRANGE32, (unsigned)minValue, (LPARAM)(unsigned)maxValue… in SetRange32()
28 …COLORREF SetBarColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBARCOLOR, 0, (LPARAM)color)… in SetBarColor()
29 …COLORREF SetBackgroundColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBKCOLOR, 0, (LPARAM)… in SetBackgroundColor()
DWindow2.h15 LRESULT DefProc(UINT message, WPARAM wParam, LPARAM lParam);
30 virtual LRESULT OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
34 virtual bool OnCommand(unsigned code, unsigned itemID, LPARAM lParam, LRESULT &result);
DStatusBar.h19 { return LRESULTToBool(SendMsg(SB_SETTEXT, index | type, (LPARAM)text)); } in SetText()
29 { return LRESULTToBool(SendMsg(SB_SETTEXTW, index | type, (LPARAM)text)); } in SetText()
35 { return LRESULTToBool(SendMsg(SB_SETPARTS, numParts, (LPARAM)edgePostions)); } in SetParts()
DWindow2.cpp29 static LRESULT CALLBACK WindowProcedure(HWND aHWND, UINT message, WPARAM wParam, LPARAM lParam) in WindowProcedure()
123 LRESULT CWindow2::DefProc(UINT message, WPARAM wParam, LPARAM lParam) in DefProc()
133 LRESULT CWindow2::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage()
170 bool CWindow2::OnCommand(unsigned /* code */, unsigned /* itemID */, LPARAM /* lParam */, LRESULT &… in OnCommand() argument
DDialog.h81 LRESULT SendMsg_NextDlgCtl(WPARAM wParam, LPARAM lParam) in SendMsg_NextDlgCtl()
94 LRESULT SendItemMessage(unsigned itemID, UINT message, WPARAM wParam, LPARAM lParam) in SendItemMessage()
111 virtual bool OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
114 virtual bool OnCommand(unsigned code, unsigned itemID, LPARAM lParam);
132 virtual bool OnTimer(WPARAM /* timerID */, LPARAM /* callback */) { return false; } in OnTimer() argument
DPropertyPage.cpp25 APIENTRY MyProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam) in MyProperyPageProcedure()
105 page.lParam = (LPARAM)pageInfo.Page; in MyPropertySheet()
126 page.lParam = (LPARAM)pageInfo.Page; in MyPropertySheet()
DComboBox.cpp37 return SendMsgW(CB_ADDSTRING, 0, (LPARAM)s); in AddString()
49 LRESULT len2 = SendMsgW(CB_GETLBTEXT, MY_int_TO_WPARAM(index), (LPARAM)s.GetBuf((unsigned)len)); in GetLBText()
/third_party/lame/dshow/
Daboutprp.cpp120 SendDlgItemMessage(m_hwnd, IDC_LAME_LA, WM_SETTEXT, 0, (LPARAM)lpszText); in OnActivate()
127 SendDlgItemMessage(m_hwnd, IDC_LAME_VER, WM_SETTEXT, 0, (LPARAM)strbuf); in OnActivate()
130 SendDlgItemMessage(m_hwnd, IDC_LAME_URL, WM_SETTEXT, 0, (LPARAM)strbuf); in OnActivate()
166 , LPARAM lParam) in OnReceiveMessage()
DPropPage.cpp206 BOOL CMpegAudEncPropertyPage::OnReceiveMessage(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam) in OnReceiveMessage()
440 …SendDlgItemMessage(hwndParent, IDC_COMBO_SAMPLE_RATE, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)srRates[i … in InitPropertiesDialog()
466 … SendDlgItemMessage(hwndParent, IDC_COMBO_VBRq, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szVBRqDesc[k]); in InitPropertiesDialog()
488 …SendDlgItemMessage(hwndParent, IDC_COMBO_CBR, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szBitRateString[0]… in InitPropertiesDialog()
495 …SendDlgItemMessage(hwndParent, IDC_COMBO_CBR, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szBitRateString[1]… in InitPropertiesDialog()
538 …SendDlgItemMessage(hwndParent, IDC_COMBO_VBRMIN, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szBitRateString… in InitPropertiesDialog()
539 …SendDlgItemMessage(hwndParent, IDC_COMBO_VBRMAX, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szBitRateString… in InitPropertiesDialog()
547 …SendDlgItemMessage(hwndParent, IDC_COMBO_VBRMIN, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szBitRateString… in InitPropertiesDialog()
548 …SendDlgItemMessage(hwndParent, IDC_COMBO_VBRMAX, CB_ADDSTRING, 0, (LPARAM)(LPCTSTR)szBitRateString… in InitPropertiesDialog()
/third_party/lzma/CPP/7zip/UI/FileManager/
DBrowseDialog.cpp102 virtual bool OnMessage(UINT message, WPARAM wParam, LPARAM lParam) Z7_override;
104 virtual bool OnCommand(unsigned code, unsigned itemID, LPARAM lParam) Z7_override;
125 LPARAM param; in GetRealItemIndex()
150 int CompareItems(LPARAM lParam1, LPARAM lParam2) const;
343 bool CBrowseDialog::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage()
354 bool CBrowseDialog::OnCommand(unsigned code, unsigned itemID, LPARAM lParam) in OnCommand()
484 int CBrowseDialog::CompareItems(LPARAM lParam1, LPARAM lParam2) const in CompareItems()
506 static int CALLBACK CompareItems2(LPARAM lParam1, LPARAM lParam2, LPARAM lpData) in CompareItems2()
644 item.lParam = (LPARAM)i; in Reload()
682 _list.SortItems(CompareItems2, (LPARAM)this); in Reload()
/third_party/lzma/CPP/Windows/
DShell.cpp661 static int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc() argument
710 browseInfo.lParam = (LPARAM)initialFolder; in BrowseForFolder()
757 int CALLBACK BrowseCallbackProc2(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc2() argument
796 browseInfo.lParam = (LPARAM)initialFolder; in BrowseForFolder()
DWindow.h305 LRESULT SendMsg(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
308 LRESULT SendMsgW(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
312 bool PostMsg(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
315 bool PostMsgW(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
353 …HICON SetIcon(WPARAM sizeType, HICON icon) { return (HICON)SendMsg(WM_SETICON, sizeType, (LPARAM)i… in SetIcon()
/third_party/skia/third_party/externals/imgui/examples/example_win32_directx9/
Dmain.cpp20 LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
209 …IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
212 LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) in WndProc()
/third_party/skia/third_party/externals/imgui/examples/example_win32_directx11/
Dmain.cpp22 LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
219 …IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
222 LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) in WndProc()
/third_party/skia/third_party/externals/imgui/examples/example_win32_directx10/
Dmain.cpp22 LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
215 …IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
218 LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) in WndProc()
/third_party/lame/ACM/
DACM.h75 inline DWORD OnFormatTagDetails(LPACMFORMATTAGDETAILS a_FormatTagDetails, const LPARAM a_Query);
76 inline DWORD OnFormatDetails(LPACMFORMATDETAILS a_FormatDetails, const LPARAM a_Query);
/third_party/ffmpeg/libavdevice/
Dvfwcap.c296 (LPARAM) videostream_cb); in vfw_read_header()
319 ret = SendMessage(ctx->hwnd, WM_CAP_GET_VIDEOFORMAT, bisize, (LPARAM) bi); in vfw_read_header()
354 ret = SendMessage(ctx->hwnd, WM_CAP_SET_VIDEOFORMAT, bisize, (LPARAM) bi); in vfw_read_header()
365 (LPARAM) &cparms); in vfw_read_header()
380 (LPARAM) &cparms); in vfw_read_header()
/third_party/python/Lib/ctypes/
Dwintypes.py44 LPARAM = ctypes.c_long variable
47 LPARAM = ctypes.c_longlong variable
137 ("lParam", LPARAM),
/third_party/vk-gl-cts/framework/platform/win32/
DtcuWin32Window.cpp31 static LRESULT CALLBACK windowProcCallback (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in windowProcCallback()
146 LRESULT Window::windowProc (UINT uMsg, WPARAM wParam, LPARAM lParam) in windowProc()

1234