You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/***************************************************************************
|
|
* *
|
|
* Module : wrldpipe.h *
|
|
* *
|
|
* Purpose : See wrldpipe.c *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
/* RWPUBLIC */
|
|
/**
|
|
* \defgroup worldextensionsnull Null
|
|
* \ingroup worldextensions
|
|
*
|
|
* Null
|
|
*/
|
|
|
|
/* RWPUBLICEND */
|
|
|
|
#ifndef WRLDPIPE_H
|
|
#define WRLDPIPE_H
|
|
|
|
/****************************************************************************
|
|
Includes
|
|
*/
|
|
|
|
#include <rwcore.h>
|
|
|
|
/****************************************************************************
|
|
Global Defines
|
|
*/
|
|
|
|
/****************************************************************************
|
|
Global Types
|
|
*/
|
|
|
|
/****************************************************************************
|
|
Function prototypes
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
extern RwBool _rpCreatePlatformMaterialPipelines(void);
|
|
extern RwBool _rpCreatePlatformWorldSectorPipelines(void);
|
|
extern RwBool _rpCreatePlatformAtomicPipelines(void);
|
|
|
|
extern void _rpDestroyPlatformMaterialPipelines(void);
|
|
extern void _rpDestroyPlatformAtomicPipelines(void);
|
|
extern void _rpDestroyPlatformWorldSectorPipelines(void);
|
|
|
|
extern RwBool _rxWorldDevicePluginAttach(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* WRLDPIPE_H */
|