/* Copyright 1990-2001 Sun Microsystems, Inc. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP OR SUN MICROSYSTEMS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE EVEN IF ADVISED IN ADVANCE OF THE POSSIBILITY OF SUCH DAMAGES. Except as contained in this notice, the names of The Open Group and/or Sun Microsystems, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group and/or Sun Microsystems, Inc., as applicable. X Window System is a trademark of The Open Group OSF/1, OSF/Motif and Motif are registered trademarks, and OSF, the OSF logo, LBX, X Window System, and Xinerama are trademarks of the Open Group. All other trademarks and registered trademarks mentioned herein are the property of their respective owners. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun Microsystems, Inc. or its licensors is granted. */ #ifndef SUNIMPUB_H #define SUNIMPUB_H #ifdef __cplusplus extern "C" { #endif extern int open_ns( iml_desktop_t *desktop, int ns_id, char *path, int oflag, mode_t mode, int *ns_errno ); extern int read_ns( iml_desktop_t *desktop, int ns_id, void *ptr, size_t size, int *ns_errno ); extern int write_ns( iml_desktop_t *desktop, int ns_id, void *ptr, size_t size, int *ns_errno ); extern int update_supported_langlist_for_le( iml_desktop_t *desktop, IMLEName *lename, IMLocale *locales, int nsl ); extern int switch_le_profile( iml_desktop_t *desktop, int le_profile_id, IMLEName *lename ); extern int close_ns( iml_desktop_t *desktop, int ns_id, int *ns_errno ); extern char **opendir_ns( iml_desktop_t *desktop, int ns_id, char *dirname, int *nitems, int *pns_id, int ***d_reclen, int *ns_errno ); extern int closedir_ns( iml_desktop_t *desktop, int ns_id, int *ns_errno ); extern int mkdir_ns( iml_desktop_t *desktop, int ns_id, char *path, mode_t mode, int *ns_errno ); extern int rmdir_ns( iml_desktop_t *desktop, int ns_id, char *path, int *ns_errno ); extern int symlink_ns( iml_desktop_t *desktop, int ns_id, char *dpath, char *spath, int *ns_errno ); extern int stat_ns( iml_desktop_t *desktop, int ns_id, char *path, struct stat *stat_buf, int *ns_errno ); extern int lstat_ns( iml_desktop_t *desktop, int ns_id, char *path, struct stat *stat_buf, int *ns_errno ); extern int fstat_ns( iml_desktop_t *desktop, int ns_id, struct stat *stat_buf, int *ns_errno ); extern int creat_ns( iml_desktop_t *desktop, int ns_id, char *path, mode_t mode, int *ns_errno ); extern off_t lseek_ns( iml_desktop_t *desktop, int ns_id, off_t offset, int whence, int *ns_errno ); extern int unlink_ns( iml_desktop_t *desktop, int ns_id, char *path, int *ns_errno ); extern int rename_ns( iml_desktop_t *desktop, int ns_id, char *old_name, char *new_name, int *ns_errno ); extern int fcntl_ns( iml_desktop_t *desktop, int ns_id, int cmd, int arg, int *ns_errno ); extern int truncate_ns( iml_desktop_t *desktop, int ns_id, char *path, off_t length, int *ns_errno ); extern int ftruncate_ns( iml_desktop_t *desktop, int ns_id, off_t length, int *ns_errno ); extern iml_inst *iml_execute_iml_wrapper( iml_session_t *s, iml_inst **rrv ); extern iml_if_t *if_OpenIF( const char *if_path, const char *if_name, const char *locale, Bool call_openif ); extern void if_CloseIF( iml_if_t *iml_if, Bool call_closeif ); extern Bool if_GetIFValues(iml_if_t *, IMArgList, int); extern Bool if_SetIFValues(iml_if_t *, IMArgList, int); extern iml_session_t *if_CreateSC(iml_if_t *, IMArgList, int); extern Bool if_DestroySC(iml_session_t *); extern Bool if_DestroySC_WithoutDesktopDestruction(iml_session_t *); extern Bool if_GetSCValues(iml_session_t *, IMArgList, int); extern Bool if_SetSCValues(iml_session_t *, IMArgList, int); extern void if_SendEvent(iml_session_t *, IMInputEvent *); extern void if_SendEvent_AuxGet(iml_session_t *, IMInputEvent *); extern IMText *if_ResetSC(iml_session_t *); extern void if_SetSCFocus(iml_session_t *); extern void if_UnsetSCFocus(iml_session_t *); extern void sunim_slot_manager_init(); #ifdef USE_XSUNIM_ADAPTER extern void xsunim_slot_manager_init(); #endif /* USE_XSUNIM_ADAPTER */ extern iml_session_t *iml_construct_session(iml_desktop_t *, IMArgList, int); extern iml_desktop_t *new_user( iml_if_t * If, const char *user_name, const char *host_name, const char *display_id ); extern void del_user( iml_desktop_t * desktop ); extern void add_session_to_desktop( iml_session_t *s ); /**************************************** IMLSubr.c ****************************************/ extern iml_inst* iml_duplicate_inst( iml_inst *pinst ); extern void iml_delete_inst( iml_inst *pinst ); extern int IMText_duplicate2( IMText *pdest, IMText *psrc ); extern IMText* IMText_duplicate( IMText *psrc ); extern void IMText_delete2( IMText *ptext ); extern void IMText_delete( IMText *ptext ); #ifdef __cplusplus } #endif #endif /* SUNIMPUB_H */ /* Local Variables: */ /* c-file-style: "iiim-project" */ /* End: */