Как преобразовать дескриптор канала в file_descriptor (int) для protobuf от Google - PullRequest
2 голосов
/ 26 августа 2010

Я пытался использовать дескриптор hPipe, как показано в примере здесь :

  hPipe = CreateNamedPipe( 
      lpszPipename,             // pipe name 
      PIPE_ACCESS_DUPLEX,       // read/write access 
      PIPE_TYPE_MESSAGE |       // message type pipe 
      PIPE_READMODE_MESSAGE |   // message-read mode 
      PIPE_WAIT,                // blocking mode 
      PIPE_UNLIMITED_INSTANCES, // max. instances  
      BUFSIZE,                  // output buffer size 
      BUFSIZE,                  // input buffer size 
      0,                        // client time-out 
      NULL); 

ZeroCopyOutputStream* raw_output = new FileOutputStream(hPipe);
CodedOutputStream* coded_output = new CodedOutputStream(raw_output);

Но получаю ошибку:

'google::protobuf::io::FileOutputStream::FileOutputStream(int,int)' : cannot convert parameter 1 from 'HANDLE' to 'int'

И вотподпись:

FileOutputStream(int file_descriptor, int block_size = -1);

Итак, как преобразовать дескриптор в file_descriptor в c ++?

ОБНОВЛЕНИЕ

Я пытался рекомендовать _open_osfhandle, но кажетсяневерно, отчет:

error C2664: '_open_osfhandle' : cannot convert parameter 1 from 'HANDLE' to 'intptr_t'

1 Ответ

2 голосов
/ 26 августа 2010

Звучит так, как вы хотите: _open_osfhandle.

...