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.
62 lines
1.3 KiB
62 lines
1.3 KiB
/*++
|
|
|
|
Copyright (c) 2001, Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
api.cpp
|
|
|
|
Abstract:
|
|
|
|
This file implements the CActiveIMMAppEx Class.
|
|
|
|
Author:
|
|
|
|
Revision History:
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
#include "private.h"
|
|
#include "list.h"
|
|
#include "globals.h"
|
|
|
|
|
|
//+---------------------------------------------------------------------------
|
|
//
|
|
// CGuidMapList
|
|
// Allocated by Global data object !!
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
extern CGuidMapList *g_pGuidMapList;
|
|
|
|
|
|
//+---------------------------------------------------------------------------
|
|
//
|
|
// MsimtfIsWindowFiltered
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
extern "C" BOOL WINAPI MsimtfIsWindowFiltered(HWND hwnd)
|
|
{
|
|
if (!g_pGuidMapList)
|
|
return FALSE;
|
|
|
|
return g_pGuidMapList->_IsWindowFiltered(hwnd);
|
|
}
|
|
|
|
//+---------------------------------------------------------------------------
|
|
//
|
|
// MsimtfIsGuidMapEnable
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
extern "C" BOOL WINAPI MsimtfIsGuidMapEnable(HIMC himc, BOOL *pbGuidmap)
|
|
{
|
|
if (!g_pGuidMapList)
|
|
return FALSE;
|
|
|
|
return g_pGuidMapList->_IsGuidMapEnable(himc, pbGuidmap);
|
|
}
|