/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #ifndef __AFSD_H_ENV__ #define __AFSD_H_ENV__ 1 #include #ifndef DJGPP BOOL InitClass(HANDLE); BOOL InitInstance(HANDLE, int); LONG APIENTRY MainWndProc(HWND, unsigned int, unsigned int, long); BOOL APIENTRY About(HWND, unsigned int, unsigned int, long); #endif /* !DJGPP */ #ifndef DJGPP #include #else /* DJGPP */ #include #include #include "dosdefs95.h" #include "largeint95.h" #endif /* !DJGPP */ #include "afsdicon.h" #include "cm.h" #include "krb.h" #include "krb_prot.h" /*#include */ #include #include #include "cm_user.h" #include "cm_callback.h" #ifdef DISKCACHE95 #include "cm_diskcache95.h" #endif /* DISKCACHE95 */ #include "cm_conn.h" #include "cm_aclent.h" #include "cm_cell.h" #include "cm_config.h" #include "cm_server.h" #include "cm_volume.h" #include "cm_scache.h" #include "cm_dcache.h" #include "cm_access.h" #include "cm_vnodeops.h" #include "cm_dir.h" #include "cm_utils.h" #include "cm_daemon.h" #include "cm_ioctl.h" #include "cm_dnlc.h" #include "cm_buf.h" #include "cm_freelance.h" #ifdef DJGPP #include "afs/afsmsg95.h" #endif #include #include #define AFS_DAEMON_SERVICE_NAME "TransarcAFSDaemon" #define AFS_DAEMON_EVENT_NAME "AFS Client" void afs_exit(); /* globals from the base afsd */ extern int cm_logChunkSize; extern int cm_chunkSize; extern cm_volume_t *cm_rootVolumep; extern cm_cell_t *cm_rootCellp; extern cm_fid_t cm_rootFid; extern cm_scache_t *cm_rootSCachep; extern osi_log_t *afsd_logp; extern char cm_mountRoot[]; extern DWORD cm_mountRootLen; extern char cm_CachePath[]; extern BOOL isGateway; extern BOOL reportSessionStartups; #ifdef AFS_FREELANCE_CLIENT // yj: Variables used by Freelance Client extern char *cm_FakeRootDir; // the fake root.afs directory extern int cm_noLocalMountPoints; // no. of fake mountpoints extern cm_localMountPoint_t* cm_localMountPoints; // array of fake mountpoints extern int cm_fakeDirSize; // size (in bytes) of fake root.afs directory extern int cm_fakeDirCallback; // state of the fake root.afs directory. indicates // if it needs to be refreshed extern int cm_fakeGettingCallback; // 1 if currently updating the fake root.afs directory, // 0 otherwise extern int cm_fakeDirVersion; // the version number of the root.afs directory. used // invalidate all the buffers containing root.afs data // after reinitialization // ------------------------------------------ #endif /* AFS_FREELANCE_CLIENT */ extern int cm_dnsEnabled; extern int cm_freelanceEnabled; #endif /* AFSD_H_ENV */