mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
etcpak: Enforce C linkage on the ProcessRGB functions.
git-svn-id: https://svn.eduke32.com/eduke32@5688 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
7b639accc1
commit
6c13494fca
1 changed files with 8 additions and 0 deletions
|
@ -3,7 +3,15 @@
|
||||||
|
|
||||||
#include "Types.hpp"
|
#include "Types.hpp"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
uint64 ProcessRGB( const uint8* src );
|
uint64 ProcessRGB( const uint8* src );
|
||||||
uint64 ProcessRGB_ETC2( const uint8* src );
|
uint64 ProcessRGB_ETC2( const uint8* src );
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue