Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

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