In vc++ DLGPROC is defined as:
typedef INT_PTR (CALLBACK* DLGPROC)(HWND, UINT, WPARAM, LPARAM);

WinApi function that uses DLGPROC:
DialogBox(
  HINSTANCE ,  LPCTSTR ,  HWND,  DLGPROC lpDialogFunc  // dialog box
procedure
);

In my class:
int CALLBACK testDlgProc(HWND, UINT, WPARAM, LPARAM);

Is it possible to:
boost::bind(&CMainDlg::testDlgProc, this, ... ) for DLGPROC ?

How?

Thanks!




_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to