DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦d266ed0ba⟧ TextFile

    Length: 1251 (0x4e3)
    Types: TextFile
    Names: »ctypes.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦697af93db⟧ »EurOpenD3/network/snmp/mit-snmp.tar.Z« 
        └─⟦57bbcbe75⟧ 
            └─⟦this⟧ »./snmp/ctypes.h« 
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦925ee6880⟧ »EurOpenD3/network/snmp/mit-snmp.900225.tar.Z« 
        └─⟦a4bfa469c⟧ 
            └─⟦this⟧ »./snmp/ctypes.h« 

TextFile

#ifndef		_CTYPES_H_
#define		_CTYPES_H_

/*
 *	$Header: ctypes.h,v 1.1 89/01/11 22:09:29 jrd Exp $
 *	Author: J. Davin
 *	Copyright 1988, 1989, Massachusetts Institute of Technology
 *	See permission and disclaimer notice in file "notice.h"
 */

#include	<notice.h>

typedef		long			CIntwType;

typedef		CIntwType		*CIntwPtrType;

typedef		unsigned long		CUnswType;

typedef		CUnswType      		*CUnswPtrType;

typedef		char			CCharType;

typedef		CCharType		*CCharPtrType;

typedef		unsigned char		CByteType;

typedef		CByteType		*CBytePtrType;

typedef		char			CIntbType;

typedef		CIntbType		*CIntbPtrType;

typedef		unsigned char		CUnsbType;

typedef		CUnsbType		*CUnsbPtrType;

typedef		long			CIntlType;

typedef		CIntlType		*CIntlPtrType;

typedef		unsigned long		CUnslType;

typedef		CUnslType		*CUnslPtrType;

typedef		short int		CIntsType;

typedef		CIntsType		*CIntsPtrType;

typedef		unsigned short int	CUnssType;

typedef		CUnssType		*CUnssPtrType;

typedef		int			CBoolType;

#define		TRUE			(1)
#define		FALSE			(0)

typedef		CBoolType		*CBoolPtrType;

typedef		int			CIntfType;

typedef		CIntfType		*CIntfPtrType;

typedef		unsigned int		CUnsfType;

typedef		CUnsfType		*CUnsfPtrType;

#define		CVoidType		void

#endif		/*	_CTYPES_H_	*/