📄 wfindrec.c
字号:
/* CXL - Copyright (c) 1987-1989 by Mike Smedley - All Rights Reserved */
/* WFINDREC.C - returns address of record of given window handle */
#include "cxlwin.h"
struct _wrec_t *wfindrec(int whandle)
{
struct _wrec_t *wrec;
/* scan through linked list for record belonging to requested handle */
wrec=_winfo.active;
while(wrec!=NULL) {
if(whandle==wrec->whandle) break;
wrec=wrec->prev;
}
/* return address of found record */
return(wrec);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -