gba/gba.hpp

Including the <gba/gba.hpp> header provides access to the gba-plusplus library through the gba namespace.

#include <gba/gba.hpp>

int main() {
    using namespace gba;
    // ...
}

Defines

GBAXX_VERSION_MAJOR

Major version

GBAXX_VERSION_MINOR

Minor version

GBAXX_VERSION_PATCH

Patch version

GBAXX_VERSION

Combined version number

Calculated as:

( GBAXX_VERSION_MAJOR * 10000 ) + ( GBAXX_VERSION_MINOR * 100 ) + ( GBAXX_VERSION_PATCH * 1 )