Jump to content United States-English
HP.com Home Products and Services Support and Drivers Solutions How to Buy
» Contact HP
More options
HP.com home
HP 9000 Networking: HP FTAM/9000 Programmer's Guide > Chapter 3 HP FTAM/9000 Data Structures

Basic Data Types

» 

Technical documentation

Complete book in PDF
» Feedback
Content starts here

 » Table of Contents

 » Glossary

 » Index

The FTAM interface uses the following data types. These basic types are unambiguous typedef synonyms for well-known intrinsic C data types.

Data Type

Description

Corresponding C Data Type

Uint8

8-bit unsigned integer

unsigned character

Unit16

16-bit unsigned integer

unsigned character

Uint32

32-bit unsigned integer

unsigned long

Sint8

8-bit signed integer

char

Sint16

16-bit signed integer

short

Sint32

32-bit signed integer

long

Bool

Logical binary

unsigned character

Octet

8 bits of unformatted data

unsigned character

Object_id

struct Object_id
{
Uint16 length;
Sint32 *element; /* List of integers */
};

The Object_id is a widely used map.h structure containing the following fields.

length

Number of integers in the *element array.

*element

Pointer to an array of integers.

Octet_string

struct Octet_string
{
Uint32 length;
Octet_pointer pointer; /* List of Octets */
};

The Octet_string is a widely used map.h structure containing the following fields.

length

Number of Octets in the pointer array.

pointer

Pointer to a array of Octets.

Printable version
Privacy statement Using this site means you accept its terms Feedback to webmaster
© 1997 Hewlett-Packard Development Company, L.P.