• 大小: 34.63MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-17
  • 语言: 其他
  • 标签: Arcview3.3  

资源简介

Arcview3.3 解压后直接运行就可以

资源截图

代码片段和文件信息


/*
 * Copyright (C) 1996 by Environmental Systems Research Institute Inc.
 * All Rights Reserved.
 *
 * N O T I C E
 *
 * THIS MATERIAL IS BEING PRIVIDED TO ARCVIEW GIS USERS BY  ESRI.
 * UNAUTHORIZED ACCESS IS PROHIBITED
 */


/*
*-------------------------------------------------------------------
*
* CAllocate1 - Allocate a one dimensional array
*
*-------------------------------------------------------------------
*P PURPOSE:
*
* CAllocate1 dynamically allocates a one dimensional array
*
*E
*-------------------------------------------------------------------
*A ARGUMENTS:
*
* number  (int) number of elements in array
*       size    (int) size in bytes of an array element
*
*  RETURN VALUE     (char *) Pointer to allocated memory
*                                         NULL == allocate failed
*
*E
*-------------------------------------------------------------------
*H HISTORY:
*
*E
*-------------------------------------------------------------------
*/
#include


char *CAllocate1 (int number 
                    int size )

{
return (char *)calloc(number size);
}


/*
*-------------------------------------------------------------------
*
* CAllocate2 - Allocate a two dimensional array
*
*-------------------------------------------------------------------
*P PURPOSE:
*
* CAllocate2 dynamically allocates a two dimensional array
*
*E
*-------------------------------------------------------------------
*A ARGUMENTS:
*
* nrows   (int) number of rows in array
* ncols   (int) number of cols in array
*       size    (int) size in bytes of an array element
*
*  RETURN VALUE     (char **) Pointer to allocated memory
*                                         NULL == allocate failed
*
*E
*-------------------------------------------------------------------
*H HISTORY:
*E
*-------------------------------------------------------------------
*/

char **CAllocate2 (int nrows 
                   int ncols 
                   int size )

{
char *data;
char **rows;
char **ptr;
int len;
int cur;
int i;

if ((data = (char *)calloc (nrows*ncols size)) == NULL) {
return (NULL);
}

if ((rows = (char **)calloc (nrows sizeof(char **))) == NULL) {
free ((char *)data);
return (NULL);
}

ptr = rows;
len = ncols*size;
cur = 0;

for (i=0; i {
*ptr++ = (char *) &(data[cur]);
cur += len;
}

return (char **)rows ;

/*
Note :
-----------------------------------------------
The GRIDIO libraries REQUIRE that
the underlying data array for a two dimensional
buffer is 1-Dimensional CONTIGUOS as above
-----------------------------------------------
*/
}

/*
*-------------------------------------------------------------------
*
* CFree1 - Free a one dimensional array
*
*-------------------------------------------------------------------
*P PURPOSE:
*
* CFree1 frees a one dimensional array
*
*E
*-------------------------------------------------------------------
*A ARGUMEN

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      13312  2000-03-23 13:20  Arcview3.3直接运行\BIN32\adrg.dll

     文件    4699136  2002-04-18 18:37  Arcview3.3直接运行\BIN32\arcview.exe

     文件     695296  1997-06-05 20:51  Arcview3.3直接运行\BIN32\avbase.dll

     文件    4202496  2001-11-29 11:13  Arcview3.3直接运行\BIN32\avdbacc.dll

     文件      12384  1995-05-26 11:00  Arcview3.3直接运行\BIN32\avdll16.dll

     文件     241152  2000-04-11 12:16  Arcview3.3直接运行\BIN32\avdlog.dll

     文件       5120  2000-04-11 13:41  Arcview3.3直接运行\BIN32\avexec.dll

     文件       4000  1995-05-26 10:58  Arcview3.3直接运行\BIN32\avexec16.dll

     文件       4096  2000-04-11 13:41  Arcview3.3直接运行\BIN32\avexec32.dll

     文件        766  1999-06-22 11:51  Arcview3.3直接运行\BIN32\AVEXPORT.ICO

     文件     954880  1997-06-05 20:52  Arcview3.3直接运行\BIN32\avfeat.dll

     文件     295424  1998-01-28 08:31  Arcview3.3直接运行\BIN32\AVGRDCOM.DLL

     文件    1614848  1997-12-09 06:57  Arcview3.3直接运行\BIN32\AVGRDENG.DLL

     文件      22016  2000-01-05 13:34  Arcview3.3直接运行\BIN32\AVGRID.DLL

     文件     716800  1997-08-28 07:09  Arcview3.3直接运行\BIN32\avgridio.dll

     文件      15872  1996-07-31 16:39  Arcview3.3直接运行\BIN32\avhelp.dll

     文件       6048  1996-07-31 16:20  Arcview3.3直接运行\BIN32\AVHELP16.DLL

     文件      50176  2001-07-24 09:56  Arcview3.3直接运行\BIN32\AvImgDll.dll

     文件     117248  1998-07-17 06:33  Arcview3.3直接运行\BIN32\avimgexp.dll

     文件        766  1999-06-22 11:52  Arcview3.3直接运行\BIN32\AVIMPORT.ICO

     文件      66048  1998-07-17 06:54  Arcview3.3直接运行\BIN32\avlock.exe

     文件     704512  2001-11-09 16:05  Arcview3.3直接运行\BIN32\AVMrSID.dll

     文件      19968  2000-05-04 04:01  Arcview3.3直接运行\BIN32\avnitf.dll

     文件     395264  1996-10-03 13:12  Arcview3.3直接运行\BIN32\AVPRJECT.DLL

     文件      28160  1999-07-13 17:11  Arcview3.3直接运行\BIN32\avrpc.dll

     文件      85504  1996-10-03 13:12  Arcview3.3直接运行\BIN32\AVSHAPE.DLL

     文件     257536  2000-04-28 04:08  Arcview3.3直接运行\BIN32\AVTIN.DLL

     文件     230912  2000-04-28 04:02  Arcview3.3直接运行\BIN32\AVTINENG.DLL

     文件      40960  1999-09-01 12:45  Arcview3.3直接运行\BIN32\AvUtilities.exe

     文件      28672  2001-11-10 16:06  Arcview3.3直接运行\BIN32\cadrg.dll

............此处省略880个文件信息

评论

共有 条评论