ホームページ > バックエンド開発 > C++ > Windows (Visual C) に相当する unistd.h はありますか?

Windows (Visual C) に相当する unistd.h はありますか?

Susan Sarandon
リリース: 2024-12-11 10:33:14
オリジナル
766 人が閲覧しました

Is There a unistd.h Equivalent for Windows (Visual C  )?

Windows (Visual C) の unistd.h に代わるものはありますか?

Unix 用に作成された比較的単純なコンソール プログラムを Windows プラットフォーム (Visual C 8.0) に移植するために、すべてのソース ファイルには Windows には存在しない "unistd.h" が含まれています。これを削除すると、システムは「srandom」、「random」、および「getopt」のプロトタイプが見つからないというメッセージを表示します。

ランダム関数を置き換えることができることを理解しており、getopt 実装を見つけて取得できると確信しています。

しかし、他の人も同じ課題に遭遇していると思います。私の質問は、「unistd.h」の Windows へのポートはありますか?少なくとも Windows ネイティブ実装の関数を含める必要があり、パイプやフォークは必要ありません。

編集:

必要なものの置換を含む独自の「unistd.h」を作成できることはわかっています。特にこの場合は制限されているためです。コレクション。しかし、これは一般的な問題のようですので、より広範囲の機能のためにこれを実行した人はいないだろうかと思います。

仕事中に別のコンパイラや環境に切り替えることはできません。使用できるのは Visual Studio のみです。

代替案:

インターネット上でバージョンが見つからないため、ここから始めましょう。 Windows に移植されるほとんどのファイルは、おそらく Unix ファイル全体のサブセットのみを必要とします。

これは出発点です。必要に応じて定義を追加してください。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

#ifndef _UNISTD_H

#define _UNISTD_H    1

 

/* This is intended as a drop-in replacement for unistd.h on Windows.

 * Please add functionality as needed.

 * https://stackoverflow.com/a/826027/1202830

 */

 

#include <stdlib.h>

#include <io.h>

#include <getopt.h> /* getopt at: https://gist.github.com/ashelly/7776712 */

#include <process.h> /* for getpid() and the exec..() family */

#include <direct.h> /* for _getcwd() and _chdir() */

 

#define srandom srand

#define random rand

 

/* Values for the second argument to access.

   These may be OR'd together.  */

#define R_OK    4       /* Test for read permission.  */

#define W_OK    2       /* Test for write permission.  */

//#define   X_OK    1       /* execute permission - unsupported in windows*/

#define F_OK    0       /* Test for existence.  */

 

#define access _access

#define dup2 _dup2

#define execve _execve

#define ftruncate _chsize

#define unlink _unlink

#define fileno _fileno

#define getcwd _getcwd

#define chdir _chdir

#define isatty _isatty

#define lseek _lseek

/* read, write, and close are NOT being #defined here, because while there are file handle specific versions for Windows, they probably don't work for sockets. You need to look at your app and consider whether to call e.g. closesocket(). */

 

#ifdef _WIN64

#define ssize_t __int64

#else

#define ssize_t long

#endif

 

#define STDIN_FILENO 0

#define STDOUT_FILENO 1

#define STDERR_FILENO 2

/* should be in some equivalent to <sys/types.h> */

typedef __int8            int8_t;

typedef __int16           int16_t;

typedef __int32           int32_t;

typedef __int64           int64_t;

typedef unsigned __int8   uint8_t;

typedef unsigned __int16  uint16_t;

typedef unsigned __int32  uint32_t;

typedef unsigned __int64  uint64_t;

 

#endif /* unistd.h  */

ログイン後にコピー

以上がWindows (Visual C) に相当する unistd.h はありますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート