We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49fe59e commit 9f27624Copy full SHA for 9f27624
win32/ftok.c
@@ -22,7 +22,7 @@
22
#include <sys/stat.h>
23
24
25
-key_t
+PHPAPI key_t
26
ftok(const char *pathname, int proj_id)
27
{
28
HANDLE fh;
win32/ipc.h
@@ -19,9 +19,11 @@
19
#ifndef PHP_WIN32_IPC_H
20
#define PHP_WIN32_IPC_H 1
21
+#include "php.h"
+
typedef int key_t;
-key_t ftok(const char *path, int id);
+PHPAPI key_t ftok(const char *path, int id);
29
#endif /* PHP_WIN32_IPC_H */
0 commit comments