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

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

?? mrmtypes.c

?? 安裝DDD之前
?? C
?? 第 1 頁 / 共 2 頁
字號:
/** * * $Id: MrmTypes.c,v 1.1 2004/08/28 19:25:46 dannybackx Exp $ * * Copyright (C) 1995 Free Software Foundation, Inc. * Copyright (C) 1995-2001 LessTif Development Team * * This file is part of the GNU LessTif Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * *  Original author:  Geoffrey W. Ritchey *                    codesmit@southwind.net **/#include <LTconfig.h>#include <stdlib.h>#include <stdio.h>#include <string.h>#include <ctype.h>#include <X11/Xlib.h>#include "FakeWidget.h"#include "glue.h"#include "uil.h"#include "main.h"#include "MrmTypes.h"#if 0static Char8 *Char8Add(Char8 *s1, Char8 *s2){    Char8 *Return = s1;    strcat(Return->lvalue, s2->lvalue);    Return->theExpression.value = (long)Return->lvalue;    return Return;}static intAddrNameGetEvalValue(AddrName *this){    ExpressionElement *t = ExpressionListFind(&LocalSymbolTable,					  (char *)(this->theExpression.value));    if (NULL == t)    {	t = ExpressionListFind(&GlobalSymbolTable,			       (char *)this->theExpression.value);    }    if (NULL == t)    {	__MrmExit(LOC,	     "Can't find %s in Symbol Tables\n", this->theExpression.value);    }    if (!ExpressionElementIsType(t, MrmRtypeInteger))    {	yyerror("Illegal type in expression");    }    return (int)ExpressionElementGetValue(t);}#endifvoidInheritItemEmit(InheritItem *this){    fputc(this->theExpression.type, outFile);    fwrite((char *)this->theExpression.value, 1,	   strlen((char *)this->theExpression.value), outFile);    fputc(0, outFile);}InheritItem *InheritItemNew(char *s){    InheritItem *this = (InheritItem *)malloc(sizeof(InheritItem));    strcpy(this->lvalue, s);    this->theExpression.value = (long)this->lvalue;    this->theExpression.type = MrmRtypeCountedVector;    this->theExpression.Emit = (PFI)InheritItemEmit;    return this;}FontSet *FontSetNew(void){    FontSet *this = (FontSet *) malloc(sizeof(FontSet));    this->theExpression.type = MrmRtypeFontSet;    this->theExpression.value = (long)&this->fontset;    this->fontset.DirectionRtoL = 0;    this->fontset.WideChar = 0;    this->fontset.name = NULL;    return this;}#if 0static char *FontSetGetName(FontSet * this){    return (this->fontset.name);}#endifstatic voidFontSetEmit(FontSet * this){    fputc(this->theExpression.type, outFile);    fwrite(this->fontset.name, 1, strlen(this->fontset.name), outFile);    fputc(0, outFile);    fwrite(&this->fontset.DirectionRtoL, sizeof(this->fontset.DirectionRtoL),	   1, outFile);    fwrite(&this->fontset.WideChar, sizeof(this->fontset.WideChar), 1, outFile);}FontM *FontMNew(char *font){    FontM *this = (FontM *) malloc(sizeof(FontM));    this->theExpression.value = (long)this->lvalue;    strcpy(this->lvalue, font);    this->theExpression.type = MrmRtypeFont;    this->theExpression.Emit = (PFI)FontMEmit;    return this;}voidFontMEmit(FontM * this){    fputc(this->theExpression.type, outFile);    fwrite(this->lvalue, 1, strlen(this->lvalue), outFile);    fputc(0, outFile);}static voidFontElementEmit(FontElement * this){    FontSetEmit(this->theFontSet);    FontMEmit(this->theFont);}FontElement *FontElementNew(FontSet * theFontSet, FontM * theFont){    FontElement *this = (FontElement *) malloc(sizeof(FontElement));    this->Next = NULL;    this->theFontSet = theFontSet;    this->theFont = theFont;    return this;}voidFontTableAppend(FontTable * this, FontSet * theFontSet, FontM * theFont){    FontElement **i;    for (i = &this->FontVector; *i != NULL; i = &((*i)->Next));    *i = FontElementNew(theFontSet, theFont);}static voidFontTableEmit(FontTable * this){    FontElement **j;    int size = 0;    fputc(this->theExpression.type, outFile);    for (j = &this->FontVector; *j != NULL; j = &((*j)->Next))    {	size++;    }    fwrite(&size, sizeof(size), 1, outFile);    for (j = &this->FontVector; *j != NULL; j = &((*j)->Next))    {	FontElementEmit(*j);    };}FontTable *FontTableNew(void){    FontTable *this = (FontTable *) malloc(sizeof(FontTable));    this->theExpression.type = MrmRtypeFontList;    this->FontVector = NULL;    this->theExpression.value = (long)this->FontVector;    this->theExpression.Emit = (PFI)FontTableEmit;    return this;}static ColorDefinition *ColorDefinitionNew(char *color, int r, int g, int b){    ColorDefinition *this = (ColorDefinition *) malloc(sizeof(ColorDefinition));    if (NULL != color)    {	this->name = __MrmStore(color);    }    else    {	this->name = NULL;    }    this->r = r;    this->g = g;    this->b = b;    return this;}static voidColorDefinitionEmit(ColorDefinition * this){    if (this->name && this->name[0])    {	fputs(this->name, outFile);	fputc(0, outFile);    }    else    {	fputc(0, outFile);	fwrite(&this->r, sizeof(int), 1, outFile);	fwrite(&this->g, sizeof(int), 1, outFile);	fwrite(&this->b, sizeof(int), 1, outFile);    }}Color *ColorNew(char *color, int r, int g, int b){    Color *this = (Color *)malloc(sizeof(Color));    this->theDefinition = ColorDefinitionNew(color, r, g, b);    this->theExpression.value = (long)&this->theDefinition;    this->theExpression.type = MrmRtypeColor;    this->theExpression.Emit = (PFI)ColorEmit;    return this;}voidColorSetAddress(Color *this){    this->theExpression.type = MrmRtypeAddrName;}voidColorEmit(Color *this){    fputc(this->theExpression.type, outFile);    ColorDefinitionEmit(this->theDefinition);}voidFontSetDirectionRtoL(FontSet * this, int d){    this->fontset.DirectionRtoL = d;}voidFontSet16Bit(FontSet * this, int bits16){    this->fontset.WideChar = bits16;}voidFontSetName(FontSet * this, char *name){    this->fontset.name = __MrmStore(name);}XBitmapFile *XBitmapFileNew(char *FileName){    XBitmapFile *this = (XBitmapFile *)malloc(sizeof(XBitmapFile));    this->theExpression.type = MrmRtypeXBitmapFile;    this->theExpression.value = (long)&this->bitmap;    __MrmReadBitmapFileData(FileName, &(this->bitmap.width), &(this->bitmap.height),		       &(this->bitmap.data), &(this->bitmap.x_hot),		       &(this->bitmap.y_hot));    this->theExpression.Emit = (PFI)XBitmapFileEmit;    return this;}voidXBitmapFileEmit(XBitmapFile *this){    fputc(this->theExpression.type, outFile);    fwrite((char *)this->theExpression.value,	   sizeof(BitMapType) - sizeof(long), 1, outFile);    fwrite(this->bitmap.data,	   (this->bitmap.width * this->bitmap.height) >> 3, 1, outFile);}Keysym *KeysymNew(char *s){    Keysym *this = (Keysym *)malloc(sizeof(Keysym));    strcpy(this->lvalue, s);    this->theExpression.value = (long)this->lvalue;    this->theExpression.type = MrmRtypeKeysym;    this->theExpression.Emit = (PFI)KeysymEmit;    return this;}voidKeysymEmit(Keysym *this){    fputc(this->theExpression.type, outFile);    fwrite(this->lvalue, 1, strlen(this->lvalue), outFile);    fputc(0, outFile);}static ColorElement *ColorElementNew(char *rep, Color *color){    ColorElement *this = (ColorElement *)malloc(sizeof(ColorElement));    this->Next = NULL;    this->name = __MrmStore(rep);    this->theColor = color;    return this;}static voidColorElementEmit(ColorElement *this){    fputs(this->name, outFile);    fputc(0, outFile);    ColorEmit(this->theColor);}ColorTable *ColorTableNew(void){

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
男人的天堂亚洲一区| 在线免费视频一区二区| 91在线播放网址| 欧美电影免费提供在线观看| 中文字幕综合网| 国产综合久久久久影院| 欧美日韩国产大片| 亚洲人一二三区| 国产精品一区二区久激情瑜伽| 欧美日韩在线不卡| 亚洲女同一区二区| 风间由美一区二区av101| 91精品国产入口| 一区二区三区不卡视频| 国产成a人亚洲精品| 日韩欧美国产1| 日韩精品一级二级| 欧美亚洲另类激情小说| 1024成人网| 波多野结衣在线一区| 久久久欧美精品sm网站| 日韩精品一级二级| 91麻豆精品国产91久久久久久| 亚洲男人的天堂av| 色天天综合久久久久综合片| 亚洲国产精品ⅴa在线观看| 狠狠v欧美v日韩v亚洲ⅴ| 欧美一区二区在线不卡| 天天av天天翘天天综合网色鬼国产| 91在线免费看| 亚洲私人黄色宅男| 成人激情av网| 亚洲视频香蕉人妖| 99久久精品国产导航| 亚洲人成在线观看一区二区| 成人av网在线| 亚洲色图色小说| 成人av动漫在线| 亚洲精品一卡二卡| 精品视频色一区| 蜜臂av日日欢夜夜爽一区| 日韩欧美不卡在线观看视频| 精品一区二区三区影院在线午夜| 欧美草草影院在线视频| 国产精品77777| 国产精品久久久久影院亚瑟| 99精品一区二区三区| 亚洲综合区在线| 制服视频三区第一页精品| 丝袜美腿亚洲综合| 久久色视频免费观看| 国产成人精品影视| 一区二区在线观看免费视频播放| 欧美日韩一区视频| 激情偷乱视频一区二区三区| 欧美国产精品久久| 91官网在线免费观看| 美女一区二区在线观看| 中文字幕高清一区| 欧美日韩一级二级| 精品综合久久久久久8888| 中文字幕成人网| 欧美无人高清视频在线观看| 激情文学综合插| 亚洲精品午夜久久久| 日韩欧美激情一区| eeuss鲁片一区二区三区在线看| 亚洲资源中文字幕| 久久蜜臀精品av| 欧美伊人久久久久久午夜久久久久| 久久精品国产精品青草| 亚洲少妇屁股交4| 欧美一区二区三区电影| 高清不卡一区二区在线| 亚洲成人免费电影| 亚洲国产精品99久久久久久久久| 欧美亚洲综合色| 成人深夜福利app| 另类小说综合欧美亚洲| 亚洲精品视频在线观看免费| 日韩一区二区三区精品视频| 成人国产精品免费观看动漫| 日本欧美久久久久免费播放网| 国产欧美精品一区aⅴ影院| 在线播放国产精品二区一二区四区 | 国产精品一二二区| 亚洲一区二区三区四区在线| 国产日韩av一区| 日韩一区二区三区三四区视频在线观看 | 欧美人牲a欧美精品| 国产成人av一区二区三区在线| 亚洲国产精品久久艾草纯爱 | 亚洲永久免费av| 国产清纯在线一区二区www| 欧美一级日韩免费不卡| 欧美性生活久久| 99re热视频这里只精品| 国产盗摄视频一区二区三区| 精品一区二区三区免费播放| 亚洲国产综合色| 依依成人综合视频| 亚洲欧洲另类国产综合| 国产精品国产a级| 日本一区二区三区电影| 国产亚洲人成网站| 久久―日本道色综合久久| 日韩久久免费av| 欧美xxxx在线观看| 日韩三级视频在线看| 欧美一区二区大片| 91精品黄色片免费大全| 在线观看91av| 日韩一级片在线播放| 日韩一区二区视频| 欧美成人综合网站| 日韩一区二区精品葵司在线| 日韩欧美亚洲国产另类| 精品少妇一区二区| www激情久久| 国产调教视频一区| 亚洲国产高清在线| 亚洲精品自拍动漫在线| 亚洲国产精品久久久久婷婷884 | 樱花草国产18久久久久| 亚洲国产日韩在线一区模特 | 99综合影院在线| 色哦色哦哦色天天综合| 欧美色精品天天在线观看视频| 欧美性xxxxxx少妇| 91精品国产综合久久久久| 精品少妇一区二区三区视频免付费| 日韩欧美中文一区| xf在线a精品一区二区视频网站| 久久久久88色偷偷免费| 中文字幕在线视频一区| 一区二区三区四区激情| 日韩国产高清影视| 国产乱人伦偷精品视频不卡| 91在线码无精品| 欧美精品一二三| 久久尤物电影视频在线观看| 国产精品久久久久影院亚瑟| 午夜激情综合网| 国产成人精品免费视频网站| 色婷婷久久久综合中文字幕 | 国产精品天美传媒沈樵| 一区二区三区中文在线观看| 免费成人在线网站| 91视频国产观看| 日韩一级二级三级| 亚洲视频综合在线| 久久国产日韩欧美精品| caoporn国产一区二区| 欧美精品第1页| 亚洲欧洲美洲综合色网| 美腿丝袜亚洲三区| 在线国产电影不卡| 国产午夜精品久久久久久免费视 | 日韩欧美国产综合在线一区二区三区 | 在线播放中文一区| 国产精品人成在线观看免费| 亚洲 欧美综合在线网络| 国产成人av在线影院| 555www色欧美视频| 亚洲视频在线一区| 国产精品77777| 51久久夜色精品国产麻豆| 国产精品国产三级国产有无不卡| 日韩中文字幕麻豆| 91国偷自产一区二区三区成为亚洲经典 | 久久综合99re88久久爱| 五月婷婷激情综合| 91啦中文在线观看| 中文字幕av一区二区三区免费看| 99国产精品久| 欧美成人伊人久久综合网| 亚洲一区在线观看视频| 99免费精品在线观看| 精品国产一区久久| 丝袜美腿高跟呻吟高潮一区| 色综合天天性综合| 中文字幕欧美国产| 粉嫩av一区二区三区粉嫩| 欧美r级在线观看| 欧美aaa在线| 在线观看91精品国产麻豆| 亚洲国产你懂的| 欧美亚州韩日在线看免费版国语版| 中文字幕亚洲综合久久菠萝蜜| 国产麻豆成人传媒免费观看| 日韩精品一区二区三区中文精品| 天堂精品中文字幕在线| 欧美性极品少妇| 亚洲不卡一区二区三区| 91久久线看在观草草青青| 亚洲日本一区二区| 欧洲一区二区三区在线| 亚洲久草在线视频| 91福利精品视频| 香蕉av福利精品导航|