mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-25 06:25:39 +00:00
b755ddefda
make include guards consistent. This was SVN commit r5040.
19 lines
504 B
C++
19 lines
504 B
C++
/**
|
|
* =========================================================================
|
|
* File : res.cpp
|
|
* Project : 0 A.D.
|
|
* Description :
|
|
* =========================================================================
|
|
*/
|
|
|
|
// license: GPL; see lib/license.txt
|
|
|
|
#include "precompiled.h"
|
|
#include "res.h"
|
|
|
|
|
|
AT_STARTUP(\
|
|
error_setDescription(ERR::RES_UNKNOWN_FORMAT, "Unknown file format");\
|
|
error_setDescription(ERR::RES_INCOMPLETE_HEADER, "File header not completely read");\
|
|
)
|