www.pudn.com > POLL_SRC.rar > Define.pas


unit Define; 
 
interface 
 
uses 
  SysUtils; 
 
type 
  TBtnStat = (bsRunning, bsPaused, bsNull); 
 
const 
  PRODUCT_NAME             =       '°ÂÔ˸èÇúͶƱÆ÷LY°æ'; 
  REG_KEY                  =       'flying99koo';  
  IMG_CODE_PATH            =       'ImgCode\'; 
  ENGINE_URL               =       'http://qianghua.greatweb.cn/blog/'; 
 
var 
  AppPath : string; 
  RndSeed : string; 
  bUseProxy : boolean; 
  strProxyHost : string; 
  strProxyPort : string; 
  bNeedAuth : boolean; 
  strProxyUser : string; 
  strProxyPass : string; 
  strRegCode : string; 
  TimeTick : Integer; 
  bIsReg : boolean; 
 
implementation 
 
end.