~ubuntu-branches/ubuntu/lucid/squeak-vm/lucid

« back to all changes in this revision

Viewing changes to platforms/Cross/plugins/Mpeg3Plugin/libmpeg/ioctl.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2005-07-15 11:44:08 UTC
  • Revision ID: james.westby@ubuntu.com-20050715114408-lgcvpntigab09l00
Tags: upstream-3.7.7
ImportĀ upstreamĀ versionĀ 3.7.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* sys/ioctl.h */
 
2
 
 
3
#ifndef _SYS_IOCTL_H
 
4
#define _SYS_IOCTL_H
 
5
 
 
6
#include <sys/cdefs.h>
 
7
 
 
8
/* /dev/windows ioctls */
 
9
 
 
10
#define WINDOWS_POST    0       /* Set write() behavior to PostMessage() */
 
11
#define WINDOWS_SEND    1       /* Set write() behavior to SendMessage() */
 
12
#define WINDOWS_HWND    2       /* Set hWnd for read() calls */
 
13
 
 
14
__BEGIN_DECLS
 
15
 
 
16
int ioctl (int __fd, int __cmd, void *);
 
17
 
 
18
__END_DECLS
 
19
 
 
20
#endif