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

📄 urlp.h

📁 GNU/Linux程序开发指南书的所有例子源代码
💻 H
字号:
// URLP.h//// Private header file for the URLWidget//// Note: derived from TemplateP.h example from the X Consortium.///* XConsortium: TemplateP.h,v 1.2 88/10/25 17:31:47 swick Exp $ *//* Copyright Massachusetts Institute of Technology 1987, 1988 */#ifndef _URLP_h#define _URLP_h#include "URL.h"// Include superclass private header file:#include <X11/CoreP.h>// Define unique representation types not found in <X11/StringDefs.h>:#define XtRURLResource  "URLResource"typedef struct {  int empty;} URLClassPart;typedef struct _URLClassRec {  CoreClassPart core_class;  URLClassPart  URL_class;} URLClassRec;extern URLClassRec urlClassRec;typedef struct {  /* resources */  char* name;  /* private state */  char *data;  GC gc;} URLPart;typedef struct _URLRec {  CorePart    core;  URLPart          url;} URLRec;#endif  _URLP_h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -