libragephoto Version: 0.5.0
Loading...
Searching...
No Matches
RagePhotoB.hpp
1/*****************************************************************************
2* libragephoto RAGE Photo Parser
3* Copyright (C) 2023 Syping
4*
5* Redistribution and use in source and binary forms, with or without modification,
6* are permitted provided that the following conditions are met:
7*
8* 1. Redistributions of source code must retain the above copyright notice,
9* this list of conditions and the following disclaimer.
10*
11* 2. Redistributions in binary form must reproduce the above copyright notice,
12* this list of conditions and the following disclaimer in the documentation
13* and/or other materials provided with the distribution.
14*
15* This software is provided as-is, no warranties are given to you, we are not
16* responsible for anything with use of the software, you are self responsible.
17*****************************************************************************/
18
19#ifndef RAGEPHOTOB_HPP
20#define RAGEPHOTOB_HPP
21
22#ifdef __cplusplus
23#include "RagePhotoLibrary.h"
24#ifdef LIBRAGEPHOTO_CXX_ONLY
25#include "RagePhoto.hpp"
26typedef RagePhoto RagePhotoB;
27#elif defined LIBRAGEPHOTO_CXX_C
28#ifdef LIBRAGEPHOTO_STATIC
29#include "RagePhoto.hpp"
30typedef RagePhoto RagePhotoB;
31#else
32#include "RagePhotoA.hpp"
34#endif // LIBRAGEPHOTO_STATIC
35#elif defined LIBRAGEPHOTO_C_ONLY
36#include "RagePhotoA.hpp"
38#else
39#error "Could not determine best RagePhoto implementation, libragephoto installation might be corrupt!"
40#endif // LIBRAGEPHOTO_CXX_ONLY
41#endif // __cplusplus
42
43#endif // RAGEPHOTOB_HPP
GTA V and RDR 2 Photo Parser (C API wrapper).
Definition RagePhotoA.hpp:31
GTA V and RDR 2 Photo Parser.
Definition RagePhoto.hpp:34