windows-byte-range-locks-20050816
[openafs.git] / src / WINNT / afsd / cm.h
index df0530a..b551b31 100644 (file)
@@ -1,22 +1,28 @@
-/* 
- * Copyright (C) 1998, 1989 Transarc Corporation - All rights reserved
- *
- * (C) COPYRIGHT IBM CORPORATION 1987, 1988
- * LICENSED MATERIALS - PROPERTY OF IBM
- *
- *
+/*
+ * 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 __CM_H_ENV__
 #define __CM_H_ENV__ 1
 
 #include <rx/rx.h>
+#ifdef DJGPP      /* we need these for vldbentry decl., etc. */
+#include <afs/vldbint.h>
+#include <afs/afsint.h>
+#endif /* DJGPP */
 
 /* from .xg file */
-long VL_GetEntryByID(struct rx_connection *, long, long, struct vldbentry *);
-long VL_GetEntryByNameO(struct rx_connection *, char *, struct vldbentry *);
-long VL_ProbeServer(struct rx_connection *);
-long VL_GetEntryBYIDN(struct rx_connection *, long, long, struct nvldbentry *);
-long VL_GetEntryByNameN(struct rx_connection *, char *, struct nvldbentry *);
+/* FIXME: these were "long" but Windows NT wants "int" */
+int VL_GetEntryByID(struct rx_connection *, afs_int32, afs_int32, struct vldbentry *);
+int VL_GetEntryByNameO(struct rx_connection *, char *, struct vldbentry *);
+int VL_ProbeServer(struct rx_connection *);
+int VL_GetEntryBYIDN(struct rx_connection *, afs_int32, afs_int32, struct nvldbentry *);
+int VL_GetEntryByNameN(struct rx_connection *, char *, struct nvldbentry *);
 
 /* from .xg file */
 extern StartRXAFS_FetchData (struct rx_call *,
@@ -40,36 +46,36 @@ extern RXAFS_FetchStatus (struct rx_connection *,
        struct AFSCallBack *CallBack, 
        struct AFSVolSync *Sync);
 
-StartRXAFS_StoreData (struct rx_call *,
+int StartRXAFS_StoreData (struct rx_call *,
        struct AFSFid *Fid, 
        struct AFSStoreStatus *InStatus, 
-       afs_int32 Pos, 
-       afs_int32 Length, 
-       afs_int32 FileLength);
+       afs_uint32 Pos, 
+       afs_uint32 Length, 
+       afs_uint32 FileLength);
 
-EndRXAFS_StoreData(struct rx_call *,
+int EndRXAFS_StoreData(struct rx_call *,
        struct AFSFetchStatus *OutStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_StoreACL (struct rx_connection *,
+int RXAFS_StoreACL (struct rx_connection *,
        struct AFSFid *Fid, 
        struct AFSOpaque *AccessList,  
        struct AFSFetchStatus *OutStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_StoreStatus(struct rx_connection *,
+int RXAFS_StoreStatus(struct rx_connection *,
        struct AFSFid *Fid, 
        struct AFSStoreStatus *InStatus, 
        struct AFSFetchStatus *OutStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_RemoveFile (struct rx_connection *,
+int RXAFS_RemoveFile (struct rx_connection *,
        struct AFSFid *DirFid, 
        char *namep,
        struct AFSFetchStatus *OutStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_CreateFile (struct rx_connection *,
+int RXAFS_CreateFile (struct rx_connection *,
        struct AFSFid *DirFid, 
        char *Name,
        struct AFSStoreStatus *InStatus, 
@@ -79,7 +85,7 @@ RXAFS_CreateFile (struct rx_connection *,
        struct AFSCallBack *CallBack, 
        struct AFSVolSync *Sync);
 
-RXAFS_Rename (struct rx_connection *,
+int RXAFS_Rename (struct rx_connection *,
        struct AFSFid *OldDirFid, 
        char *OldName,
        struct AFSFid *NewDirFid, 
@@ -88,7 +94,7 @@ RXAFS_Rename (struct rx_connection *,
        struct AFSFetchStatus *OutNewDirStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_Symlink (struct rx_connection *,
+int RXAFS_Symlink (struct rx_connection *,
        struct AFSFid *DirFid, 
        char *name,
        char *LinkContents,
@@ -98,7 +104,7 @@ RXAFS_Symlink (struct rx_connection *,
        struct AFSFetchStatus *OutDirStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_Link (struct rx_connection *,
+int RXAFS_Link (struct rx_connection *,
        struct AFSFid *DirFid, 
        char *Name,
        struct AFSFid *ExistingFid, 
@@ -106,7 +112,7 @@ RXAFS_Link (struct rx_connection *,
        struct AFSFetchStatus *OutDirStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_MakeDir (struct rx_connection *,
+int RXAFS_MakeDir (struct rx_connection *,
        struct AFSFid *DirFid, 
        char *name,
        struct AFSStoreStatus *InStatus, 
@@ -116,69 +122,69 @@ RXAFS_MakeDir (struct rx_connection *,
        struct AFSCallBack *CallBack, 
        struct AFSVolSync *Sync);
 
-RXAFS_RemoveDir (struct rx_connection *,
+int RXAFS_RemoveDir (struct rx_connection *,
        struct AFSFid *DirFid, 
        char *Name,
        struct AFSFetchStatus *OutDirStatus, 
        struct AFSVolSync *Sync);
 
-RXAFS_GetStatistics (struct rx_connection *,
+int RXAFS_GetStatistics (struct rx_connection *,
        struct ViceStatistics *Statistics);
 
-RXAFS_GiveUpCallBacks (struct rx_connection *,
+int RXAFS_GiveUpCallBacks (struct rx_connection *,
        struct AFSCBFids *Fids_Array,
        struct AFSCBs *CallBacks_Array);
 
-RXAFS_GetVolumeInfo (struct rx_connection *,
+int RXAFS_GetVolumeInfo (struct rx_connection *,
        char *VolumeName,
        struct VolumeInfo *Volumeinfo);
 
-RXAFS_GetVolumeStatus (struct rx_connection *,
+int RXAFS_GetVolumeStatus (struct rx_connection *,
        afs_int32 Volumeid, 
        struct AFSFetchVolumeStatus *Volumestatus, 
        char **name,
         char **offlineMsg,
         char **motd);
 
-RXAFS_SetVolumeStatus (struct rx_connection *,
+int RXAFS_SetVolumeStatus (struct rx_connection *,
        afs_int32 Volumeid, 
        struct AFSStoreVolumeStatus *Volumestatus,
        char *name,
        char *olm,
        char *motd);
 
-RXAFS_GetRootVolume (struct rx_connection *,
+int RXAFS_GetRootVolume (struct rx_connection *,
        char **VolumeName);
 
-RXAFS_CheckToken (struct rx_connection *,
+int RXAFS_CheckToken (struct rx_connection *,
        afs_int32 ViceId,
        struct AFSOpaque *token);
 
-RXAFS_GetTime (struct rx_connection *,
+int RXAFS_GetTime (struct rx_connection *,
        afs_uint32 *Seconds, 
        afs_uint32 *USeconds);
 
-RXAFS_BulkStatus (struct rx_connection *,
+int RXAFS_BulkStatus (struct rx_connection *,
        struct AFSCBFids *FidsArray,
        struct AFSBulkStats *StatArray,
        struct AFSCBs *CBArray,
        struct AFSVolSync *Sync);
 
-RXAFS_SetLock (struct rx_connection *,
+int RXAFS_SetLock (struct rx_connection *,
        struct AFSFid *Fid, 
        int Type, 
        struct AFSVolSync *Sync);
 
-RXAFS_ExtendLock (struct rx_connection *,
+int RXAFS_ExtendLock (struct rx_connection *,
        struct AFSFid *Fid, 
        struct AFSVolSync *Sync);
 
-RXAFS_ReleaseLock (struct rx_connection *,
+int RXAFS_ReleaseLock (struct rx_connection *,
        struct AFSFid *Fid, 
        struct AFSVolSync *Sync);
 
 /* This interface is to supported the AFS/DFS Protocol Translator */
-RXAFS_Lookup (struct rx_connection *,
+int RXAFS_Lookup (struct rx_connection *,
        struct AFSFid *DirFid,
        char *Name,
        struct AFSFid *OutFid,
@@ -213,8 +219,7 @@ RXAFS_Lookup (struct rx_connection *,
 #define CM_ERROR_EXISTS                        (CM_ERROR_BASE+11)
 #define CM_ERROR_CROSSDEVLINK          (CM_ERROR_BASE+12)
 #define CM_ERROR_BADOP                 (CM_ERROR_BASE+13)
-#define CM_ERROR_BADSMB                        (CM_ERROR_BASE+32)
-/* CM_ERROR_BADPASSWORD used to be here */
+#define CM_ERROR_BADPASSWORD            (CM_ERROR_BASE+14)
 #define CM_ERROR_NOTDIR                        (CM_ERROR_BASE+15)
 #define CM_ERROR_ISDIR                 (CM_ERROR_BASE+16)
 #define CM_ERROR_READONLY              (CM_ERROR_BASE+17)
@@ -230,14 +235,22 @@ RXAFS_Lookup (struct rx_connection *,
 #define CM_ERROR_REMOTECONN            (CM_ERROR_BASE+27)
 #define CM_ERROR_ATSYS                 (CM_ERROR_BASE+28)
 #define CM_ERROR_NOSUCHPATH            (CM_ERROR_BASE+29)
-
 #define CM_ERROR_CLOCKSKEW             (CM_ERROR_BASE+31)
-
+#define CM_ERROR_BADSMB                        (CM_ERROR_BASE+32)
 #define CM_ERROR_ALLBUSY               (CM_ERROR_BASE+33)
 #define CM_ERROR_NOFILES               (CM_ERROR_BASE+34)
 #define CM_ERROR_PARTIALWRITE          (CM_ERROR_BASE+35)
 #define CM_ERROR_NOIPC                 (CM_ERROR_BASE+36)
 #define CM_ERROR_BADNTFILENAME         (CM_ERROR_BASE+37)
 #define CM_ERROR_BUFFERTOOSMALL                (CM_ERROR_BASE+38)
-
+#define CM_ERROR_RENAME_IDENTICAL      (CM_ERROR_BASE+39)
+#define CM_ERROR_ALLOFFLINE             (CM_ERROR_BASE+40)
+#define CM_ERROR_AMBIGUOUS_FILENAME     (CM_ERROR_BASE+41)
+#define CM_ERROR_BADLOGONTYPE          (CM_ERROR_BASE+42)
+#define CM_ERROR_GSSCONTINUE            (CM_ERROR_BASE+43)
+#define CM_ERROR_TIDIPC                 (CM_ERROR_BASE+44)
+#define CM_ERROR_TOO_MANY_SYMLINKS      (CM_ERROR_BASE+45)
+#define CM_ERROR_PATH_NOT_COVERED       (CM_ERROR_BASE+46)
+#define CM_ERROR_LOCK_CONFLICT          (CM_ERROR_BASE+47)
+#define CM_ERROR_SHARING_VIOLATION      (CM_ERROR_BASE+48)
 #endif /*  __CM_H_ENV__ */