亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? inscom.c

?? clips源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號:
   if (argno > 0)     {      if (EnvArgTypeCheck(theEnv,"instances",1,SYMBOL,&temp) == FALSE)        return;      theDefmodule = EnvFindDefmodule(theEnv,DOToString(temp));      if ((theDefmodule != NULL) ? FALSE :          (strcmp(DOToString(temp),"*") != 0))        {         SetEvaluationError(theEnv,TRUE);         ExpectedTypeError1(theEnv,"instances",1,"defmodule name");         return;        }      if (argno > 1)        {         if (EnvArgTypeCheck(theEnv,"instances",2,SYMBOL,&temp) == FALSE)           return;         className = DOToString(temp);         if (LookupDefclassAnywhere(theEnv,(struct defmodule *) theDefmodule,className) == NULL)           {            if (strcmp(className,"*") == 0)              className = NULL;            else              {               ClassExistError(theEnv,"instances",className);                 return;              }           }         if (argno > 2)           {            if (EnvArgTypeCheck(theEnv,"instances",3,SYMBOL,&temp) == FALSE)              return;            if (strcmp(DOToString(temp),ALL_QUALIFIER) != 0)              {               SetEvaluationError(theEnv,TRUE);               ExpectedTypeError1(theEnv,"instances",3,"keyword \"inherit\"");               return;              }            inheritFlag = TRUE;           }        }     }   EnvInstances(theEnv,WDISPLAY,theDefmodule,className,inheritFlag);  }/********************************************************  NAME         : PPInstanceCommand  DESCRIPTION  : Displays the current slot-values                   of an instance  INPUTS       : None  RETURNS      : Nothing useful  SIDE EFFECTS : None  NOTES        : H/L Syntax : (ppinstance <instance>) ********************************************************/globle void PPInstanceCommand(  void *theEnv)  {   INSTANCE_TYPE *ins;   if (CheckCurrentMessage(theEnv,"ppinstance",TRUE) == FALSE)     return;   ins = GetActiveInstance(theEnv);   if (ins->garbage == 1)     return;   PrintInstance(theEnv,WDISPLAY,ins,"\n");   EnvPrintRouter(theEnv,WDISPLAY,"\n");  }/***************************************************************  NAME         : EnvInstances  DESCRIPTION  : Lists instances of classes  INPUTS       : 1) The logical name for the output                 2) Address of the module (NULL for all classes)                 3) Name of the class                    (NULL for all classes in specified module)                 4) A flag indicating whether to print instances                    of subclasses or not  RETURNS      : Nothing useful  SIDE EFFECTS : None  NOTES        : None **************************************************************/globle void EnvInstances(  void *theEnv,  char *logicalName,  void *theVModule,  char *className,  int inheritFlag)  {   int id;   struct defmodule *theModule;   long count = 0L;   /* ===========================================      Grab a traversal id to avoid printing out      instances twice due to multiple inheritance      =========================================== */  if ((id = GetTraversalID(theEnv)) == -1)    return;  SaveCurrentModule(theEnv);   /* ====================================      For all modules, print out instances      of specified class(es)      ==================================== */   if (theVModule == NULL)     {      theModule = (struct defmodule *) EnvGetNextDefmodule(theEnv,NULL);      while (theModule != NULL)        {         if (GetHaltExecution(theEnv) == TRUE)           {            RestoreCurrentModule(theEnv);            ReleaseTraversalID(theEnv);            return;           }         EnvPrintRouter(theEnv,logicalName,EnvGetDefmoduleName(theEnv,(void *) theModule));         EnvPrintRouter(theEnv,logicalName,":\n");         EnvSetCurrentModule(theEnv,(void *) theModule);         count += ListInstancesInModule(theEnv,id,logicalName,className,inheritFlag,TRUE);         theModule = (struct defmodule *) EnvGetNextDefmodule(theEnv,(void *) theModule);        }     }   /* ====================================      For the specified module, print out      instances of the specified class(es)      ==================================== */   else     {      EnvSetCurrentModule(theEnv,(void *) theVModule);      count = ListInstancesInModule(theEnv,id,logicalName,className,inheritFlag,FALSE);     }   RestoreCurrentModule(theEnv);   ReleaseTraversalID(theEnv);   if (EvaluationData(theEnv)->HaltExecution == FALSE)     PrintTally(theEnv,logicalName,count,"instance","instances");  }#endif/*********************************************************  NAME         : EnvMakeInstance  DESCRIPTION  : C Interface for creating and                   initializing a class instance  INPUTS       : The make-instance call string,                    e.g. "([bill] of man (age 34))"  RETURNS      : The instance address if instance created,                    NULL otherwise  SIDE EFFECTS : Creates the instance and returns                    the result in caller's buffer  NOTES        : None *********************************************************/globle void *EnvMakeInstance(  void *theEnv,  char *mkstr)  {   char *router = "***MKINS***";   struct token tkn;   EXPRESSION *top;   DATA_OBJECT result;   result.type = SYMBOL;   result.value = EnvFalseSymbol(theEnv);   if (OpenStringSource(theEnv,router,mkstr,0) == 0)     return(NULL);   GetToken(theEnv,router,&tkn);   if (tkn.type == LPAREN)     {      top = GenConstant(theEnv,FCALL,(void *) FindFunction(theEnv,"make-instance"));      if (ParseSimpleInstance(theEnv,top,router) != NULL)        {         GetToken(theEnv,router,&tkn);         if (tkn.type == STOP)           {            ExpressionInstall(theEnv,top);            EvaluateExpression(theEnv,top,&result);            ExpressionDeinstall(theEnv,top);           }         else           SyntaxErrorMessage(theEnv,"instance definition");         ReturnExpression(theEnv,top);        }     }   else     SyntaxErrorMessage(theEnv,"instance definition");   CloseStringSource(theEnv,router);   if ((EvaluationData(theEnv)->CurrentEvaluationDepth == 0) && (! CommandLineData(theEnv)->EvaluatingTopLevelCommand) &&       (EvaluationData(theEnv)->CurrentExpression == NULL))     { PeriodicCleanup(theEnv,TRUE,FALSE); }   if ((result.type == SYMBOL) && (result.value == EnvFalseSymbol(theEnv)))     return(NULL);   return((void *) FindInstanceBySymbol(theEnv,(SYMBOL_HN *) result.value));  }/***************************************************************  NAME         : EnvCreateRawInstance  DESCRIPTION  : Creates an empty of instance of the specified                   class.  No slot-overrides or class defaults                   are applied.  INPUTS       : 1) Address of class                 2) Name of the new instance  RETURNS      : The instance address if instance created,                    NULL otherwise  SIDE EFFECTS : Old instance of same name deleted (if possible)  NOTES        : None ***************************************************************/globle void *EnvCreateRawInstance(  void *theEnv,  void *cptr,  char *iname)  {   return((void *) BuildInstance(theEnv,(SYMBOL_HN *) EnvAddSymbol(theEnv,iname),(DEFCLASS *) cptr,FALSE));  }/***************************************************************************  NAME         : EnvFindInstance  DESCRIPTION  : Looks up a specified instance in the instance hash table  INPUTS       : Name-string of the instance  RETURNS      : The address of the found instance, NULL otherwise  SIDE EFFECTS : None  NOTES        : None ***************************************************************************/globle void *EnvFindInstance(  void *theEnv,  void *theModule,  char *iname,  unsigned searchImports)  {   SYMBOL_HN *isym;   isym = FindSymbolHN(theEnv,iname);   if (isym == NULL)     return(NULL);   if (theModule == NULL)     theModule = (void *) EnvGetCurrentModule(theEnv);   return((void *) FindInstanceInModule(theEnv,isym,(struct defmodule *) theModule,                                        ((struct defmodule *) EnvGetCurrentModule(theEnv)),searchImports));  }/***************************************************************************  NAME         : EnvValidInstanceAddress  DESCRIPTION  : Determines if an instance address is still valid  INPUTS       : Instance address  RETURNS      : 1 if the address is still valid, 0 otherwise  SIDE EFFECTS : None  NOTES        : None ***************************************************************************/#if IBM_TBC#pragma argsused#endifgloble int EnvValidInstanceAddress(  void *theEnv,  void *iptr)  {#if MAC_MCW || IBM_MCW || MAC_XCD#pragma unused(theEnv)#endif   return((((INSTANCE_TYPE *) iptr)->garbage == 0) ? 1 : 0);  }/***************************************************  NAME         : EnvDirectGetSlot  DESCRIPTION  : Gets a slot value  INPUTS       : 1) Instance address                 2) Slot name                 3) Caller's result buffer  RETURNS      : Nothing useful  SIDE EFFECTS : None  NOTES        : None ***************************************************/globle void EnvDirectGetSlot(  void *theEnv,  void *ins,  char *sname,  DATA_OBJECT *result)  {   INSTANCE_SLOT *sp;   if (((INSTANCE_TYPE *) ins)->garbage == 1)     {      SetEvaluationError(theEnv,TRUE);      result->type = SYMBOL;      result->value = EnvFalseSymbol(theEnv);      return;     }   sp = FindISlotByName(theEnv,(INSTANCE_TYPE *) ins,sname);   if (sp == NULL)     {      SetEvaluationError(theEnv,TRUE);      result->type = SYMBOL;      result->value = EnvFalseSymbol(theEnv);      return;     }   result->type = (unsigned short) sp->type;   result->value = sp->value;   if (sp->type == MULTIFIELD)     {      result->begin = 0;      SetpDOEnd(result,GetInstanceSlotLength(sp));     }   PropagateReturnValue(theEnv,result);  }/*********************************************************  NAME         : EnvDirectPutSlot  DESCRIPTION  : Gets a slot value  INPUTS       : 1) Instance address                 2) Slot name                 3) Caller's new value buffer  RETURNS      : TRUE if put successful, FALSE otherwise  SIDE EFFECTS : None  NOTES        : None *********************************************************/globle int EnvDirectPutSlot(  void *theEnv,  void *ins,  char *sname,  DATA_OBJECT *val)  {   INSTANCE_SLOT *sp;   DATA_OBJECT junk;   if ((((INSTANCE_TYPE *) ins)->garbage == 1) || (val == NULL))     {      SetEvaluationError(theEnv,TRUE);      return(FALSE);     }   sp = FindISlotByName(theEnv,(INSTANCE_TYPE *) ins,sname);   if (sp == NULL)     {      SetEvaluationError(theEnv,TRUE);      return(FALSE);     }   if (PutSlotValue(theEnv,(INSTANCE_TYPE *) ins,sp,val,&junk,"external put"))     {      if ((EvaluationData(theEnv)->CurrentEvaluationDepth == 0) && (! CommandLineData(theEnv)->EvaluatingTopLevelCommand) &&          (EvaluationData(theEnv)->CurrentExpression == NULL))        { PeriodicCleanup(theEnv,TRUE,FALSE); }      return(TRUE);     }   return(FALSE);  }/***************************************************  NAME         : GetInstanceName  DESCRIPTION  : Returns name of instance  INPUTS       : Pointer to instance  RETURNS      : Name of instance  SIDE EFFECTS : None  NOTES        : None ***************************************************/#if IBM_TBC#pragma argsused#endifgloble char *EnvGetInstanceName(  void *theEnv,  void *iptr)  {#if MAC_MCW || IBM_MCW || MAC_XCD#pragma unused(theEnv)#endif   if (((INSTANCE_TYPE *) iptr)->garbage == 1)     return(NULL);   return(ValueToString(((INSTANCE_TYPE *) iptr)->name));  }/***************************************************  NAME         : EnvGetInstanceClass  DESCRIPTION  : Returns class of instance  INPUTS       : Pointer to instance  RETURNS      : Pointer to class of instance  SIDE EFFECTS : None  NOTES        : None ***************************************************/#if IBM_TBC#pragma argsused#endifgloble void *EnvGetInstanceClass(  void *theEnv,  void *iptr)  {#if MAC_MCW || IBM_MCW || MAC_XCD#pragma unused(theEnv)#endif   if (((INSTANCE_TYPE *) iptr)->garbage == 1)     return(NULL);   return((void *) ((INSTANCE_TYPE *) iptr)->cls);  }/***************************************************  NAME         : GetGlobalNumberOfInstances  DESCRIPTION  : Returns the total number of

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
综合色天天鬼久久鬼色| 国产精品免费视频观看| 欧美精品vⅰdeose4hd| 欧美一区二区在线观看| wwwwxxxxx欧美| 亚洲国产成人高清精品| 免费观看在线色综合| 国产在线视频一区二区| 99国产精品视频免费观看| 欧美日韩精品是欧美日韩精品| 欧美成人午夜电影| 综合在线观看色| 久久丁香综合五月国产三级网站| 国产在线一区观看| 欧美最猛黑人xxxxx猛交| 欧美性色黄大片| 欧美精品一区二区三区高清aⅴ | 色综合中文字幕国产 | 成人免费在线视频观看| 日韩经典一区二区| zzijzzij亚洲日本少妇熟睡| 91麻豆精品国产91久久久久久久久| 精品成人一区二区三区四区| 亚洲一区二区三区不卡国产欧美| 亚洲成年人影院| av电影一区二区| 久久这里只有精品6| 一区二区高清视频在线观看| 国产在线精品一区二区三区不卡| 欧美调教femdomvk| 亚洲欧洲www| 国产大陆亚洲精品国产| 日韩一级欧美一级| 日韩精品三区四区| 91美女视频网站| 国产精品久久久久久久久免费桃花| 亚洲午夜影视影院在线观看| 波多野结衣视频一区| 亚洲精品一区二区三区精华液| 亚洲成人久久影院| 欧美三级韩国三级日本一级| 亚洲激情六月丁香| 在线精品观看国产| 亚洲天堂网中文字| 韩国欧美国产1区| 欧美一区日韩一区| 日韩专区中文字幕一区二区| 欧美手机在线视频| 亚洲综合一区二区三区| 色成年激情久久综合| 亚洲黄色免费电影| 国产精品99久久久久久有的能看 | 久久久国产精品不卡| 另类综合日韩欧美亚洲| 欧美一级一区二区| 成人午夜又粗又硬又大| 亚洲日本在线视频观看| 欧美久久久久中文字幕| 国产一区二区三区免费看 | 日韩福利电影在线| 欧美精品一区二区三区一线天视频 | 国产精品亚洲人在线观看| 国产精品免费人成网站| 欧美群妇大交群中文字幕| 精品亚洲国产成人av制服丝袜| 久久亚洲综合色一区二区三区| www.在线成人| 麻豆精品一区二区三区| 国产精品久久久久影院色老大| 欧美日韩国产首页| 国产精品一区二区三区99| 亚洲欧美韩国综合色| 日韩亚洲欧美中文三级| 99热精品国产| 久久99精品久久久| 亚洲最快最全在线视频| 精品不卡在线视频| 欧美日韩一区二区三区在线看| 国产精品自拍在线| 午夜精品福利一区二区蜜股av| 久久精品人人做人人综合| 欧美三区在线视频| 丁香啪啪综合成人亚洲小说| 天天做天天摸天天爽国产一区 | 亚洲一区二区三区在线| 久久久久久久久一| 欧美日韩中文字幕一区| 国产精品一卡二卡在线观看| 亚洲成av人影院| √…a在线天堂一区| 精品99一区二区| 欧美日本一区二区三区| aaa国产一区| 国产福利电影一区二区三区| 亚洲成人在线免费| 亚洲黄色片在线观看| 国产精品国产三级国产专播品爱网| 日韩你懂的电影在线观看| 91视频精品在这里| 国产ts人妖一区二区| 精品中文字幕一区二区小辣椒 | 欧美成人a∨高清免费观看| 91麻豆自制传媒国产之光| 国产不卡视频在线观看| 经典三级在线一区| 免费成人深夜小野草| 亚洲制服丝袜av| 亚洲最新视频在线观看| 尤物视频一区二区| 亚洲视频在线一区二区| 中文字幕的久久| 国产色综合久久| 国产亚洲一区二区三区在线观看 | 国产成人精品亚洲777人妖| 精品在线免费观看| 日本成人在线看| 综合激情成人伊人| 夜夜精品视频一区二区| 欧美精品一区二区三区在线| 日韩专区欧美专区| 午夜久久久久久久久久一区二区| 亚洲午夜免费电影| 一区二区三区.www| 亚洲www啪成人一区二区麻豆| 亚洲日本va在线观看| 麻豆视频一区二区| 国产毛片精品一区| 成人黄色777网| 91在线视频网址| 欧美午夜电影一区| 91麻豆精品91久久久久同性| 日韩一二三区不卡| 欧美激情一区二区在线| 国产精品久久久久久久久久久免费看 | 成人黄页毛片网站| 成人午夜免费av| 色综合一个色综合| 欧美三日本三级三级在线播放| 欧美日韩国产一级| 精品99一区二区| 亚洲柠檬福利资源导航| 天天爽夜夜爽夜夜爽精品视频| 免费在线欧美视频| 久久99久久精品欧美| 国产盗摄一区二区| 91精品国产色综合久久不卡电影| 日韩美女在线视频| 国产午夜亚洲精品羞羞网站| 亚洲精品日韩一| 欧美aaaaa成人免费观看视频| 国产美女在线精品| 精品一区二区三区影院在线午夜 | 欧美视频一区在线观看| 91在线高清观看| 日韩一区二区在线看| 亚洲国产一区视频| 久久精品视频一区| 欧美国产精品专区| 中文字幕免费不卡| 久久丝袜美腿综合| 一本到三区不卡视频| 亚洲天天做日日做天天谢日日欢| 另类小说欧美激情| 欧美美女网站色| 免费美女久久99| 亚洲精品国产a久久久久久| 日本一区二区三级电影在线观看| 92国产精品观看| 免费观看日韩电影| 91精品国产免费| 欧美a一区二区| 在线播放国产精品二区一二区四区 | 欧美在线观看一区| 国产精品视频免费看| 欧美日韩五月天| 久久av中文字幕片| 国产日韩精品一区| 91亚洲国产成人精品一区二三 | 色综合中文字幕| 精品一区二区三区欧美| 国产色综合一区| 91浏览器入口在线观看| 亚洲一区av在线| 欧美揉bbbbb揉bbbbb| 蜜桃精品视频在线观看| 久久久久久日产精品| 91影视在线播放| 视频一区中文字幕国产| 国产亚洲一区二区三区在线观看| 不卡一区在线观看| 久久综合综合久久综合| 亚洲精品日产精品乱码不卡| 欧美精品自拍偷拍动漫精品| 国产suv精品一区二区三区| 欧美高清在线一区| 欧美另类久久久品| 成年人午夜久久久| 九九在线精品视频| 国产精品福利影院| 日韩欧美综合一区|