/* $Id: callback.h,v 1.4 92/12/02 04:49:27 bert Exp Locker: bert $ */

#ifndef _callback_h_
#define _callback_h_

/* link and socket file type descriptors */

#ifndef S_IFMT
#define S_IFMT          0170000         /* type of file */
#endif
#ifndef S_IFLNK
#define S_IFLNK         0120000         /* symbolic link */
#endif
#ifndef S_IFSOCK
#define S_IFSOCK        0140000         /* socket */
#endif

/* POSIX-style file type checks for symlinks and sockets */

#define S_ISLNK( mode )         (((mode) & S_IFMT) == S_IFLNK)
#define S_ISSOCK( mode )        (((mode) & S_IFMT) == S_IFSOCK)


#include <X11/Wc/WcCreate.h>

void AriRegisterAthena _((XtAppContext app));
void XqSetUpStuff _((XtAppContext app));
void AppDefaultsHack ();

#endif
