tsrm_win32.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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. | Authors: Daniel Beulshausen <daniel@php4win.de> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef TSRM_WIN32_H
  20. #define TSRM_WIN32_H
  21. #include "TSRM.h"
  22. #include <windows.h>
  23. struct ipc_perm {
  24. int key;
  25. unsigned short uid;
  26. unsigned short gid;
  27. unsigned short cuid;
  28. unsigned short cgid;
  29. unsigned short mode;
  30. unsigned short seq;
  31. };
  32. struct shmid_ds {
  33. struct ipc_perm shm_perm;
  34. int shm_segsz;
  35. time_t shm_atime;
  36. time_t shm_dtime;
  37. time_t shm_ctime;
  38. unsigned short shm_cpid;
  39. unsigned short shm_lpid;
  40. short shm_nattch;
  41. };
  42. typedef struct {
  43. FILE *stream;
  44. HANDLE prochnd;
  45. } process_pair;
  46. typedef struct {
  47. void *addr;
  48. HANDLE info;
  49. HANDLE segment;
  50. struct shmid_ds *descriptor;
  51. } shm_pair;
  52. typedef struct {
  53. process_pair *process;
  54. shm_pair *shm;
  55. int process_size;
  56. int shm_size;
  57. char *comspec;
  58. HANDLE impersonation_token;
  59. PSID impersonation_token_sid;
  60. } tsrm_win32_globals;
  61. #ifdef ZTS
  62. # define TWG(v) TSRMG(win32_globals_id, tsrm_win32_globals *, v)
  63. #else
  64. # define TWG(v) (win32_globals.v)
  65. #endif
  66. #define IPC_PRIVATE 0
  67. #define IPC_CREAT 00001000
  68. #define IPC_EXCL 00002000
  69. #define IPC_NOWAIT 00004000
  70. #define IPC_RMID 0
  71. #define IPC_SET 1
  72. #define IPC_STAT 2
  73. #define IPC_INFO 3
  74. #define SHM_R PAGE_READONLY
  75. #define SHM_W PAGE_READWRITE
  76. #define SHM_RDONLY FILE_MAP_READ
  77. #define SHM_RND FILE_MAP_WRITE
  78. #define SHM_REMAP FILE_MAP_COPY
  79. char * tsrm_win32_get_path_sid_key(const char *pathname TSRMLS_DC);
  80. TSRM_API void tsrm_win32_startup(void);
  81. TSRM_API void tsrm_win32_shutdown(void);
  82. TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env TSRMLS_DC);
  83. TSRM_API FILE *popen(const char *command, const char *type);
  84. TSRM_API int pclose(FILE *stream);
  85. TSRM_API int tsrm_win32_access(const char *pathname, int mode TSRMLS_DC);
  86. TSRM_API int win32_utime(const char *filename, struct utimbuf *buf);
  87. TSRM_API int shmget(int key, int size, int flags);
  88. TSRM_API void *shmat(int key, const void *shmaddr, int flags);
  89. TSRM_API int shmdt(const void *shmaddr);
  90. TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
  91. TSRM_API char *realpath(char *orig_path, char *buffer);
  92. #endif