代码搜索:Frame
找到约 10,000 项符合「Frame」的源代码
代码结果 10,000
www.eeworm.com/read/464740/7155853
o frame.o
www.eeworm.com/read/464740/7155890
h frame.h
#ifndef _FRAME_H
#define _FRAME_H
#include
typedef struct frame
{
WINDOW *win;
int color;
void (*draw)(struct frame *);
void (*clearout)(struct frame *);
void (*free)(struct
www.eeworm.com/read/464740/7155903
c frame.c
#include "frame.h"
#include
void draw_frame(FRAME *f)
{
wattron(f->win,COLOR_PAIR(f->color));
wbkgd(f->win,COLOR_PAIR(f->color));
touchwin(f->win);
wrefresh(f->win);
www.eeworm.com/read/462604/7199957
cpp frame.cpp
// $$frame_ifile$$.cpp : implementation of the $$FRAME_CLASS$$ class
//
#include "stdafx.h"
#include "$$root$$.h"
#include "$$frame_hfile$$.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef T
www.eeworm.com/read/462604/7199972
h frame.h
// $$frame_hfile$$.h : interface of the $$FRAME_CLASS$$ class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
#defin
www.eeworm.com/read/454644/7386201
h frame.h
#pragma once
class CDancerFrame ;
// a CSplitterWnd-derived class that can notify its parent
class CNotifySplitter : public CSplitterWnd
{
CDancerFrame* m_pFrame ;
public :
CNotifySplit
www.eeworm.com/read/454644/7386209