123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef PHP_WIN32_IPC_H
- #define PHP_WIN32_IPC_H 1
- #ifdef PHP_EXPORTS
- # define PHP_WIN32_IPC_API __declspec(dllexport)
- #else
- # define PHP_WIN32_IPC_API __declspec(dllimport)
- #endif
- typedef int key_t;
- PHP_WIN32_IPC_API key_t ftok(const char *path, int id);
- #endif
|