アットウィキロゴ

LocalCache

概要

変数名のキャッシュ


ソース

/*
 * Will be grown to contain: pointers to the varnames (allocated at the end),
 * plus the init values for each variable (suitable to be memcopied on init)
 */

typedef struct LocalCache {
    int refCount;
    int numVars;
    [[Tcl_Obj]] *varName0;
} LocalCache;
最終更新:2011年11月04日 14:42