Re: [1/2] httpapi: add HttpInitialize and HttpTerminate stubs

2009-01-12 Thread Austin English
On Mon, Jan 12, 2009 at 11:33 AM, Andrey Turkin andrey.tur...@gmail.com wrote:

 .Net 3.0 installer needs these
 ---
  dlls/httpapi/httpapi.spec   |2 +
  dlls/httpapi/httpapi_main.c |   42 +
  include/http.h  |   48 
 +++
  3 files changed, 92 insertions(+), 0 deletions(-)
  create mode 100644 include/http.h







diff --git a/dlls/httpapi/httpapi.spec b/dlls/httpapi/httpapi.spec
index aa8fea2..1033eb8 100644
--- a/dlls/httpapi/httpapi.spec
+++ b/dlls/httpapi/httpapi.spec
@@ -18,6 +18,7 @@
 @ stub HttpFilterRawWriteAndAppRead
 @ stub HttpFlushResponseCache
 @ stub HttpGetCounters
+@ stdcall HttpInitialize(long long ptr)
 @ stub HttpInitialize
 @ stub HttpInitializeServerContext
 @ stub HttpOpenAppPool

You forgot to remove the stub entry.

@@ -48,5 +49,6 @@
 @ stub HttpShutdownAppPool
 @ stub HttpShutdownFilter
 @ stub HttpTerminate
+@ stdcall HttpTerminate(long ptr)
 @ stub HttpWaitForDemandStart
 @ stub HttpWaitForDisconnect

Same.

-- 
-Austin




Re: [1/2] httpapi: add HttpInitialize and HttpTerminate stubs

2009-01-12 Thread Andrey Turkin
Austin English wrote:
 On Mon, Jan 12, 2009 at 11:33 AM, Andrey Turkin andrey.tur...@gmail.com 
 wrote:
   
 .Net 3.0 installer needs these
 ---
  dlls/httpapi/httpapi.spec   |2 +
  dlls/httpapi/httpapi_main.c |   42 +
  include/http.h  |   48 
 +++
  3 files changed, 92 insertions(+), 0 deletions(-)
  create mode 100644 include/http.h






 

 diff --git a/dlls/httpapi/httpapi.spec b/dlls/httpapi/httpapi.spec
 index aa8fea2..1033eb8 100644
 --- a/dlls/httpapi/httpapi.spec
 +++ b/dlls/httpapi/httpapi.spec
 @@ -18,6 +18,7 @@
  @ stub HttpFilterRawWriteAndAppRead
  @ stub HttpFlushResponseCache
  @ stub HttpGetCounters
 +@ stdcall HttpInitialize(long long ptr)
  @ stub HttpInitialize
  @ stub HttpInitializeServerContext
  @ stub HttpOpenAppPool

 You forgot to remove the stub entry.

 @@ -48,5 +49,6 @@
  @ stub HttpShutdownAppPool
  @ stub HttpShutdownFilter
  @ stub HttpTerminate
 +@ stdcall HttpTerminate(long ptr)
  @ stub HttpWaitForDemandStart
  @ stub HttpWaitForDisconnect

 Same.

   

Nice catch, that was screwed up rebase. I've sent correct version