Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

types32.h(3head) [php man page]

types32.h(3HEAD)						      Headers							  types32.h(3HEAD)

NAME
types32.h, types32 - fixed-width data types SYNOPSIS
#include <sys/types32.h> DESCRIPTION
The following fixed-width data types defined in <sys/types32.h> correspond to the sign and sizes of types in the 32-bit environment that can be used for compatibility and interoperability purposes in either the 32-bit or 64-bit environment. typedef int32_t blkcnt32_t typedef uint32_t caddr32_t typedef int32_t clock32_t typedef int32_t daddr32_t typedef uint32_t dev32_t typedef uint32_t fsblkcnt32_t typedef uint32_t fsfilcnt32_t typedef int32_t gid32_t typedef int32_t id32_t typedef uint32_t ino32_t typedef int32_t key32_t typedef uint32_t major32_t typedef uint32_t minor32_t typedef uint32_t mode32_t typedef uint32_t nlink32_t typedef int32_t pid32_t typedef uint32_t rlim32_t typedef uint32_t size32_t typedef int32_t ssize32_t typedef time32_t int32_t typedef uid32_t int32_t SunOS 5.10 30 Oct 1997 types32.h(3HEAD)

Check Out this Related Man Page

libcaca-canvas(3caca)						      libcaca						     libcaca-canvas(3caca)

NAME
libcaca-canvas - The libcaca canvas format (version 1) All types are big endian. struct { magic: uint8_t caca_header[2]; // '' uint8_t caca_file_type[2]; // 'CV' canvas_header: uint32_t control_size; // Control size (canvas_data - canvas_header) uint32_t data_size; // Data size (EOF - canvas_data) uint16_t version; // Canvas format version // bit 0: set to 1 if canvas is compatible // with version 1 of the format // bits 1-15: unused yet, must be 0 uint32_t frames; // Frame count uint16_t flags; // Feature flags // bits 0-15: unused yet, must be 0 frame_info: struct { uint32_t width; // Frame width uint32_t height; // Frame height uint32_t duration; // Frame duration in milliseconds, 0 to // not specify a duration uint32_t attr; // Graphics context attribute int32_t cursor_x; // Cursor X coordinate int32_t cursor_y; // Cursor Y coordinate int32_t handle_x; // Handle X coordinate int32_t handle_y; // Handle Y coordinate } frame_list[frames]; control_extension_1: control_extension_2: ... control_extension_N: ... // reserved for future use canvas_data: uint8_t data[data_size]; // canvas data data_extension_1: data_extension_2: ... data_extension_N: ... // reserved for future use }; Version 0.99.beta18 Fri Apr 6 2012 libcaca-canvas(3caca)
Man Page