proc_open.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Wez Furlong <wez@thebrainroom.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef PHP_WIN32
  19. typedef HANDLE php_file_descriptor_t;
  20. typedef DWORD php_process_id_t;
  21. #else
  22. typedef int php_file_descriptor_t;
  23. typedef pid_t php_process_id_t;
  24. #endif
  25. /* Environment block under win32 is a NUL terminated sequence of NUL terminated
  26. * name=value strings.
  27. * Under unix, it is an argv style array.
  28. * */
  29. typedef struct _php_process_env {
  30. char *envp;
  31. #ifndef PHP_WIN32
  32. char **envarray;
  33. #endif
  34. } php_process_env_t;
  35. struct php_process_handle {
  36. php_process_id_t child;
  37. #ifdef PHP_WIN32
  38. HANDLE childHandle;
  39. #endif
  40. int npipes;
  41. zend_resource **pipes;
  42. char *command;
  43. int is_persistent;
  44. php_process_env_t env;
  45. };