mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
22 lines
330 B
C
Executable file
22 lines
330 B
C
Executable file
/*
|
|
Prometheus.h
|
|
by Raj Sharma
|
|
rsharma@uiuc.edu
|
|
|
|
Standard declarations which are included in all projects.
|
|
*/
|
|
|
|
#ifndef PROMETHEUS_H
|
|
#define PROMETHEUS_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
|