blob: f6559bd9dfcda71763f6ec3b60329223232a9696 (
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
66
|
/***
*dispdbug.h - oledisp debug function definitions.
*
* Copyright (C) 1992, Microsoft Corporation. All Rights Reserved.
* Information Contained Herein Is Proprietary and Confidential.
*
*Purpose:
* This module defines the private oledisp debug support routines.
*
*Revision History:
*
* [00] 15-Oct-92 bradlo: Created.
*
*Implementation Notes:
*
*****************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
// "printf" to the dbwin debug output window.
//
void DbPrintf(char FAR*, ...);
// VARTYPE dumpers
TCHAR FAR* DbSzOfVt(VARTYPE);
void DbPrVt(VARTYPE);
void DbPrData(void FAR*, VARTYPE);
// VARIANTARG dumpers
char FAR* SzOfVarg(VARIANTARG FAR*);
void DbPrVarg(VARIANTARG FAR*);
// Excepinfo dumper
void DbPrExcepinfo(EXCEPINFO FAR*);
#if OE_WIN32 && 0
void DbPrExcepinfoW(WEXCEPINFO FAR*);
#endif
// DISPPARAMS dumper
void DbPrParams(DISPPARAMS FAR*);
// SCODE dumper
TCHAR FAR* DbSzOfScode(SCODE);
// TypeInfo dumpber
void PrTi(ITypeInfo FAR*);
#ifdef __cplusplus
}
#endif
|