46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
// TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (C) 2003 Microsoft Corporation. All rights reserved.
|
|
//
|
|
// Globals.cpp
|
|
//
|
|
// Global variables
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "globals.h"
|
|
|
|
HINSTANCE g_hInst;
|
|
|
|
LONG g_cRefDll = -1; // -1 /w no refs, for win95 InterlockedIncrement/Decrement compat
|
|
|
|
CRITICAL_SECTION g_cs;
|
|
|
|
/* e7ea138e-69f8-11d7-a6ea-00065b84435c */
|
|
const CLSID c_clsidTextService = {
|
|
0xe7ea138e,
|
|
0x69f8,
|
|
0x11d7,
|
|
{0xa6, 0xea, 0x00, 0x06, 0x5b, 0x84, 0x43, 0x5c}
|
|
};
|
|
/* e7ea138f-69f8-11d7-a6ea-00065b84435c */
|
|
const GUID c_guidProfile = {
|
|
0xe7ea138f,
|
|
0x69f8,
|
|
0x11d7,
|
|
{0xa6, 0xea, 0x00, 0x06, 0x5b, 0x84, 0x43, 0x5c}
|
|
};
|
|
/* 41f46e67-86d5-49fb-a1d9-3dc0941a66a3 */
|
|
const GUID c_guidLangBarItemButton = {
|
|
0x41f46e67,
|
|
0x86d5,
|
|
0x49fb,
|
|
{0xa1, 0xd9, 0x3d, 0xc0, 0x94, 0x1a, 0x66, 0xa3}
|
|
};
|
|
|