We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d3c9e commit d7c886dCopy full SHA for d7c886d
ext/shmop/php_shmop.h
@@ -32,17 +32,6 @@ PHP_MINFO_FUNCTION(shmop);
32
# include "win32/ipc.h"
33
#endif
34
35
-typedef struct php_shmop
36
-{
37
- int shmid;
38
- key_t key;
39
- int shmflg;
40
- int shmatflg;
41
- char *addr;
42
- zend_long size;
43
- zend_object std;
44
-} php_shmop;
45
-
46
#else
47
48
#define phpext_shmop_ptr NULL
ext/shmop/shmop.c
@@ -59,6 +59,17 @@ zend_module_entry shmop_module_entry = {
59
ZEND_GET_MODULE(shmop)
60
61
62
+typedef struct php_shmop
63
+{
64
+ int shmid;
65
+ key_t key;
66
+ int shmflg;
67
+ int shmatflg;
68
+ char *addr;
69
+ zend_long size;
70
+ zend_object std;
71
+} php_shmop;
72
+
73
zend_class_entry *shmop_ce;
74
static zend_object_handlers shmop_object_handlers;
75
0 commit comments