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.
27 lines
855 B
27 lines
855 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File: thkreg.cxx
|
|
//
|
|
// Contents: Contains constants used to read the registry for modifiable
|
|
// WOW behavior for OLE.
|
|
//
|
|
// History: 22-Jul-94 Ricksa Created
|
|
// 09-Jun-95 Susia Chicago optimization added
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
#ifndef _THKREG_H_
|
|
#define _THKREG_H_
|
|
|
|
|
|
// Name of key for OLE WOW special behavior
|
|
#define OLETHK_KEY TEXT("OleCompatibility")
|
|
// Factor by which to slow duration of WOW RPC calls
|
|
#define OLETHK_SLOWRPCTIME_VALUE TEXT("SlowRpcTimeFactor")
|
|
|
|
// Default factor to slow duration of WOW RPC calls
|
|
#define OLETHK_DEFAULT_SLOWRPCTIME 4
|
|
|
|
#endif // _THKREG_H_
|