source: trunk/src/oleaut32/oleaut32.cpp@ 6504

Last change on this file since 6504 was 6504, checked in by sandervl, 24 years ago

olepicture + typelib wine updates

File size: 1.2 KB
Line 
1/* $Id: oleaut32.cpp,v 1.9 2001-08-10 19:22:23 sandervl Exp $ */
2/*
3 * OLEAUT32
4 *
5 * Copyright 1999 Sander van Leeuwen (OS/2 Port 990815)
6 *
7 * Based on Wine code: (ole\compobj.c)
8 *
9 * Copyright 1995 Martin von Loewis
10 * Copyright 1998 Justin Bradford
11 * Copyright 1999 Francis Beaudet
12 * Copyright 1999 Sylvain St-Germain
13 *
14 * Project Odin Software License can be found in LICENSE.TXT
15 *
16 * TODO: OaBuildVersion has to be changed (as well as GetVersion in kernel32)
17 */
18
19#include "oleaut32.h"
20#ifdef DEBUG
21#define DEBUG_RUNTIME
22#endif
23
24#include <debugdefs.h>
25
26//******************************************************************************
27//Used to open any private logfiles used in oleaut32
28//******************************************************************************
29void OpenPrivateLogFiles()
30{
31#ifdef DEBUG
32// OpenPrivateLogFileTypelib();
33#endif
34}
35//******************************************************************************
36//Used to close all private logfiles used in oleaut32
37//******************************************************************************
38void ClosePrivateLogFiles()
39{
40#ifdef DEBUG
41// ClosePrivateLogFileTypelib();
42#endif
43}
44
45
Note: See TracBrowser for help on using the repository browser.