search for: m_start

Displaying 2 results from an estimated 2 matches for "m_start".

Did you mean: vm_start
2005 Jan 13
4
Manager API !!!!!!!!!
Hello all Has anyone had any success with the Manager API ? I am trying to check an extension status without too much luck I have the following <?php $fp = fsockopen("127.0.0.1", 5038, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "Action: Login\r\n"; $out .=
2006 Dec 20
0
[790] trunk/wxruby2/swig/classes: Added TextUrlEvent class and EvtHandler mapping
...xtUrlEvent_h_) +#define _wxTextUrlEvent_h_ + +class wxTextUrlEvent : public wxCommandEvent +{ +public: + wxTextUrlEvent(int winid, const wxMouseEvent& evtMouse, + long start, long end) + : wxCommandEvent(wxEVT_COMMAND_TEXT_URL, winid) + , m_evtMouse(evtMouse), m_start(start), m_end(end) + { } + + const wxMouseEvent& GetMouseEvent() const { return m_evtMouse; } + long GetURLStart() const { return m_start; } + long GetURLEnd() const { return m_end; } + +protected: + wxMouseEvent m_evtMouse; + long m_start, + m_end; +}; + +#endif &...