#include "warningmode.h"Include dependency graph for warningmode.c:

Go to the source code of this file.
Functions | |
| BOOL | setWarningMode (BOOL ON) |
| BOOL | getWarningMode (void) |
| int C2F() | iswarningon (int *rep) |
Variables | |
| BOOL | WARNINGMODEON = TRUE |
| BOOL getWarningMode | ( | void | ) |
Definition at line 15 of file warningmode.c.
References WARNINGMODEON.
Referenced by C2F(), CallDynInterf(), CreateCppShared(), CreateShared(), isciulink(), Sci_dlopen(), Sci_dlsym(), SciLibLoad(), SciLink(), SetArgv1(), ShowDynLinks(), and userlk().
00016 { 00017 return WARNINGMODEON; 00018 }
Here is the caller graph for this function:

Definition at line 20 of file warningmode.c.
References rep, and WARNINGMODEON.
00021 { 00022 if (WARNINGMODEON) *rep=1; 00023 else *rep=0; 00024 return 0; 00025 }
| BOOL setWarningMode | ( | BOOL | ON | ) |
Definition at line 9 of file warningmode.c.
References WARNINGMODEON.
Referenced by C2F().
00010 { 00011 WARNINGMODEON = ON; 00012 return WARNINGMODEON; 00013 }
Here is the caller graph for this function:

| BOOL WARNINGMODEON = TRUE |
Definition at line 7 of file warningmode.c.
Referenced by getWarningMode(), iswarningon(), and setWarningMode().
1.5.1