brender-1997/ddraw/OBJECT.H

46 lines
576 B
C++
Raw Normal View History

2022-05-03 16:30:35 -05:00
/*
* 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