Skip to content
Snippets Groups Projects
Commit d6262ee7 authored by cer's avatar cer
Browse files

Initial revision

parent 73e8cc41
No related branches found
No related tags found
No related merge requests found
/* -[]-
*
* copyright (c) 1992 Franz Inc, Berkeley, CA All rights reserved.
*
* The software, data and information contained herein are proprietary
* to, and comprise valuable trade secrets of, Franz, Inc. They are
* given in confidence by Franz, Inc. pursuant to a written license
* agreement, and may be stored and used only in accordance with the terms
* of such license.
*
* Restricted Rights Legend
* ------------------------
* Use, duplication, and disclosure of the software, data and information
* contained herein by any agency, department or entity of the U.S.
* Government are subject to restrictions of Restricted Rights for
* Commercial Software developed at private expense as specified in FAR
* 52.227-19 or DOD FAR Supplement 252 52.227-7013 (c) (1) (ii), as
* applicable.
*
* $fiHeader: support.c,v 1.1 92/05/13 08:52:50 cer Exp $
*/
/************************************************************************/
/* Support code for Openlook interface */
/************************************************************************/
int ol_appl_add_item (fn, widget, parent, reference, item)
int (*fn)();
char *widget, *item;
char *parent, *reference;
{
return (*fn)(widget, parent, reference, item);
}
int ol_list_item_pointer (x)
int x;
{
return (OlListItemPointer(x));
}
void ol_appl_touch_item (fn, widget, token)
int (*fn)();
char *widget;
int token;
{
(*fn)(widget, token);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment