File: tct3nl.cpp

package info (click to toggle)
qtads 2.1.6-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,156 kB
  • ctags: 18,767
  • sloc: cpp: 133,078; ansic: 26,048; xml: 18; makefile: 11
file content (111 lines) | stat: -rw-r--r-- 2,493 bytes parent folder | download | duplicates (9)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#ifdef RCSID
static char RCSid[] =
"$Header$";
#endif

/* 
 *   Copyright (c) 1999, 2002 Michael J. Roberts.  All Rights Reserved.
 *   
 *   Please see the accompanying license file, LICENSE.TXT, for information
 *   on using and copying this software.  
 */
/*
Name
  tct3nl.cpp - T3 NO LINKER module
Function
  This module can be linked with programs that don't require any
  linker functionality.  This module contains dummy entrypoints
  for functions and methods that would normally be linked from
  tct3img.cpp, which contains the actual implementations of these
  methods.

Notes
  
Modified
  11/22/99 MJRoberts  - Creation
*/

#include "t3std.h"
#include "os.h"
#include "tct3.h"


/* ------------------------------------------------------------------------ */
/*
 *   Symbol table entry routines for writing a symbol to the global symbol
 *   table in the debug records in the image file.  When we don't include
 *   linking functionality in a program, these entrypoints will never be
 *   called (but they're needed to link anything that references a
 *   CTcSymbol subclass, since they're virtual functions in those classes) 
 */

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymFunc::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymObj::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}

/*
 *   build the dictionary 
 */
void CTcSymObj::build_dictionary()
{
    assert(FALSE);
}

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymProp::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymEnum::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymMetaclass::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymBif::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}

/* 
 *   write the symbol to an image file's global symbol table 
 */
int CTcSymExtfn::write_to_image_file_global(class CVmImageWriter *)
{
    assert(FALSE);
    return FALSE;
}