⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wfindrec.c

📁 详细介绍了一篇关于pci开发的接口芯片
💻 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 + -