//          Copyright 2019 - 2021 Michael D. Parker
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

module bindbc.freetype.bind.ftbbox;

import bindbc.freetype.config;
import bindbc.freetype.bind.ftimage,
       bindbc.freetype.bind.fttypes;

static if(staticBinding) {
	extern(C) @nogc nothrow {
        FT_Error FT_Outline_Get_BBox(FT_Outline* outline, FT_BBox* abbox);
    }
}
else {
    extern(C) @nogc nothrow {
        alias pFT_Outline_Get_BBox = FT_Error function(FT_Outline* outline, FT_BBox* abbox);
    }

    __gshared {
        pFT_Outline_Get_BBox FT_Outline_Get_BBox;
    }
}