/* * 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 TRANSARC_AFS_PIOCTL_H #define TRANSARC_AFS_PIOCTL_H /* define the basic DeviceIoControl structure for communicating with the * cache manager. */ /* looks like pioctl block from the Unix world */ typedef struct ViceIoctl { long in_size; long out_size; void *in; void *out; } viceIoctl_t; /* Fake error code since NT errno.h doesn't define it */ #include extern long pioctl(char *pathp, long opcode, struct ViceIoctl *blob, int follow); #endif /* TRANSARC_AFS_PIOCTL_H */