Document function fl_open_callback()

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11935 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2016-09-12 11:26:05 +00:00
parent 8b04325226
commit 0af00dd0ac

View File

@ -1992,6 +1992,8 @@ FL_EXPORT Window fl_xid_(const Fl_Window *w) {
Fl_X *temp = Fl_X::i(w); Fl_X *temp = Fl_X::i(w);
return temp ? temp->xid : 0; return temp ? temp->xid : 0;
} }
/** \addtogroup group_macosx
@{ */
/** Register a function called for each file dropped onto an application icon. /** Register a function called for each file dropped onto an application icon.
@ -2003,6 +2005,7 @@ void fl_open_callback(void (*cb)(const char *))
{ {
Fl::system_driver()->open_callback(cb); Fl::system_driver()->open_callback(cb);
} }
/** @} */
// //
// End of "$Id$". // End of "$Id$".