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.
39 lines
574 B
39 lines
574 B
/*++
|
|
|
|
Copyright (c) 2001, Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
globals.h
|
|
|
|
Abstract:
|
|
|
|
This file defines the global data.
|
|
|
|
Author:
|
|
|
|
Revision History:
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _GLOBAL_H_
|
|
#define _GLOBAL_H_
|
|
|
|
|
|
#include "ciccs.h"
|
|
|
|
UINT GetCodePageFromLangId(LCID lcid);
|
|
HRESULT GetCompartment(IUnknown *punk, REFGUID rguidComp, ITfCompartment **ppComp);
|
|
|
|
#if !defined(OLD_AIMM_ENABLED)
|
|
BOOL RunningInExcludedModule();
|
|
#endif // OLD_AIMM_ENABLED
|
|
|
|
extern CCicCriticalSectionStatic g_cs;
|
|
|
|
extern HINSTANCE g_hInst;
|
|
|
|
#endif // _GLOBAL_H_
|