pi3web_sapi.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #ifndef _PI3WEB_SAPI_H_
  2. #define _PI3WEB_SAPI_H_
  3. #ifdef PHP_WIN32
  4. # include <windows.h>
  5. # ifdef PHP5PI3WEB_EXPORTS
  6. # define MODULE_API __declspec(dllexport)
  7. # else
  8. # define MODULE_API __declspec(dllimport)
  9. # endif
  10. #else
  11. # if defined(__GNUC__) && __GNUC__ >= 4
  12. # define MODULE_API __attribute__ ((visibility("default")))
  13. # else
  14. # define MODULE_API
  15. # endif
  16. # define far
  17. typedef int BOOL;
  18. typedef void far *LPVOID;
  19. typedef unsigned long DWORD;
  20. typedef DWORD far *LPDWORD;
  21. typedef char CHAR;
  22. typedef CHAR *LPSTR;
  23. typedef unsigned char BYTE;
  24. typedef BYTE far *LPBYTE;
  25. #endif
  26. typedef LPVOID HCONN;
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. #define PHP_MODE_STANDARD 1
  31. #define PHP_MODE_HIGHLIGHT 2
  32. #define PHP_MODE_INDENT 3
  33. #define PHP_MODE_LINT 4
  34. //
  35. // passed to the procedure on a new request
  36. //
  37. typedef struct _CONTROL_BLOCK {
  38. DWORD cbSize; // size of this struct.
  39. HCONN ConnID; // Context number not to be modified!
  40. DWORD dwHttpStatusCode; // HTTP Status code
  41. CHAR lpszLogData[80]; // null terminated log info
  42. LPSTR lpszMethod; // REQUEST_METHOD
  43. LPSTR lpszQueryString; // QUERY_STRING
  44. LPSTR lpszPathInfo; // PATH_INFO
  45. LPSTR lpszPathTranslated; // PATH_TRANSLATED
  46. LPSTR lpszFileName; // FileName to PHP3 physical file
  47. LPSTR lpszUri; // The request URI
  48. LPSTR lpszReq; // The whole HTTP request line
  49. LPSTR lpszUser; // The authenticated user
  50. LPSTR lpszPassword; // The authenticated password
  51. DWORD cbTotalBytes; // Total bytes indicated from client
  52. DWORD cbAvailable; // Available number of bytes
  53. LPBYTE lpbData; // pointer to cbAvailable bytes
  54. LPSTR lpszContentType; // Content type of client data
  55. DWORD dwBehavior; // PHP behavior (standard, highlight, intend
  56. LPVOID (* GetVariableNames) (HCONN hConn);
  57. BOOL (* GetServerVariable) ( HCONN hConn,
  58. LPSTR lpszVariableName,
  59. LPVOID lpvBuffer,
  60. LPDWORD lpdwSize );
  61. BOOL (* WriteClient) ( HCONN hConn,
  62. LPVOID lpvBuffer,
  63. LPDWORD lpdwBytes,
  64. DWORD dwReserved );
  65. BOOL (* ReadClient) ( HCONN hConn,
  66. LPVOID lpvBuffer,
  67. LPDWORD lpdwSize );
  68. BOOL (* SendHeaderFunction)( HCONN hConn,
  69. LPDWORD lpdwSize,
  70. LPDWORD lpdwDataType );
  71. } CONTROL_BLOCK, *LPCONTROL_BLOCK;
  72. MODULE_API DWORD PHP5_wrapper(LPCONTROL_BLOCK lpCB);
  73. MODULE_API BOOL PHP5_startup();
  74. MODULE_API BOOL PHP5_shutdown();
  75. // the following type declaration is for the server side
  76. typedef DWORD ( * PFN_WRAPPERFUNC )( CONTROL_BLOCK *pCB );
  77. #ifdef __cplusplus
  78. }
  79. #endif
  80. #endif // end definition _PI3WEB_SAPI_H_