/* * Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved. * * $Id: OBJECT.H 1.3 1997/01/27 18:33:05 STEVEW Exp $ * $Locker: $ * * Private object structure */ #ifndef _OBJECT_H_ #define _OBJECT_H_ #ifdef __cplusplus extern "C" { #endif /* * Private state of device pixelmap */ typedef struct br_object { /* * Dispatch table */ struct br_object_dispatch *dispatch; /* * Standard object identifier */ char *identifier; /* * Device pointer */ br_device *device; } br_object; #ifdef __cplusplus }; #endif #endif