29 lines
538 B
C
29 lines
538 B
C
/*****************************************************************************
|
|
*
|
|
* StiCPlus.cpp
|
|
*
|
|
* Copyright (C) Microsoft Corporation, 1996 - 1999 All Rights Reserved.
|
|
*
|
|
* Abstract:
|
|
*
|
|
* Header file that contains any C++ helper functions needed by Sti
|
|
* (which is C)
|
|
*
|
|
* Contents:
|
|
*
|
|
*
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HRESULT GetLockMgr();
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C" */
|
|
#endif
|
|
|
|
|