host.h

来自「basic.c */ /**//* Project:NeuroBasic, b」· C头文件 代码 · 共 51 行

H
51
字号
/****************************************************************//*								*//* Name:	host.h						*//*								*//* Project:	NeuroBasic					*//*								*//* Survey:	Definitions for the host part			*//*								*//* Author:	Urs Mueller					*//*		Electronics Laboratory, ETH Zuerich		*//*		Switzerland					*//*								*//* Created:	July 21, 1994					*//* Modified:	July 26, 1995 (um)				*//*								*//****************************************************************/#define VERSION "V3.0"/* name of Music executable */#define LOD_NAME	"/usr/ife/n0/flepp/nbasic_dev/mubasic.lod"	/* SN Matrix File Definitions *//******************************/#define SN_FMAGIC	0x1e3d4c51L#define SN_CMAGIC	0x1e3d4c52L#define SN_AMAGIC	".MAT"typedef struct{  long		sn_magic;	/* magic number */  long		sn_ndim;	/* number of dimensions (1..3) */  long		sn_xdim;	/* size in x dimension */  long		sn_ydim;	/* size in y dimension */  long		sn_zdim;	/* size in z dimension */} sn_mathead_t;			/* SN floating-point matrix header *//* global variables *//********************/extern char *compilation_date;

⌨️ 快捷键说明

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