unistd.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2. ** Copyright (C) 1999 Albert Faber
  3. **  
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published by
  6. ** the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version.
  8. ** 
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU General Public License for more details.
  13. ** 
  14. ** You should have received a copy of the GNU General Public License
  15. ** along with this program; if not, write to the Free Software 
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. /* A hack file in order to compile the libsndfile package for win32 systems 
  19. ** Define the things that Bill and his fellows forgot to define
  20. */
  21. #ifdef _WIN32
  22. #include <direct.h>
  23. #define _IFMT _S_IFMT
  24. #define _IFREG _S_IFREG
  25. #define S_ISREG(m) ((m) & _S_IFREG)
  26. #define S_IRWXU  0000700 /* rwx, owner */
  27. #define S_IRUSR 0000400 /* read permission, owner */
  28. #define S_IWUSR 0000200 /* write permission, owner */
  29. #define S_IXUSR 0000100 /* execute/search permission, owner */
  30. #define S_IRWXG 0000070 /* rwx, group */
  31. #define S_IRGRP 0000040 /* read permission, group */
  32. #define S_IWGRP 0000020 /* write permission, grougroup */
  33. #define S_IXGRP 0000010 /* execute/search permission, group */
  34. #define S_IRWXO 0000007 /* rwx, other */
  35. #define S_IROTH 0000004 /* read permission, other */
  36. #define S_IWOTH 0000002 /* write permission, other */
  37. #define S_IXOTH 0000001 /* execute/search permission, other */
  38. #endif