os2acl.h 843 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. Copyright (c) 1990-2000 Info-ZIP. All rights reserved.
  3. See the accompanying file LICENSE, version 2000-Apr-09 or later
  4. (the contents of which are also included in zip.h) for terms of use.
  5. If, for some reason, all these files are missing, the Info-ZIP license
  6. also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
  7. */
  8. /* os2acl.h
  9. *
  10. * Author: Kai Uwe Rommel <rommel@ars.de>
  11. * Created: Fri Mar 29 1996
  12. */
  13. /* $Id: os2acl.h,v 1.1 1996/03/30 09:35:00 rommel Exp rommel $ */
  14. /*
  15. * $Log: os2acl.h,v $
  16. * Revision 1.1 1996/03/30 09:35:00 rommel
  17. * Initial revision
  18. *
  19. */
  20. #ifndef _OS2ACL_H
  21. #define _OS2ACL_H
  22. #define ACL_BUFFERSIZE 4096
  23. int acl_get(char *server, const char *resource, char *buffer);
  24. int acl_set(char *server, const char *resource, char *buffer);
  25. #endif /* _OS2ACL_H */
  26. /* end of os2acl.h */