search for: closeevent

Displaying 14 results from an estimated 14 matches for "closeevent".

2016 Feb 28
0
[PATCH 0/1] UEFI UDP/TFTP
...(b) - efi_destroy_binding(b, &Udp4ServiceBindingProtocol); + efi_destroy_binding(b, &Udp4ServiceBindingProtocol); - efi_destroy_binding(udp_reader, &Udp4ServiceBindingProtocol); - udp_reader = NULL; + if(udp_io && udp_io->Timeout_Timer) + uefi_call_wrapper(BS->CloseEvent, 1, udp_io->Timeout_Timer); + + if(udp_io && udp_io->CB_OK_Event) + uefi_call_wrapper(BS->CloseEvent, 1, udp_io->CB_OK_Event); + + + if(udp_io) + free(udp_io); return -1; } + /** * Close a socket * @@ -119,299 +280,394 @@ bail: */ void core_udp_close(struct pxe_p...
2016 Feb 24
6
[PATCH 2/5] ntfs: remove unused variable and have ntfssect use char API calls
The variable 'ok' is never used and generates a warning. Remove it. Also ntfssect.c is designed to be compiled in non Unicode mode when using MSVC compilers, so remove all ambiguity about it (LPCTSTR -> LPCSTR, use of 'A' API calls) so that it doesn't break when compiled in Unicode mode, which is what Rufus uses with MSVC. -------------- next part --------------
2007 Dec 27
1
Wx::SplashScreen, and events
I have the following code: #time = 7000 class TimeSplash < Wx::SplashScreen PATH_MAIN = 1 PATH_SETUP = 0 def initialize(time, path=PATH_MAIN) splash_bitmap = Wx::Bitmap.new(''timefly.png'', Wx::BITMAP_TYPE_PNG) super(splash_bitmap, Wx::SPLASH_CENTRE_ON_SCREEN|Wx::SPLASH_TIMEOUT, time, nil, -1) evt_close() {|evt| on_close_window(evt, path)} end
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...o obj/BusyInfo.o obj/Button.o obj/CalculateLayoutEvent.o obj/CalendarCtrl.o obj/CalendarDateAttr.o obj/CalendarEvent.o obj/Caret.o obj/CheckBox.o obj/CheckListBox.o obj/ChildFocusEvent.o obj/Choice.o obj/Choicebook.o obj/ChoicebookEvent.o obj/ClientDC.o obj/ClientDataContainer.o obj/Clipboard.o obj/CloseEvent.o obj/CollapsiblePane.o obj/CollapsiblePaneEvent.o obj/Colour.o obj/ColourData.o obj/ColourDialog.o obj/ComboBox.o obj/CommandEvent.o obj/ContextMenuEvent.o obj/Control.o obj/ControlWithItems.o obj/Cursor.o obj/DC.o obj/DataObject.o obj/DataObjectSimple.o obj/Dialog.o obj/DirDialog.o obj/DragImage....
2013 Nov 29
2
[PATCH] efi: reuse UDP port with sendto
...tus = uefi_call_wrapper(udp->GetModeData, 5, udp, + &udata, NULL, NULL, NULL); + if (status != EFI_SUCCESS) + Print(L"Failed to get UDP mode data: %d\n", status); + else + socket->net.efi.localport = udata.StationPort; + } + close: uefi_call_wrapper(BS->CloseEvent, 1, token->Event); -- 1.8.4.3
2006 Oct 17
0
[679] trunk/wxruby2/doc/textile/previewframe.txtl: Changed the initialize() method to init() so it matches the API also added a remark alerting the user to this.
...e of the conflict with Ruby''s built in *initialize*(). + </ins><span class="cx"> h3(#PreviewFrame_onclosewindow). PreviewFrame#on_close_window </span><span class="cx"> </span><span class="cx"> *on_close_window*(%(arg-type)CloseEvent% event) </span></span></pre> </div> </div> </body> </html>
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...Wx::CalendarEvent, + Wx::EVT_CALENDAR_MONTH_CHANGED => Wx::CalendarEvent, + Wx::EVT_CALENDAR_YEAR_CHANGED => Wx::CalendarEvent, + Wx::EVT_CALENDAR_DOUBLECLICKED => Wx::CalendarEvent, + Wx::EVT_CALENDAR_WEEKDAY_CLICKED => Wx::CalendarEvent, + Wx::EVT_CLOSE_WINDOW => Wx::CloseEvent, + Wx::EVT_COMMAND_BUTTON_CLICKED => Wx::CommandEvent, + Wx::EVT_COMMAND_CHECKBOX_CLICKED => Wx::CommandEvent, + Wx::EVT_COMMAND_CHOICE_SELECTED => Wx::CommandEvent, + Wx::EVT_COMMAND_LISTBOX_SELECTED => Wx::CommandEvent, + Wx::EVT_COMMAND_LISTBOX_DOUBLECLICKED => Wx::...
2004 Apr 23
11
Building wxruby-swig for Mac
0.0.5 sure gets the Mac build a lot further. There''s a bug in the wxMac-2.4.2 distribution that I''m running into: wx-config wants to invoke a program in the source directory at link time. That''s ugly in itself, but it tries to use a variable ${top_srcdir} to accomplish this, and it''s apparently empty. It tries to invoke
2010 Jan 28
5
Compiling problem on Ubuntu 9.10 64 bit
...on.o obj/CalculateLayoutEvent.o obj/CalendarCtrl.o obj/CalendarDateAttr.o obj/CalendarEvent.o obj/Caret.o obj/CheckBox.o obj/CheckListBox.o obj/ChildFocusEvent.o obj/Choice.o obj/Choicebook.o obj/ChoicebookEvent.o obj/ClientDC.o obj/ClientDataContainer.o obj/Clipboard.o obj/ClipboardTextEvent.o obj/CloseEvent.o obj/CollapsiblePane.o obj/CollapsiblePaneEvent.o obj/Colour.o obj/ColourData.o obj/ColourDialog.o obj/ComboBox.o obj/CommandEvent.o obj/ContextHelpButton.o obj/ContextMenuEvent.o obj/Control.o obj/ControlWithItems.o obj/Cursor.o obj/DC.o obj/DataFormat.o obj/DataObject.o obj/DataObjectComposite.o...
2005 Jul 31
5
SWIG compilation
The result of the compilation after installing swig results in lots of errors of the sort: WindowDisabler.obj : error LNK2001: unresolved external symbol _SWIG_Ruby_ConvertPtr I can see this is defined in rubydef.swg but I''m not sure why this isn''t just included in the files that need it. Can any swig experts tell me what I need to do to progress? I''m using
2004 Apr 29
10
wxruby-swig 0.0.12 is up
This one includes the latest App.cpp which includes the Mac fix from Nick. I thought it was in 0.0.11, but it wasn''t. It also adds support for "stock objects", like colours, pens, and fonts. This turned out to be quite challenging, but I''m happy with the solution. It only took a few days :-/ Kevin
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...Wx::CalendarEvent, - Wx::EVT_CALENDAR_MONTH_CHANGED => Wx::CalendarEvent, - Wx::EVT_CALENDAR_YEAR_CHANGED => Wx::CalendarEvent, - Wx::EVT_CALENDAR_DOUBLECLICKED => Wx::CalendarEvent, - Wx::EVT_CALENDAR_WEEKDAY_CLICKED => Wx::CalendarEvent, - Wx::EVT_CLOSE_WINDOW => Wx::CloseEvent, - Wx::EVT_COMMAND_BUTTON_CLICKED => Wx::CommandEvent, - Wx::EVT_COMMAND_CHECKBOX_CLICKED => Wx::CommandEvent, - Wx::EVT_COMMAND_CHOICE_SELECTED => Wx::CommandEvent, - Wx::EVT_COMMAND_LISTBOX_SELECTED => Wx::CommandEvent, - Wx::EVT_COMMAND_LISTBOX_DOUBLECLICKED => Wx::...
2008 May 20
4
Can't get past the splash screen
Hi, I have a remote frontend (it's kept in the room which I don't have access) which is installed with CentOS 4 and Rocks . So, to use the desktop(Gnome) of the frontend I use the freenx + nomachine following the guide in http://www.centos.org/modules/newbb/viewtopic.php?forum=20&topic_id=1640&viewmode=threaded. It worked. Then, I intended to add user, but I couldn't create the
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my linux box. I compiled the demos and all the demos, save dbbrowse, work. I think I have a functional wx. Now I''m trying to install wxRuby from source, since I have a 64 bit machine. I only have permission to my home directory so my installation is : /usr/people/stevenq/Applications/wxX11/