os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/src/tclSymbianGlobals.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/src/tclSymbianGlobals.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,84 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Provides a Symbian version of the main program and Tcl_AppInit
    1.18 +// procedure for Tcl applications (without Tk).
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#ifndef _TCLSYMBIANGLOBALS
    1.23 +#define _TCLSYMBIANGLOBALS
    1.24 +
    1.25 +#include "tcl.h"
    1.26 +#include "tclInt.h"
    1.27 +
    1.28 +#ifdef __WINSCW__ 
    1.29 +
    1.30 +//Macro to replace the variable with our new method
    1.31 +#define tmpFileName (*(tempFileNameType)get_gFileName(0))
    1.32 +#define fifoFileName (*(tempFileNameType)get_gFileName(1))
    1.33 +#define inFileName (*(tempFileNameType)get_gFileName(2))
    1.34 +#define outFileName (*(tempFileNameType)get_gFileName(3))
    1.35 +#define errFileName (*(tempFileNameType)get_gFileName(4))
    1.36 +#define inFileName1 (*(tempFileNameType)get_gFileName(5))
    1.37 +#define outFileName1 (*(tempFileNameType)get_gFileName(6))
    1.38 +#define errFileName1 (*(tempFileNameType)get_gFileName(7))
    1.39 +
    1.40 +#define getdataKey(x) (*(Tcl_ThreadDataKey*)get_dataKey(x))
    1.41 +/*  dataKey[KMaxDataKey]
    1.42 + *  tclEvent.c[0]
    1.43 + *  tclAsync.c[1]
    1.44 + *  tclFileName.c[2]
    1.45 + *  tclIO.c[3]
    1.46 + *  tclIOUtil.c[4]
    1.47 + *  tclNotify.c[5]
    1.48 + *  tclRegexp.c[6]
    1.49 + *  tclTimer.c[7]
    1.50 + *  tclUnixNotify.c[8]
    1.51 +*/
    1.52 +
    1.53 +#define tclExecutableName (*get_tclExecutableName())
    1.54 +#define tclNativeExecutableName (*get_tclNativeExecutableName())
    1.55 +#define inFinalize (*(int *)get_inFinalize())
    1.56 +#define subsystemsInitialized (*(int *)get_subsystemsInitialized())
    1.57 +#define defaultEncoding (*(Tcl_Encoding*)get_defaultEncoding())
    1.58 +#define systemEncoding (*(Tcl_Encoding*)get_systemEncoding())
    1.59 +#define encodingTable (*(Tcl_HashTable*)get_encodingTable())
    1.60 +#define keyRecord (*(SyncObjRecord*)get_keyRecord())
    1.61 +#define typeTable (*(Tcl_HashTable*)get_typeTable())
    1.62 +#define typeTableInitialized (*(int *)get_typeTableInitialized())
    1.63 +#define encodingsInitialized (*(int *)get_encodingsInitialized())
    1.64 +#define tclDefaultEncodingDir (*get_tclDefaultEncodingDir())
    1.65 +#define tclLibraryPathStr (*get_tclLibraryPathStr())
    1.66 +#define opTableInitialized (*(int *)get_opTableInitialized())
    1.67 +#define opHashTable (*(Tcl_HashTable*)get_opHashTable())
    1.68 +#define auxDataTypeTableInitialized (*(int *)get_auxDataTypeTableInitialized())
    1.69 +#define auxDataTypeTable (*(Tcl_HashTable*)get_auxDataTypeTable())
    1.70 +#define glcwdPathPtr (*(Tcl_Obj**)get_cwdPathPtr())
    1.71 +#define glcwdPathEpoch (*(int *)get_cwdPathEpoch())
    1.72 +#define tclPlatform (*(TclPlatformType *)get_tclPlatform())
    1.73 +
    1.74 +typedef char (*tempFileNameType)[L_tmpnam + 9];
    1.75 +
    1.76 +#else
    1.77 +extern char tmpFileName[L_tmpnam + 9];
    1.78 +extern char fifoFileName[L_tmpnam + 9];
    1.79 +extern char inFileName[L_tmpnam + 9];
    1.80 +extern char outFileName[L_tmpnam + 9];
    1.81 +extern char errFileName[L_tmpnam + 9];
    1.82 +extern char inFileName1[L_tmpnam + 9];
    1.83 +extern char outFileName1[L_tmpnam + 9];
    1.84 +extern char errFileName1[L_tmpnam + 9];	
    1.85 +#endif
    1.86 +
    1.87 +#endif /* _TCLSYMBIANGLOBALS */