mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-24 22:48:45 +00:00
a2a6f29ab3
This was SVN commit r1459.
23 lines
333 B
C
Executable File
23 lines
333 B
C
Executable File
/*
|
|
Pyrogenesis.h
|
|
by Raj Sharma
|
|
rsharma@uiuc.edu
|
|
|
|
Standard declarations which are included in all projects.
|
|
*/
|
|
|
|
#ifndef PYROGENESIS_H
|
|
#define PYROGENESIS_H
|
|
|
|
|
|
typedef const char * PS_RESULT;
|
|
|
|
#define DEFINE_ERROR(x, y) PS_RESULT x=y
|
|
#define DECLARE_ERROR(x) extern PS_RESULT x
|
|
|
|
DECLARE_ERROR(PS_OK);
|
|
DECLARE_ERROR(PS_FAIL);
|
|
|
|
|
|
#endif
|