mirror of https://github.com/tongzx/nt5src
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.
30 lines
771 B
30 lines
771 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File: osift.hxx
|
|
//
|
|
// Contents: Definition of server side sift object
|
|
//
|
|
// Functions: DbgDllSetSiftObject - sets up global sift pointer
|
|
//
|
|
// History: 6-01-94 t-chripi Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __OSIFT_HXX__
|
|
|
|
#define __OSIFT_HXX__
|
|
|
|
#include <sift.hxx>
|
|
|
|
extern ISift *g_psftSiftObject;
|
|
|
|
#define SIMULATE_FAILURE( dwRes ) \
|
|
((NULL != g_psftSiftObject) && \
|
|
(g_psftSiftObject->SimFail( ( dwRes ) ))) \
|
|
|
|
#endif // __OSIFT_HXX__
|
|
|
|
|