blob: 5e2d7abd5ac66d3bcd20162407f714de682d8578 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: info.cpp
//
// Contents: RegisterWithCommnot and other hacks to build in
// the cairo environment
//
// Classes:
//
// Functions:
//
// History: dd-mmm-yy Author Comment
// 26-Oct-93 alexgo snagged and hacked from RickSa's stuff
//
// Notes:
// This stuff is OBSOLETE!! Remove it whenever BryanT
// removes the calls from the dll loaders...
//
//--------------------------------------------------------------------------
#include <le2int.h>
// BUGBUG: Temporary definitions of functions these probably can be removed
// as they are probably obsolete.
//+-------------------------------------------------------------------
//
// Function: RegisterWithCommnot
//
// Synopsis: Used by Cairo to work around DLL unloading problems
//
// Arguments: <none>
//
// History: 06-Oct-92 BryanT Created
//
//--------------------------------------------------------------------
STDAPI_(void) RegisterWithCommnot( void )
{
}
//+-------------------------------------------------------------------
//
// Function: DeRegisterWithCommnot
//
// Synopsis: Used by Cairo to work around DLL unloading problems
//
// Arguments: <none>
//
// History: 06-Oct-92 BryanT Created
//
// Notes: BUGBUG: Keep in touch with BryanT to see if this is
// obsolete.
//
//--------------------------------------------------------------------
STDAPI_(void) DeRegisterWithCommnot( void )
{
}
|