(40 . 11)(40 . 6)
78 static const int COINBASE_MATURITY = 100;
79 // Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
80 static const int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC
81 #ifdef USE_UPNP
82 static const int fHaveUPnP = true;
83 #else
84 static const int fHaveUPnP = false;
85 #endif
86
87
88
(74 . 7)(69 . 6)
90 extern int nLimitProcessors;
91 extern int fMinimizeToTray;
92 extern int fMinimizeOnClose;
93 extern int fUseUPnP;
94
95
96