diff options
author | Wez Furlong <wez@php.net> | 2002-05-20 22:22:57 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-05-20 22:22:57 +0000 |
commit | 3fca69809d4778982180a7a9171288bac1ff6e2b (patch) | |
tree | a4f12be71b8faee6f067991af88cbe52d8bb9482 /sapi/activescript/php4as_scriptengine.h | |
parent | 601cf3690c0fdfc8fc4ad7153018be5c3c4bab30 (diff) | |
download | php-git-3fca69809d4778982180a7a9171288bac1ff6e2b.tar.gz |
Use the GIT for inter-thread marshalling.
Diffstat (limited to 'sapi/activescript/php4as_scriptengine.h')
-rw-r--r-- | sapi/activescript/php4as_scriptengine.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sapi/activescript/php4as_scriptengine.h b/sapi/activescript/php4as_scriptengine.h index 1d2314b5e2..a996b24138 100644 --- a/sapi/activescript/php4as_scriptengine.h +++ b/sapi/activescript/php4as_scriptengine.h @@ -38,12 +38,13 @@ enum { PHPSE_SET_SITE, PHPSE_ADD_TYPELIB, PHPSE_TRIGGER_ERROR, - PHPSE_GET_DISPATCH + PHPSE_GET_DISPATCH, + PHPSE_DUMMY_TICK, }; struct php_active_script_get_dispatch_info { LPCOLESTR pstrItemName; - LPSTREAM dispatch; + DWORD dispatch; }; struct php_active_script_add_named_item_info { @@ -52,7 +53,7 @@ struct php_active_script_add_named_item_info { IUnknown *punk; ITypeInfo *ptyp; IDispatch *pdisp; - LPSTREAM marshal; + DWORD marshal; }; struct php_active_script_add_scriptlet_info { @@ -91,7 +92,7 @@ struct php_active_script_parse_proc_info { /* [in] */ DWORD dwSourceContextCookie; /* [in] */ ULONG ulStartingLineNumber; /* [in] */ DWORD dwFlags; - /* [out] */ IDispatch **ppdisp; + DWORD dispcookie; }; struct php_active_script_add_tlb_info { |