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.
42 lines
864 B
42 lines
864 B
//+------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1999, Microsoft Corporation
|
|
//
|
|
// File: catglobals.h
|
|
//
|
|
// Contents: Global varialbles and utility functions
|
|
//
|
|
// Functions: CatInitGlobals
|
|
// CatDeinitGlobals
|
|
//
|
|
// History:
|
|
// jstamerj 1999/03/03 12:51:30: Created.
|
|
//
|
|
//-------------------------------------------------------------
|
|
#ifndef __CATGLOBALS_H__
|
|
#define __CATGLOBALS_H__
|
|
|
|
#include <windows.h>
|
|
#include <rwex.h>
|
|
#include <tran_evntlog.h>
|
|
|
|
//
|
|
// Global variables:
|
|
//
|
|
extern CExShareLock g_InitShareLock;
|
|
extern DWORD g_InitRefCount;
|
|
|
|
//
|
|
// Functions:
|
|
//
|
|
HRESULT CatInitGlobals();
|
|
VOID CatDeinitGlobals();
|
|
|
|
//
|
|
// Store layer init/deinit functions
|
|
//
|
|
HRESULT CatStoreInitGlobals();
|
|
VOID CatStoreDeinitGlobals();
|
|
|
|
|
|
#endif //__CATGLOBALS_H__
|