1997-12-17 12:57:49 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright 1991-1996 by ORCA Software, Inc. *
|
|
|
|
* *
|
|
|
|
* All rights reserved. May not be reproduced or distributed, in printed or *
|
|
|
|
* electronic form, without permission of ORCA Software, Inc. May not be *
|
|
|
|
* distributed as object code, separately or linked with other object modules, *
|
|
|
|
* without permission. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
1997-12-17 10:43:31 +00:00
|
|
|
#ifndef INCL_XIL
|
|
|
|
#define INCL_XIL
|
|
|
|
|
1997-12-17 12:57:49 +00:00
|
|
|
#if (XVT_CC == XVT_CC_CURL)
|
|
|
|
#include "xires.h"
|
|
|
|
#else
|
1997-12-17 10:43:31 +00:00
|
|
|
#include "xi.h"
|
1997-12-17 12:57:49 +00:00
|
|
|
#endif
|
|
|
|
|
1997-12-17 10:43:31 +00:00
|
|
|
#include "xvtcm.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
1997-12-17 12:57:49 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
1997-12-17 10:43:31 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
XVTCM_CONTROL_INFO ci;
|
1997-12-17 12:57:49 +00:00
|
|
|
XI_OBJ *itf;
|
|
|
|
XI_EVENT *xiev;
|
1997-12-17 10:43:31 +00:00
|
|
|
} XIL_DATA;
|
|
|
|
|
1997-12-17 12:57:49 +00:00
|
|
|
WINDOW XVT_CALLCONV1 xil_create XVT_CC_ARGS( ( int cid, int left, int top,
|
|
|
|
int right, int bottom, int prop_count,
|
|
|
|
char **prop_list, WINDOW parent_win,
|
|
|
|
int parent_rid, long parent_flags,
|
|
|
|
char *parent_class ) );
|
|
|
|
XI_OBJ_DEF *XVT_CALLCONV1 xil_parse XVT_CC_ARGS( ( int cid, int prop_count,
|
|
|
|
char **prop_list ) );
|
1997-12-17 10:43:31 +00:00
|
|
|
|
1997-12-17 12:57:49 +00:00
|
|
|
WINDOW XVT_CALLCONV1 xis_create XVT_CC_ARGS( ( int cid, int left, int top,
|
|
|
|
int right, int bottom, int prop_count,
|
|
|
|
char **prop_list, WINDOW parent_win,
|
|
|
|
int parent_rid, long parent_flags,
|
|
|
|
char *parent_class ) );
|
1997-12-17 10:43:31 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
1997-12-17 12:57:49 +00:00
|
|
|
|
1997-12-17 10:43:31 +00:00
|
|
|
// End of extern "C"
|
|
|
|
#endif
|
|
|
|
#endif
|