home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / ioctl.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  611b  |  31 lines

  1. /* sys/ioctl.h
  2.  
  3.    Copyright 1998, 2001, 2002 Red Hat, Inc.
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. /* sys/ioctl.h */
  12.  
  13. #ifndef _SYS_IOCTL_H
  14. #define _SYS_IOCTL_H
  15.  
  16. #include <sys/cdefs.h>
  17.  
  18. /* /dev/windows ioctls */
  19.  
  20. #define WINDOWS_POST    0    /* Set write() behavior to PostMessage() */
  21. #define WINDOWS_SEND    1    /* Set write() behavior to SendMessage() */
  22. #define WINDOWS_HWND    2    /* Set hWnd for read() calls */
  23.  
  24. __BEGIN_DECLS
  25.  
  26. int ioctl (int __fd, int __cmd, ...);
  27.  
  28. __END_DECLS
  29.  
  30. #endif
  31.