运行在windows7 64位下的autocad R14 汉化绿色版


老版本,嫌贵的别说话!!更别下载! 老版本的价值,懂的朋友来! 除命令行未汉化外,对话框、菜单等均已汉化,帮助文件采用autocad R14中文版的帮助文件, 解压后 先阅读下列说明 ,再继续安装: 使用说明:将下载的压缩包解压在“D:Program FilesAutoCAD R14”目录下,运行一下“Reg”目录内的“14-1.reg”和“14-2.reg”两个文件即可
资源截图
代码片段和文件信息
/* Next available MSG number is  89 */

/*
   ADS_PERR.CC

   Copyright (C) 1992-19941996 by Autodesk Inc.
 
   Permission to use copy modify and distribute this software in 
   object code form for any purpose and without fee is hereby granted 
   provided that the above copyright notice appears in all copies and 
   that both that copyright notice and the limited warranty and 
   restricted rights notice below appear in all supporting 
   documentation.
 
   AUTODESK PROVIDES THIS PROGRAM “AS IS“ AND WITH ALL FAULTS.  
   AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF 
   MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK INC.
   DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE 
   UNINTERRUPTED OR ERROR FREE.
 
   Use duplication or disclosure by the U.S. Government is subject to 
   restrictions set forth in FAR 52.227-19 (Commercial Computer 
   Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) 
   (Rights in Technical Data and Computer Software) as applicable.
    
   .

   ADS_PERR.C   -  ADS routine to print the error message
                   associated with the value of “errno“ upon failure
                   of a call to AutoCAD.  This routine is meant to be
                   invoked by other ADS programs and contains a table
                   of the current error messages as found in ol_errno.h.
                   This routine is meant to parallel the Unix
                   perror() function.

                   ads_perror() is a Lisp-callable or invokable function that
                   takes an optional single argument and prints the message on
                   the AutoCAD command line.  The syntax is:

                   (ads_perror “string“)

                   The string is optional; if provided it is printed on a
                   separate line before the system error message.  To be of
                   most use the argument string should include the name of the
                   program that incurred the error.  The error number is taken
                   from the system variable “errno“ which is set when most
                   errors occur but not cleared when non-erroneous calls are
                   made.
 */


#include 
#include 
#include 
#include “rxdefs.h“
#include “adslib.h“
#include “ol_errno.h“


#define ELEMENTS(array) (sizeof(array)/sizeof((array)[0]))


/* ADS Function Table */
typedef struct {
    char    *name;
    int     (*fptr)();
} ftblent;


extern int ads_perror();

int funcload   (void);
int funcunload (void);
int dofun      (void);


/* The error message array */
static struct {
    int num;                          /* AutoCAD ERRNO code */
    char *msg;                        /* Explanatory message */
} errtbl[] = {
    {  0 /*MSG88*/“Normal status; no error noted.“ }
    {  1 /*MSG1*/“Invalid symbol table name.“ }
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2009-05-13 00:56  AutoCAD R14
     目录           0  2009-05-13 00:57  AutoCAD R14BONUS
     目录           0  2009-05-13 00:57  AutoCAD R14BONUSCADTOOLS
     文件      156559  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdoslib14.doc
     文件        1435  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSnsabout.txt
     文件         582  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSmenu_dll.txt
     文件       15110  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSalias.hlp
     文件       21306  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdbtrans.hlp
     文件        7725  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdimsio.hlp
     文件      169823  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSleaderex.hlp
     文件        6730  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSpackngo.hlp
     文件      125952  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSalias.exe
     文件       36864  1998-05-27 19:42  AutoCAD R14BONUSCADTOOLSac_bonus.dll
     文件      114176  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSarctext.arx
     文件       72704  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdbtrans.arx
     文件       49664  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdimsio.arx
     文件       31232  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdoslib14.arx
     文件       48640  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSleaderex.arx
     文件       26112  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSmocoro.arx
     文件       71680  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSpackngo.arx
     文件       12288  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSplconvrt.arx
     文件       15360  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSpopup.arx
     文件       93696  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSsysvdlg.arx
     文件       42496  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSwipeout.arx
     文件         793  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSleaderex.cnt
     文件      207677  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdbtrans.cpm
     文件        2108  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSnsabout.dcl
     文件        3999  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdbtrans.dcl
     文件        5469  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSdlgtest.dcl
     文件        9076  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSexchprop.dcl
     文件        2587  1997-05-06 04:19  AutoCAD R14BONUSCADTOOLSfind.dcl
............此处省略807个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)