menu: added new Keywords tag to .desktop files
[barry.git] / wince / wrappers / unistd.h
blobd4fe05240de4eb27879547bad944fc2f86be4566
1 ///
2 /// \file unistd.h
3 /// Wrapper header file to aid porting to WinCE
4 ///
6 /*
7 Copyright (C) 2012, RealVNC Ltd.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __UNISTD_H__
23 #define __UNISTD_H__
25 #include <windows.h>
27 typedef DWORD off_t;
28 typedef DWORD useconds_t;
30 unsigned int sleep(unsigned int seconds);
31 int usleep(useconds_t usec);
33 int getopt(int argc, char * const argv[],
34 const char *optstring);
36 extern char *optarg;
37 extern int optind, opterr, optopt;
39 /* Technically part of stdlib.h, but here is as good a place as any */
40 char *getenv(const char *name);
42 #define snprintf _snprintf
44 #endif /* __UNISTD_H__ */