You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
810 B
29 lines
810 B
//--------------------------------------------------------------------
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// olist.h
|
|
//
|
|
// Maintain list of SERVER_OVERLAPPED structures, used in passing
|
|
// the overlapped structure pointers between the RpcProxy filter
|
|
// and its ISAPI. This happens on initial connection.
|
|
//
|
|
// Author:
|
|
// 05-04-98 Edward Reus Initial version.
|
|
//
|
|
//--------------------------------------------------------------------
|
|
|
|
|
|
#ifndef OLIST_H
|
|
#define OLIST_H
|
|
|
|
extern BOOL InitializeOverlappedList();
|
|
|
|
extern void UninitializeOverlappedList(void);
|
|
|
|
extern DWORD SaveOverlapped( SERVER_OVERLAPPED *pOverlapped );
|
|
|
|
extern BOOL IsValidOverlappedIndex( DWORD dwIndex );
|
|
|
|
extern SERVER_OVERLAPPED *GetOverlapped( DWORD dwIndex );
|
|
|
|
#endif
|