Imports the current Win32 source for the pod-racing game 'Red Planet', built on the MUNGA engine and its L4 (Win32/DirectX) platform layer: - MUNGA / MUNGA_L4: cross-platform engine core and Win32 backend - RP / RP_L4: Red Planet game logic and Win32 application - DivLoader, Setup1: asset loader and installer project - lib, MUNGA_L4/openal, MUNGA_L4/sos: third-party audio dependencies Removed stale Subversion metadata and added .gitignore/.gitattributes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
48 lines
959 B
C++
48 lines
959 B
C++
/*
|
|
* PROJECT: dVS
|
|
* SUBSYSTEM: dp
|
|
* MODULE: dp.h
|
|
*
|
|
*
|
|
* File: $RCSfile: dp.h,v $
|
|
* Revision: $Revision: 2.9 $
|
|
* Date: $Date: 1995/05/18 09:36:22 $
|
|
* Author: $Author: jeff $
|
|
* RCS Ident: $Id: dp.h,v 2.9 1995/05/18 09:36:22 jeff beta $
|
|
*
|
|
* FUNCTION:
|
|
*
|
|
*
|
|
* Copyright (c) 1994 Division Ltd.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* This Document may not, in whole or in part, be copied, photocopied,
|
|
* reproduced, translated, or reduced to any electronic medium or
|
|
* machine readable form without prior written consent from Division
|
|
* Ltd.
|
|
*/
|
|
|
|
#ifndef _DP_H
|
|
#define _DP_H 1
|
|
|
|
#ifdef _cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined (_UNIX)
|
|
#include <dsys/dp.unx>
|
|
#elif defined (_TRANSPUTER) || defined (_I860)
|
|
#include <dsys/dp.tp>
|
|
#elif defined (_WIN31)
|
|
#include <svs/dp.win>
|
|
#else
|
|
#error "Unknown processor type "
|
|
#endif
|
|
|
|
#ifdef _cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _DP_H */
|