Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
39 lines
778 B
Plaintext
39 lines
778 B
Plaintext
#ifndef dpl_load_h
|
|
#define dpl_load_h
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include "dpl.h"
|
|
#include "dpl_host.h"
|
|
|
|
/*{{{ banner*/
|
|
/* **************************************************
|
|
|
|
Copyright DIVISION Limited (c) 1994
|
|
All rights reserved
|
|
|
|
|
|
File : dpl_load.c
|
|
Project : dpl interface object loading support
|
|
host / platform independent section
|
|
Author : PJA
|
|
Date : 22/06/94
|
|
|
|
Function: Implements the host section of the dpl
|
|
b2z object loader
|
|
|
|
History : Rev 1.1, 22 / 06 / 1994
|
|
|
|
**************************** */
|
|
/*}}} */
|
|
|
|
extern int32
|
|
load_b2z ( dpl_node *node, char *fname );
|
|
|
|
extern int32
|
|
load_svt ( dpl_node *node, char *fname );
|
|
|
|
#endif
|