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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? 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){

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
粗大黑人巨茎大战欧美成人| 91亚洲男人天堂| 日韩一级视频免费观看在线| 亚洲第一成年网| 欧美久久久久久久久久| 日韩在线卡一卡二| 日韩久久久久久| 国产一区不卡在线| 欧美国产在线观看| 色综合久久久网| 亚洲成人激情社区| 欧美v国产在线一区二区三区| 国内外成人在线| 亚洲欧美中日韩| 欧美日韩高清一区二区三区| 美女国产一区二区三区| 欧美国产1区2区| 色婷婷精品大在线视频| 天堂va蜜桃一区二区三区| 日韩精品中文字幕一区二区三区 | 欧美一区二区三区视频在线 | 国产精品99久久久久| 国产精品久久久久久久久免费丝袜 | 在线观看国产日韩| 天天色天天操综合| 国产欧美精品一区二区三区四区| 91性感美女视频| 日本vs亚洲vs韩国一区三区二区 | 在线播放/欧美激情| 国产高清精品在线| 亚洲综合免费观看高清在线观看| 91精品国产免费| 成人午夜碰碰视频| 日本大胆欧美人术艺术动态| 国产日韩欧美激情| 在线播放中文字幕一区| 国产成人av电影免费在线观看| 亚洲午夜激情网站| 久久精品欧美一区二区三区不卡| 在线观看欧美精品| 不卡视频一二三四| 九色porny丨国产精品| 综合网在线视频| 欧美日韩一区成人| 国产成人精品免费看| 欧美成人猛片aaaaaaa| 成人av网在线| 精品制服美女丁香| 亚洲一二三级电影| 国产精品毛片久久久久久久| 欧美一级淫片007| 日韩区在线观看| 日本精品一区二区三区高清| 国产电影精品久久禁18| 强制捆绑调教一区二区| 夜夜精品浪潮av一区二区三区| 久久精品欧美日韩精品| 日韩欧美国产系列| 欧美日韩色综合| 99国产精品99久久久久久| 精品无码三级在线观看视频| 亚洲成人动漫在线免费观看| 亚洲六月丁香色婷婷综合久久 | 欧美日韩国产一级片| 不卡一区二区三区四区| 国产精品一二三| 免费观看成人av| 首页国产欧美久久| 亚洲一区免费视频| 一区二区三区四区五区视频在线观看| 久久精品一区二区三区不卡| 欧美成人a∨高清免费观看| 欧美一区二区三区视频| 欧美精品三级日韩久久| 欧美综合一区二区| 欧美精品一区二区三区视频| 国产成人午夜高潮毛片| 亚洲午夜日本在线观看| 日韩免费观看2025年上映的电影| 高清不卡在线观看av| 国产精品免费人成网站| 91精品久久久久久蜜臀| 欧美视频日韩视频| 成人免费视频播放| 欧美日韩国产综合视频在线观看| 日韩欧美一区电影| 亚洲视频 欧洲视频| 久久成人羞羞网站| 在线亚洲+欧美+日本专区| 91精品国产欧美一区二区成人| 中国色在线观看另类| 日韩精品一级中文字幕精品视频免费观看 | 欧美性大战久久| 51精品国自产在线| 91麻豆精东视频| 日本一区二区三区四区在线视频| 亚洲一区二区三区四区不卡| 国产黄色成人av| 日韩欧美国产精品一区| 一区二区激情视频| 另类调教123区 | 国产精品羞羞答答xxdd| 欧美一区二区成人| 亚洲综合色婷婷| 色婷婷综合久久| 综合电影一区二区三区| 成人福利在线看| 国产精品毛片大码女人| 国产69精品一区二区亚洲孕妇| 精品国产91亚洲一区二区三区婷婷| 污片在线观看一区二区| 欧美在线观看视频一区二区三区| 中文字幕av资源一区| 精品综合久久久久久8888| 日韩三级中文字幕| 另类的小说在线视频另类成人小视频在线| 3d成人h动漫网站入口| 日韩精品乱码av一区二区| 欧美高清性hdvideosex| 日本亚洲电影天堂| www欧美成人18+| 99re成人精品视频| 亚洲成人在线免费| 久久青草欧美一区二区三区| 国产91高潮流白浆在线麻豆| 综合精品久久久| 精品久久99ma| k8久久久一区二区三区| 一区二区在线免费观看| 日韩女优av电影| 亚洲美女少妇撒尿| 美女国产一区二区三区| 成人av资源站| 日韩女优毛片在线| 视频在线观看91| 精品久久久久久无| 日韩电影在线观看网站| 久久久国产精品麻豆| 久久综合久久综合亚洲| 伊人色综合久久天天人手人婷| 韩国精品主播一区二区在线观看 | 激情小说欧美图片| 91亚洲精华国产精华精华液| 26uuu精品一区二区| 亚洲愉拍自拍另类高清精品| 国产麻豆视频一区| 国产米奇在线777精品观看| 欧美日韩一区二区不卡| 18成人在线视频| 精品一区免费av| 欧美少妇xxx| 久久久久久久久久久久久女国产乱| 一区二区成人在线视频| 蜜桃久久久久久| 欧美性色黄大片| 一区二区三区四区亚洲| 国产成人精品一区二区三区四区 | 欧洲一区在线观看| 久久精品亚洲乱码伦伦中文| 日韩电影在线免费观看| 久久99久久精品| 精品欧美乱码久久久久久| 夜夜嗨av一区二区三区四季av| 国产成人精品一区二| 制服视频三区第一页精品| 一本久久精品一区二区| 91在线你懂得| 精品久久久久99| 亚洲午夜精品17c| 欧美在线啊v一区| 亚洲精品日韩综合观看成人91| 国产成人免费视| 国产亚洲女人久久久久毛片| 美女一区二区在线观看| 欧美成人午夜电影| 蜜臀国产一区二区三区在线播放| 91超碰这里只有精品国产| 日本视频一区二区| 欧美色国产精品| 青青草成人在线观看| 欧美丝袜第三区| 琪琪一区二区三区| 日本高清无吗v一区| 综合激情成人伊人| 91视频xxxx| 亚洲天堂精品视频| 欧美亚一区二区| 亚洲一二三四区| 欧美片网站yy| 亚洲欧美视频一区| 日本乱码高清不卡字幕| 亚洲一区二区三区四区在线| 日本二三区不卡| 蜜臀av国产精品久久久久| 91精品国产黑色紧身裤美女| 欧美aa在线视频| 欧美一区二区三区啪啪| 国产精品一区一区| 国产精品私人影院| 色综合天天综合网天天狠天天|