blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9645c8ec5d6b68fd454fc4c3345673a4ba5bc0fc | 61b638259032db17c0dd07b068d9cb82a96910e2 | /src/LibunwindWrapper/Main.cpp | 34ce451309c5f8a88ae5cc1a88a49ea233aff8b5 | [
"MIT",
"Apache-2.0"
] | permissive | fractalspace/superdump | 0743160ec989ab28c1a075b63dc5475cd1f78982 | e44c1566cdfca7a3b7ab79c784b65909c4927a29 | refs/heads/master | 2020-03-26T14:36:23.544997 | 2017-06-22T11:05:10 | 2017-06-22T11:05:10 | 144,995,613 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,973 | cpp | #include "LibunwindWrapper.h"
#include "Main.h"
#include <stdio.h>
#include <vector>
using namespace std;
LibunwindWrapper* wrapper;
int main(int argc, char** argv) {
if (argc != 3) {
printf("2 arguments required.\r\n");
return 1;
}
printf("Launching with args %s,%s\r\n", argv[1], argv[2]);
fflush(stdout);
init(argv[1], argv[2]);
printf("Threads: %d\r\n", getNumberOfThreads());
fflush(stdout);
printf("Thread ID: %d\r\n", getThreadId());
fflush(stdout);
printf("Auxv 15 (PLAT): %s\r\n", getAuxvString(15));
fflush(stdout);
printf("Auxv 31 (EXEC): %s\r\n", getAuxvString(31));
fflush(stdout);
return 0;
}
MYAPI void init(const char* filepath, const char* workingDir) {
wrapper = new LibunwindWrapper(filepath, workingDir);
}
MYAPI int getNumberOfThreads() {
return wrapper->getNumberOfThreads();
}
MYAPI int getThreadId() {
return wrapper->getThreadId();
}
MYAPI void selectThread(int threadNumber) {
wrapper->selectThread(threadNumber);
}
MYAPI unsigned long getInstructionPointer() {
return wrapper->getInstructionPointer();
}
MYAPI unsigned long getStackPointer() {
return wrapper->getStackPointer();
}
MYAPI char* getProcedureName() {
return wrapper->getProcedureName();
}
MYAPI unsigned long getProcedureOffset() {
return wrapper->getProcedureOffset();
}
MYAPI bool step() {
return wrapper->step();
}
MYAPI unsigned long getAuxvValue(int type) {
return wrapper->getAuxvValue(type);
}
MYAPI const char* getAuxvString(int type) {
return wrapper->getAuxvString(type);
}
MYAPI int getSignalNumber(int thread_no) {
return wrapper->getSignalNo(thread_no);
}
MYAPI int getSignalErrorNo(int thread_no) {
return wrapper->getSignalErrorNo(thread_no);
}
MYAPI unsigned long getSignalAddress(int thread_no) {
return wrapper->getSignalAddress(thread_no);
}
MYAPI const char* getFileName() {
return wrapper->getFileName();
}
MYAPI const char* getArgs() {
return wrapper->getArgs();
}
MYAPI void destroy() {
delete wrapper;
} | [
"dominik.steinbinder@dynatrace.com"
] | dominik.steinbinder@dynatrace.com |
52adc12c677a9521c33e309887bbc1aa56dd3b52 | a97b372638717f8b8d7a0aff1f8ec43a80957d3d | /gtest/template_test.cpp | 912789aa5d5fd7af76a5a6a1673c8067a69cb0fb | [] | no_license | ilya1725/ProjectBits | a5cbcdbccfccbbb639df4276e969075e7685233f | 77722bcb74b1ebbcc8def6668c300c42f600686c | refs/heads/master | 2022-12-23T20:31:29.832771 | 2022-12-22T22:30:57 | 2022-12-22T22:30:57 | 45,317,582 | 0 | 0 | null | 2022-11-10T06:41:41 | 2015-10-31T20:40:57 | C++ | UTF-8 | C++ | false | false | 1,251 | cpp | //
// Google test how to test templated classes
//
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <type_traits>
// The actual class to run the test on
template <std::size_t N>
class Line {
public:
explicit Line(){};
std::size_t length() const {
return length_;
}
private:
static constexpr std::size_t length_{N};
};
template <typename T>
class line_tester : public ::testing::Test
{
protected:
static const size_t kRedundantCmdNum{3};
line_tester() {}
void SetUp()
{
// code here will execute just before the test ensues
}
void TearDown()
{
// code here will be called just after the test completes
// ok to through exceptions from here if need be
}
virtual ~line_tester() {}
typename T::value_type GetLineLength() { return line_.length();}
private:
Line<T::value> line_{};
};
using test_types = ::testing::Types<
std::integral_constant<std::size_t,2>,
std::integral_constant<std::size_t,3>,
std::integral_constant<std::size_t,5>>;
TYPED_TEST_CASE(line_tester, test_types);
TYPED_TEST(line_tester, get_capacity) {
static constexpr std::size_t n = TypeParam::value;
ASSERT_EQ(n, this->GetLineLength());
}
| [
"katsnelson@gmail.com"
] | katsnelson@gmail.com |
e35197db6ad5bb2d1627575661f4d6d3118aa4f9 | 8928ba08b866447488eac57a813bbb1550f2d7dd | /src/Utility.cpp | 92d9013320ec2280d48ff20f4206e15096d23c99 | [] | no_license | CJavinal/Alpha | 2696fe5956f510d36a969bcfe9e1a0d19339b11f | 2a520fbad5766c434cbf1d3eda97979e9c148882 | refs/heads/master | 2020-03-21T10:39:34.079110 | 2018-07-01T22:20:03 | 2018-07-01T22:20:03 | 138,463,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,080 | cpp | #include "Utility.hpp"
#include <SFML/Graphics/Sprite.hpp>
#include <SFML/Graphics/Text.hpp>
#include <cassert>
#include <cmath>
std::string toString(sf::Keyboard::Key key)
{
#define BOOK_KEYTOSTRING_CASE(KEY) case sf::Keyboard::KEY: return #KEY;
switch (key)
{
BOOK_KEYTOSTRING_CASE(Unknown)
BOOK_KEYTOSTRING_CASE(A)
BOOK_KEYTOSTRING_CASE(B)
BOOK_KEYTOSTRING_CASE(C)
BOOK_KEYTOSTRING_CASE(D)
BOOK_KEYTOSTRING_CASE(E)
BOOK_KEYTOSTRING_CASE(F)
BOOK_KEYTOSTRING_CASE(G)
BOOK_KEYTOSTRING_CASE(H)
BOOK_KEYTOSTRING_CASE(I)
BOOK_KEYTOSTRING_CASE(J)
BOOK_KEYTOSTRING_CASE(K)
BOOK_KEYTOSTRING_CASE(L)
BOOK_KEYTOSTRING_CASE(M)
BOOK_KEYTOSTRING_CASE(N)
BOOK_KEYTOSTRING_CASE(O)
BOOK_KEYTOSTRING_CASE(P)
BOOK_KEYTOSTRING_CASE(Q)
BOOK_KEYTOSTRING_CASE(R)
BOOK_KEYTOSTRING_CASE(S)
BOOK_KEYTOSTRING_CASE(T)
BOOK_KEYTOSTRING_CASE(U)
BOOK_KEYTOSTRING_CASE(V)
BOOK_KEYTOSTRING_CASE(W)
BOOK_KEYTOSTRING_CASE(X)
BOOK_KEYTOSTRING_CASE(Y)
BOOK_KEYTOSTRING_CASE(Z)
BOOK_KEYTOSTRING_CASE(Num0)
BOOK_KEYTOSTRING_CASE(Num1)
BOOK_KEYTOSTRING_CASE(Num2)
BOOK_KEYTOSTRING_CASE(Num3)
BOOK_KEYTOSTRING_CASE(Num4)
BOOK_KEYTOSTRING_CASE(Num5)
BOOK_KEYTOSTRING_CASE(Num6)
BOOK_KEYTOSTRING_CASE(Num7)
BOOK_KEYTOSTRING_CASE(Num8)
BOOK_KEYTOSTRING_CASE(Num9)
BOOK_KEYTOSTRING_CASE(Escape)
BOOK_KEYTOSTRING_CASE(LControl)
BOOK_KEYTOSTRING_CASE(LShift)
BOOK_KEYTOSTRING_CASE(LAlt)
BOOK_KEYTOSTRING_CASE(LSystem)
BOOK_KEYTOSTRING_CASE(RControl)
BOOK_KEYTOSTRING_CASE(RShift)
BOOK_KEYTOSTRING_CASE(RAlt)
BOOK_KEYTOSTRING_CASE(RSystem)
BOOK_KEYTOSTRING_CASE(Menu)
BOOK_KEYTOSTRING_CASE(LBracket)
BOOK_KEYTOSTRING_CASE(RBracket)
BOOK_KEYTOSTRING_CASE(SemiColon)
BOOK_KEYTOSTRING_CASE(Comma)
BOOK_KEYTOSTRING_CASE(Period)
BOOK_KEYTOSTRING_CASE(Quote)
BOOK_KEYTOSTRING_CASE(Slash)
BOOK_KEYTOSTRING_CASE(BackSlash)
BOOK_KEYTOSTRING_CASE(Tilde)
BOOK_KEYTOSTRING_CASE(Equal)
BOOK_KEYTOSTRING_CASE(Dash)
BOOK_KEYTOSTRING_CASE(Space)
BOOK_KEYTOSTRING_CASE(Return)
BOOK_KEYTOSTRING_CASE(BackSpace)
BOOK_KEYTOSTRING_CASE(Tab)
BOOK_KEYTOSTRING_CASE(PageUp)
BOOK_KEYTOSTRING_CASE(PageDown)
BOOK_KEYTOSTRING_CASE(End)
BOOK_KEYTOSTRING_CASE(Home)
BOOK_KEYTOSTRING_CASE(Insert)
BOOK_KEYTOSTRING_CASE(Delete)
BOOK_KEYTOSTRING_CASE(Add)
BOOK_KEYTOSTRING_CASE(Subtract)
BOOK_KEYTOSTRING_CASE(Multiply)
BOOK_KEYTOSTRING_CASE(Divide)
BOOK_KEYTOSTRING_CASE(Left)
BOOK_KEYTOSTRING_CASE(Right)
BOOK_KEYTOSTRING_CASE(Up)
BOOK_KEYTOSTRING_CASE(Down)
BOOK_KEYTOSTRING_CASE(Numpad0)
BOOK_KEYTOSTRING_CASE(Numpad1)
BOOK_KEYTOSTRING_CASE(Numpad2)
BOOK_KEYTOSTRING_CASE(Numpad3)
BOOK_KEYTOSTRING_CASE(Numpad4)
BOOK_KEYTOSTRING_CASE(Numpad5)
BOOK_KEYTOSTRING_CASE(Numpad6)
BOOK_KEYTOSTRING_CASE(Numpad7)
BOOK_KEYTOSTRING_CASE(Numpad8)
BOOK_KEYTOSTRING_CASE(Numpad9)
BOOK_KEYTOSTRING_CASE(F1)
BOOK_KEYTOSTRING_CASE(F2)
BOOK_KEYTOSTRING_CASE(F3)
BOOK_KEYTOSTRING_CASE(F4)
BOOK_KEYTOSTRING_CASE(F5)
BOOK_KEYTOSTRING_CASE(F6)
BOOK_KEYTOSTRING_CASE(F7)
BOOK_KEYTOSTRING_CASE(F8)
BOOK_KEYTOSTRING_CASE(F9)
BOOK_KEYTOSTRING_CASE(F10)
BOOK_KEYTOSTRING_CASE(F11)
BOOK_KEYTOSTRING_CASE(F12)
BOOK_KEYTOSTRING_CASE(F13)
BOOK_KEYTOSTRING_CASE(F14)
BOOK_KEYTOSTRING_CASE(F15)
BOOK_KEYTOSTRING_CASE(Pause)
default:
return "";
}
return "";
}
void centerOrigin(sf::Sprite& sprite) {
sf::FloatRect bounds = sprite.getLocalBounds();
sprite.setOrigin(bounds.width / 2.f, bounds.height / 2.f);
}
void centerOrigin(sf::Text& text) {
sf::FloatRect bounds = text.getLocalBounds();
text.setOrigin(bounds.width / 2.f, bounds.height / 2.f);
}
float toDegree(float radian) {
return 180.f / 3.141592653589793238462643383f * radian;
}
float toRadian(float degree) {
return 3.141592653589793238462643383f / 180.f * degree;
}
float length(sf::Vector2f vector) {
return std::sqrt(vector.x * vector.x + vector.y * vector.y);
}
sf::Vector2f unitVector(sf::Vector2f vector) {
assert(vector != sf::Vector2f(0.f, 0.f));
return vector / length(vector);
}
| [
"CJavinal.1@protonmail.com"
] | CJavinal.1@protonmail.com |
da1492b2a3297317dd850a7e25b7f9b084b3b8bd | 5e8d200078e64b97e3bbd1e61f83cb5bae99ab6e | /main/source/src/protocols/simple_moves/UniformPositionMover.hh | 92e4187a34bc1967c67200111af34b4694fd2b9a | [] | no_license | MedicaicloudLink/Rosetta | 3ee2d79d48b31bd8ca898036ad32fe910c9a7a28 | 01affdf77abb773ed375b83cdbbf58439edd8719 | refs/heads/master | 2020-12-07T17:52:01.350906 | 2020-01-10T08:24:09 | 2020-01-10T08:24:09 | 232,757,729 | 2 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 3,993 | hh | // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
// (c) addressed to University of Washington CoMotion, email: license@uw.edu.
/// @file protocols/simple_moves/UniformPositionMover.hh
///
/// @brief Apply a uniform (deterministic move) to a given position
/// @details Generic movers for applying a uniform rotation or translation move
/// along a jump to a given partner in the pose.
///
/// @author Rebecca Alford (rfalford12@gmail.com)
/// @note Last Modified (7/10/14)
#ifndef INCLUDED_protocols_simple_moves_UniformPositionMover_hh
#define INCLUDED_protocols_simple_moves_UniformPositionMover_hh
// Unit Headers
#include <protocols/simple_moves/UniformPositionMover.fwd.hh>
// Project Headers
#include <protocols/moves/Mover.hh>
// Package Headers
#include <core/pose/Pose.fwd.hh>
#include <core/types.hh>
// Utility Headers
#include <numeric/xyzVector.hh>
namespace protocols {
namespace simple_moves {
/// @brief Uniform Rotation Mover
class UniformRotationMover : public protocols::moves::Mover {
public:
////////////////////
/// Constructors ///
////////////////////
/// @brief Custom Constructor
/// @details Specify a new normal to rotate membranes to
/// to move this position to
UniformRotationMover(
core::Real alpha,
core::Vector axis,
core::SSize rb_jump
);
/// @brief Copy Constructor
/// @details Make a deep copy of this mover object
UniformRotationMover( UniformRotationMover const & src );
/// @brief Assignment Operator
/// @details Make a deep copy of this mover object, overriding the assignment operator
UniformRotationMover &
operator=( UniformRotationMover const & src );
/// @brief Destructor
~UniformRotationMover() override;
/////////////////////
/// Mover Methods ///
/////////////////////
/// @brief Get the name of this mover
std::string get_name() const override;
/// @brief Apply Rotation
/// @brief Rotate the membrane to the new normal position
void apply( Pose & pose ) override;
private: // methods
/// @brief Construct a Default Membrane Position Mover
UniformRotationMover();
private:
// Store new normal axis
core::Real alpha_;
core::Vector axis_;
// Store jump num
core::SSize rb_jump_;
};
/// @brief Uniform Translation Mover
class UniformTranslationMover : public protocols::moves::Mover {
public:
////////////////////
/// Constructors ///
////////////////////
/// @brief Custom Constructor
/// @details Specify a new center position to translate this stub to
UniformTranslationMover(
core::Vector new_position_,
core::SSize rb_jump
);
/// @brief Copy Constructor
/// @details Make a deep copy of this mover object
UniformTranslationMover( UniformTranslationMover const & src );
/// @brief Assignment Operator
/// @details Make a deep copy of this mover object, overriding the assignment operator
UniformTranslationMover &
operator=( UniformTranslationMover const & src );
/// @brief Destructor
~UniformTranslationMover() override;
/////////////////////
/// Mover Methods ///
/////////////////////
/// @brief Get the name of this mover
std::string get_name() const override;
/// @brief Apply Translation to membrane position
/// @brief Translate membrane position to new center
void apply( Pose & pose ) override;
private:
/// @brief Construct a Default Membrane Position Mover
UniformTranslationMover();
private:
// Store new center
core::Vector new_position_;
// Store jump num
core::SSize rb_jump_;
};
} // simple_moves
} // protocols
#endif // INCLUDED_protocols_simple_moves_UniformPositionMover_hh
| [
"36790013+MedicaicloudLink@users.noreply.github.com"
] | 36790013+MedicaicloudLink@users.noreply.github.com |
36d2e1500a094f17880a5bfceb35ef6530dc0abb | 3bbfb653b7f13a0b4d130d4e10362f353196504d | /camOdoCalib/src/egsl/egsl_ops.cpp | 6d8c20ff1876b947f73d6d9d8676bfff2abc203e | [] | no_license | guanyinsama/odom_lidar_calibration | 0a5286cff92074bc2eab286677a1a7e044f77e7a | 1e131934cd695fbf756da676687094bc1aaafd0e | refs/heads/main | 2023-07-13T05:41:37.481208 | 2021-08-24T05:39:49 | 2021-08-24T05:39:49 | 399,347,799 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,182 | cpp | //#include <gsl/gsl_matrix.h>
//#include <gsl/gsl_blas.h>
//#include <gsl/gsl_linalg.h>
//#include <gsl/gsl_eigen.h>
#include "egsl/egsl.h"
val egsl_sub(val v1,val v2){
return egsl_sum(v1, egsl_scale(-1.0,v2));
}
val egsl_compose_col(val v1, val v2){
gsl_matrix *m1 = egsl_gslm(v1);
gsl_matrix *m2 = egsl_gslm(v2);
egsl_expect_size(v2, 0, m1->cols());
val v3 = egsl_alloc(m1->rows()+m2->rows(),m1->cols());
gsl_matrix *m3 = egsl_gslm(v3);
int i,j;
for(j=0;j<m1->cols();j++) {
for(i=0;i<m1->rows();i++)
gsl_matrix_set(m3, i, j, gsl_matrix_get(m1,i,j));
for(i=0;i<m2->rows();i++)
gsl_matrix_set(m3, m1->rows()+i, j, gsl_matrix_get(m2,i,j));
}
return v3;
}
val egsl_compose_row(val v1, val v2){
gsl_matrix *m1 = egsl_gslm(v1);
gsl_matrix *m2 = egsl_gslm(v2);
egsl_expect_size(v2, m1->rows(), 0);
val v3 = egsl_alloc(m1->rows(), m1->cols() + m2->cols());
gsl_matrix *m3 = egsl_gslm(v3);
int i,j;
for(i=0;i<m1->rows();i++) {
for(j=0;j<m1->cols();j++)
gsl_matrix_set(m3, i, j, gsl_matrix_get(m1,i,j));
for(j=0;j<m2->cols();j++)
gsl_matrix_set(m3, i, m1->cols()+j, gsl_matrix_get(m2,i,j));
}
return v3;
}
void egsl_add_to(val v1, val v2) {
gsl_matrix * m1 = egsl_gslm(v1);
gsl_matrix * m2 = egsl_gslm(v2);
gsl_matrix_add(m1,m2);
}
void egsl_add_to_col(val v1, size_t j, val v2) {
/* egsl_print("m1",v1);
egsl_print("m2",v2); */
gsl_matrix * m1 = egsl_gslm(v1);
gsl_matrix * m2 = egsl_gslm(v2);
/* printf("m1 size = %d,%d j = %d\n",m1->rows(),m1->cols(),j); */
egsl_expect_size(v2, m1->rows(), 1);
int i;
for(i=0;i<m1->rows();i++) {
*gsl_matrix_ptr(m1, i, j) += gsl_matrix_get(m2,i,0);
}
}
val egsl_copy_val(val v1) {
gsl_matrix * m1 = egsl_gslm(v1);
val v2 = egsl_alloc(m1->rows(),m1->cols());
gsl_matrix * m2 = egsl_gslm(v2);
gsl_matrix_memcpy(m2,m1);
return v2;
}
val egsl_scale(double s, val v1){
val v2 = egsl_copy_val(v1);
gsl_matrix * m2 = egsl_gslm(v2);
gsl_matrix_scale(m2, s);
return v2;
}
val egsl_sum(val v1, val v2){
gsl_matrix * m1 = egsl_gslm(v1);
gsl_matrix * m2 = egsl_gslm(v2);
val v3 = egsl_alloc(m1->rows(),m1->cols());
gsl_matrix * m3 = egsl_gslm(v3);
gsl_matrix_memcpy(m3,m1);
gsl_matrix_add(m3,m2);
return v3;
}
//val egsl_sum3(val v1, val v2, val v3){
// return egsl_sum(v1, egsl_sum(v2,v3));
//}
val egsl_mult(val v1, val v2){
gsl_matrix * a = egsl_gslm(v1);
gsl_matrix * b = egsl_gslm(v2);
val v = egsl_alloc(a->rows(),b->cols());
gsl_matrix * ab = egsl_gslm(v);
//gsl_blas_dgemm(CblasNoTrans,CblasNoTrans,1.0,a,b,0.0,ab);
*ab = *a * *b;
return v;
}
val egsl_transpose(val v1){
gsl_matrix * m1 = egsl_gslm(v1);
val v2 = egsl_alloc(m1->cols(),m1->rows());
gsl_matrix * m2 = egsl_gslm(v2);
*m2 = m1->transpose();
//gsl_matrix_transpose_memcpy(m2,m1);
return v2;
}
val egsl_inverse(val v1){
gsl_matrix*A = egsl_gslm(v1);
val v2 = egsl_alloc(A->rows(),A->rows());
gsl_matrix*invA = egsl_gslm(v2);
// size_t n = A->rows();
// gsl_matrix * m = gsl_matrix_alloc(n,n);
//
// gsl_matrix_memcpy(m,A);
// gsl_permutation * perm = gsl_permutation_alloc (n);
// /* Make LU decomposition of matrix m */
// int s;
// gsl_linalg_LU_decomp (m, perm, &s);
// /* Invert the matrix m */
// gsl_linalg_LU_invert (m, perm, invA);
// gsl_permutation_free(perm);
// gsl_matrix_free(m);
*invA = A->inverse();
return v2;
}
//void egsl_symm_eig(val v, double* eigenvalues, val* eigenvectors) {
// gsl_matrix *m = egsl_gslm(v);
// size_t N = m->rows();
// /* Check for v to be square */
//
// gsl_matrix *A = gsl_matrix_alloc(N,N);
// gsl_matrix_memcpy(A, m);
//
// gsl_vector *eval = gsl_vector_alloc(N);
// gsl_matrix *evec = gsl_matrix_alloc(N,N);
//
// gsl_eigen_symmv_workspace * ws = gsl_eigen_symmv_alloc(N);
// gsl_eigen_symmv(A, eval, evec, ws);
// gsl_eigen_symmv_free(ws);
//
//
// gsl_eigen_symmv_sort(eval, evec, GSL_EIGEN_SORT_VAL_DESC);
//
// size_t j;
// for(j=0;j<N;j++) {
// eigenvalues[j] = gsl_vector_get(eval, j);
// eigenvectors[j] = egsl_alloc(N,1);
// size_t i;
// for(i=0;i<N;i++)
// *egsl_atmp(eigenvectors[j],i,0) = gsl_matrix_get(evec,i,j);
// }
//
//
// gsl_vector_free(eval);
// gsl_matrix_free(evec);
// gsl_matrix_free(A);
//}
| [
"yjyyanw@sunnyoptical.com"
] | yjyyanw@sunnyoptical.com |
5b3b39a80368b993754bc6a39483ac10869e38b8 | 1abd81b2612f0d5c428a90dcfd78e21603529784 | /hackerrank-minimum-penalty-path/main.cpp | 76087382588915289b5117ce0123c2657a48cb1f | [] | no_license | younghyunjo/problem-solving | 1b5a1b663ec60b8156ee6419b399e813e1b9d690 | 9f400816cd4ad21d5c2f6563f21821d43bf95738 | refs/heads/master | 2021-01-25T07:54:31.763546 | 2019-01-31T00:44:08 | 2019-01-31T00:44:08 | 93,679,631 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,391 | cpp |
#include <bits/stdc++.h>
using namespace std;
#define MAX_COST 1024
int minimalPenalty(vector<pair<int, int>>* edges, int from, int to) {
bool visited[1001][MAX_COST];
memset(visited, false, sizeof(visited));
queue<pair<int, int>> bfsQueue;
bfsQueue.push(make_pair(from, 0));
while (!bfsQueue.empty()) {
auto& a = bfsQueue.front();
bfsQueue.pop();
int node = a.first;
int cost = a.second;
for (auto b : edges[node]) {
int nextNode = b.first;
int nextCost = b.second;
if (nextNode== node)
continue;
int newCost = nextCost|cost;
if (visited[nextNode][newCost])
continue;
visited[nextNode][nextCost|cost] = true;
bfsQueue.push(make_pair(nextNode, newCost));
}
}
for (int i=1; i<MAX_COST; i++) {
if (visited[to][i])
return i;
}
return -1;
}
int main() {
int n, m;
cin >> n >> m;
vector <pair<int, int>>edges[1001];
for (int i=0; i<m; i++) {
int nodeA, nodeB, cost;
cin >> nodeA >> nodeB >> cost;
edges[nodeA].push_back(make_pair(nodeB, cost));
edges[nodeB].push_back(make_pair(nodeA, cost));
}
int from, to;
cin >> from >> to;
cout << minimalPenalty(edges, from, to) << endl;
return 0;
}
| [
"younghyunjo99@gmail.com"
] | younghyunjo99@gmail.com |
784a92e29bd6f82570b7389cbefca8e9c6291c58 | 5950c4973a1862d2b67e072deeea8f4188d23d97 | /Export/macos/obj/src/lime/_internal/backend/native/NativeCFFI.cpp | 69d449c4ab665329b101e5eef41d3c0249d16d66 | [
"MIT"
] | permissive | TrilateralX/TrilateralLimeTriangle | b3cc0283cd3745b57ccc9131fcc9b81427414718 | 219d8e54fc3861dc1ffeb3da25da6eda349847c1 | refs/heads/master | 2022-10-26T11:51:28.578254 | 2020-06-16T12:32:35 | 2020-06-16T12:32:35 | 272,572,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 1,339,642 | cpp | // Generated by Haxe 4.2.0-rc.1+cb30bd580
#include <hxcpp.h>
#ifndef INCLUDED_cpp_Prime
#include <cpp/Prime.h>
#endif
#ifndef INCLUDED_lime__internal_backend_native_NativeCFFI
#include <lime/_internal/backend/native/NativeCFFI.h>
#endif
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_354_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",354,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_355_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",355,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_357_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",357,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_358_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",358,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_359_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",359,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_360_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",360,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_362_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",362,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_363_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",363,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_364_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",364,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_366_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",366,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_368_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",368,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_370_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",370,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_372_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",372,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_374_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",374,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_376_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",376,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_378_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",378,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_380_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",380,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_381_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",381,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_382_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",382,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_384_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",384,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_386_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",386,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_388_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",388,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_390_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",390,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_392_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",392,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_394_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",394,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_396_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",396,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_398_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",398,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_400_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",400,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_402_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",402,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_404_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",404,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_406_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",406,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_407_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",407,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_408_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",408,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_410_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",410,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_412_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",412,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_414_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",414,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_416_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",416,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_417_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",417,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_418_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",418,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_420_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",420,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_422_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",422,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_423_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",423,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_424_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",424,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_425_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",425,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_426_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",426,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_428_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",428,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_430_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",430,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_432_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",432,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_433_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",433,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_435_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",435,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_437_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",437,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_439_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",439,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_441_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",441,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_443_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",443,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_445_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",445,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_446_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",446,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_448_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",448,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_449_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",449,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_451_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",451,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_453_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",453,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_455_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",455,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_457_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",457,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_459_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",459,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_461_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",461,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_463_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",463,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_465_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",465,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_467_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",467,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_469_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",469,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_471_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",471,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_473_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",473,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_475_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",475,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_477_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",477,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_479_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",479,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_481_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",481,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_483_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",483,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_484_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",484,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_485_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",485,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_486_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",486,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_488_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",488,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_490_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",490,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_492_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",492,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_494_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",494,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_496_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",496,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_498_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",498,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_500_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",500,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_502_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",502,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_504_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",504,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_506_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",506,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_507_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",507,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_509_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",509,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_511_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",511,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_513_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",513,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_515_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",515,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_517_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",517,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_519_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",519,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_521_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",521,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_523_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",523,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_525_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",525,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_526_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",526,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_527_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",527,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_528_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",528,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_530_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",530,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_532_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",532,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_534_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",534,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_535_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",535,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_536_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",536,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_537_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",537,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_539_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",539,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_541_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",541,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_543_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",543,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_544_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",544,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_546_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",546,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_548_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",548,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_550_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",550,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_552_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",552,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_554_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",554,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_555_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",555,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_556_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",556,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_558_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",558,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_559_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",559,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_561_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",561,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_562_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",562,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_563_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",563,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_565_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",565,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_566_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",566,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_568_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",568,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_569_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",569,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_570_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",570,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_571_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",571,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_572_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",572,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_574_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",574,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_576_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",576,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_578_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",578,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_580_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",580,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_582_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",582,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_584_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",584,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_586_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",586,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_588_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",588,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_590_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",590,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_592_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",592,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_594_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",594,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_596_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",596,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_598_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",598,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_600_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",600,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_602_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",602,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_604_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",604,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1656_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1656,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1658_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1658,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1660_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1660,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1662_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1662,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1664_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1664,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1666_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1666,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1667_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1667,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1669_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1669,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1670_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1670,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1671_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1671,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1673_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1673,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1674_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1674,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1676_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1676,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1677_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1677,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1678_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1678,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1679_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1679,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1681_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1681,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1682_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1682,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1683_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1683,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1684_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1684,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1685_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1685,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1686_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1686,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1687_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1687,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1688_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1688,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1690_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1690,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1692_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1692,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1693_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1693,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1695_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1695,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1696_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1696,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1698_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1698,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1699_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1699,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1700_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1700,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1701_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1701,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1702_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1702,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1703_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1703,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1704_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1704,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1705_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1705,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1706_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1706,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1707_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1707,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1708_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1708,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1709_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1709,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1710_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1710,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1711_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1711,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1712_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1712,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1713_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1713,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1715_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1715,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1717_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1717,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1718_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1718,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1720_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1720,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1721_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1721,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1723_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1723,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1724_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1724,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1725_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1725,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1726_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1726,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1728_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1728,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1729_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1729,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1731_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1731,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1732_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1732,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1733_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1733,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1734_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1734,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1735_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1735,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1736_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1736,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1737_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1737,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1739_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1739,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1740_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1740,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1741_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1741,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1743_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1743,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1744_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1744,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1746_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1746,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1747_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1747,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1748_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1748,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1750_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1750,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1752_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1752,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1754_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1754,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1756_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1756,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1758_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1758,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1760_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1760,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1762_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1762,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1763_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1763,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1764_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1764,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1766_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1766,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1768_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1768,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1770_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1770,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1772_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1772,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1773_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1773,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1775_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1775,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1776_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1776,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1778_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1778,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1779_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1779,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1780_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1780,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1782_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1782,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1783_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1783,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1785_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1785,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1786_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1786,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1788_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1788,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1790_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1790,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1792_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1792,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1793_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1793,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1794_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1794,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1795_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1795,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1797_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1797,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1799_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1799,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1800_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1800,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1802_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1802,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1803_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1803,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1804_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1804,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1805_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1805,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1806_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1806,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1807_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1807,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1808_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1808,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_1809_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",1809,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2558_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2558,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2560_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2560,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2562_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2562,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2563_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2563,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2565_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2565,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2567_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2567,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2568_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2568,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2569_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2569,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2570_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2570,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2572_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2572,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2573_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2573,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2575_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2575,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2577_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2577,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2578_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2578,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2580_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2580,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2581_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2581,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2582_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2582,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2583_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2583,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2585_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2585,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2587_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2587,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2589_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2589,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2590_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2590,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2591_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2591,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2592_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2592,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2593_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2593,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2595_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2595,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2596_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2596,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2597_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2597,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2598_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2598,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2599_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2599,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2601_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2601,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2603_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2603,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2605_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2605,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2607_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2607,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2609_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2609,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2611_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2611,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2612_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2612,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2614_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2614,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2616_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2616,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2617_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2617,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2618_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2618,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2620_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2620,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2621_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2621,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2623_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2623,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2624_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2624,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2626_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2626,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2628_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2628,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2630_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2630,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2632_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2632,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2634_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2634,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2635_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2635,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2636_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2636,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2637_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2637,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2638_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2638,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2640_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2640,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2642_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2642,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2644_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2644,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2646_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2646,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2648_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2648,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2650_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2650,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2652_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2652,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2654_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2654,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2656_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2656,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2658_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2658,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2660_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2660,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2662_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2662,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2664_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2664,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2666_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2666,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2668_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2668,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2670_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2670,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2672_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2672,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2674_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2674,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2676_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2676,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2677_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2677,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2679_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2679,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2680_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2680,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2681_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2681,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2683_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2683,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2685_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2685,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2687_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2687,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2689_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2689,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2691_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2691,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2692_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2692,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2693_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2693,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2695_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2695,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2697_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2697,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2699_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2699,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2701_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2701,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2703_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2703,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2705_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2705,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2707_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2707,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2709_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2709,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2711_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2711,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2713_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2713,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2715_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2715,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2717_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2717,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2719_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2719,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2721_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2721,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2723_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2723,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2725_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2725,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2727_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2727,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2729_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2729,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2731_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2731,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2733_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2733,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2735_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2735,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2737_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2737,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2739_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2739,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2741_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2741,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2743_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2743,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2745_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2745,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2747_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2747,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2749_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2749,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2751_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2751,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2753_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2753,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2755_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2755,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_2757_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",2757,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3340_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3340,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3341_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3341,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3342_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3342,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3343_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3343,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3344_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3344,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3345_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3345,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3346_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3346,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3348_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3348,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3350_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3350,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3351_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3351,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3353_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3353,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3354_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3354,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3355_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3355,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3356_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3356,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3358_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3358,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3359_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3359,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3361_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3361,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3363_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3363,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3364_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3364,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3366_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3366,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3367_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3367,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3369_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3369,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3371_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3371,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3373_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3373,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3374_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3374,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3376_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3376,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_3378_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",3378,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4092_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4092,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4093_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4093,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4094_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4094,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4095_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4095,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4097_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4097,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4099_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4099,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4100_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4100,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4102_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4102,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4104_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4104,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4105_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4105,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4107_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4107,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4108_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4108,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4109_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4109,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4111_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4111,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4112_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4112,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4114_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4114,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4115_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4115,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4117_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4117,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4118_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4118,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4120_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4120,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4122_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4122,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4124_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4124,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4126_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4126,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4128_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4128,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4129_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4129,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4131_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4131,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4133_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4133,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4135_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4135,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4137_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4137,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4139_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4139,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4141_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4141,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4142_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4142,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4143_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4143,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4145_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4145,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4146_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4146,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4148_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4148,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4150_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4150,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4152_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4152,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4154_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4154,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4156_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4156,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4158_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4158,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4160_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4160,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4162_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4162,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4163_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4163,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4164_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4164,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4165_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4165,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4166_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4166,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4167_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4167,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4168_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4168,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4169_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4169,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4170_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4170,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4172_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4172,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4173_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4173,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4174_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4174,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4175_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4175,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4176_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4176,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4177_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4177,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4178_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4178,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4179_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4179,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4180_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4180,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4181_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4181,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4182_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4182,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4183_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4183,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4185_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4185,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4186_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4186,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4187_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4187,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4188_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4188,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4190_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4190,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4191_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4191,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4192_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4192,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4194_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4194,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4195_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4195,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4197_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4197,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4198_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4198,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4200_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4200,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4202_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4202,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4204_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4204,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4205_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4205,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4207_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4207,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4208_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4208,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4210_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4210,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4211_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4211,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4212_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4212,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4213_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4213,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4215_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4215,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4217_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4217,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4219_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4219,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4220_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4220,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4221_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4221,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4223_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4223,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4225_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4225,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4227_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4227,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4229_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4229,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4231_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4231,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4233_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4233,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4235_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4235,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4237_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4237,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4238_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4238,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4240_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4240,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4242_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4242,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4244_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4244,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4246_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4246,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4248_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4248,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4250_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4250,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4252_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4252,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4253_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4253,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4254_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4254,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4255_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4255,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4257_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4257,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4259_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4259,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4261_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4261,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4263_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4263,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4264_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4264,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4266_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4266,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4268_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4268,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4270_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4270,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4272_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4272,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4274_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4274,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4276_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4276,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4278_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4278,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4279_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4279,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4281_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4281,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4282_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4282,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4284_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4284,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4285_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4285,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4287_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4287,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4289_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4289,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4291_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4291,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4293_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4293,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4295_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4295,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4297_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4297,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4299_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4299,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4301_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4301,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4302_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4302,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4304_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4304,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4306_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4306,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4307_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4307,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4308_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4308,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4309_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4309,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4311_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4311,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4313_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4313,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4315_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4315,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4317_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4317,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4318_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4318,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4320_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4320,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4322_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4322,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4323_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4323,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4325_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4325,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4326_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4326,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4328_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4328,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4329_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4329,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4331_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4331,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4333_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4333,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4335_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4335,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4337_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4337,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4339_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4339,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4340_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4340,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4342_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4342,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4344_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4344,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4346_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4346,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4348_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4348,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4350_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4350,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4352_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4352,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4353_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4353,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4355_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4355,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4357_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4357,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4358_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4358,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4359_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4359,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4360_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4360,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4361_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4361,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4362_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4362,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4363_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4363,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4364_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4364,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4365_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4365,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4366_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4366,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4367_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4367,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4368_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4368,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4369_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4369,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4370_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4370,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4371_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4371,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4373_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4373,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4375_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4375,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4376_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4376,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4378_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4378,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4380_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4380,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4381_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4381,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4383_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4383,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4385_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4385,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4387_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4387,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4388_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4388,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4390_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4390,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4392_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4392,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4394_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4394,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4396_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4396,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4398_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4398,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4400_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4400,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4402_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4402,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4404_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4404,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4405_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4405,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4407_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4407,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4408_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4408,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4409_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4409,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4411_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4411,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4412_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4412,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4414_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4414,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4415_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4415,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4417_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4417,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4419_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4419,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4421_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4421,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4423_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4423,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4425_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4425,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4427_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4427,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4429_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4429,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4431_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4431,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4433_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4433,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4435_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4435,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4436_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4436,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4438_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4438,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4439_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4439,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4441_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4441,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4442_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4442,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4444_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4444,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4446_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4446,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4448_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4448,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4449_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4449,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4451_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4451,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4452_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4452,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4454_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4454,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4456_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4456,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4458_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4458,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4459_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4459,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4461_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4461,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4462_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4462,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4464_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4464,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4466_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4466,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4468_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4468,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4470_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4470,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4472_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4472,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4474_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4474,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4476_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4476,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4478_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4478,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4480_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4480,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4482_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4482,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4484_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4484,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4486_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4486,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4488_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4488,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4490_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4490,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4492_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4492,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4494_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4494,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4496_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4496,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4497_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4497,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4498_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4498,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4499_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4499,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4501_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4501,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4503_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4503,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4505_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4505,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4507_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4507,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4509_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4509,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4511_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4511,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4513_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4513,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4515_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4515,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4517_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4517,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4519_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4519,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4521_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4521,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4523_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4523,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4525_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4525,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4527_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4527,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4529_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4529,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_4530_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",4530,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5846_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5846,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5848_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5848,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5850_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5850,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5851_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5851,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5853_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5853,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5854_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5854,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5855_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5855,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5856_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5856,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5858_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5858,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5860_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5860,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5862_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5862,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5864_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5864,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5866_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5866,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5868_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5868,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5870_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5870,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5872_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5872,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5873_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5873,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5875_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5875,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5877_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5877,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5879_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5879,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5880_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5880,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5881_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5881,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5883_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5883,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5885_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5885,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5887_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5887,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5888_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5888,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5890_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5890,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5891_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5891,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5893_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5893,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5895_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5895,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5897_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5897,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5899_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5899,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5900_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5900,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5901_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5901,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5903_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5903,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5905_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5905,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5907_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5907,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5909_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5909,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5911_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5911,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5913_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5913,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5915_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5915,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5917_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5917,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5919_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5919,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5921_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5921,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5923_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5923,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5925_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5925,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5927_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5927,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5928_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5928,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5929_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5929,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5931_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5931,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5932_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5932,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5933_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5933,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5934_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5934,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5936_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5936,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5938_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5938,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5940_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5940,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5942_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5942,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5944_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5944,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5946_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5946,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5948_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5948,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5950_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5950,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5952_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5952,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5953_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5953,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5955_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5955,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5956_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5956,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5957_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5957,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5959_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5959,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5961_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5961,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5963_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5963,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5965_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5965,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5966_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5966,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5967_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5967,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5969_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5969,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5971_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5971,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5972_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5972,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5974_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5974,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5976_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5976,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5978_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5978,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5980_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5980,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5981_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5981,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5983_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5983,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5985_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5985,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5987_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5987,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5989_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5989,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5991_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5991,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5993_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5993,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5995_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5995,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5997_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5997,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_5998_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",5998,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6000_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6000,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6002_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6002,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6003_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6003,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6004_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6004,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6005_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6005,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6007_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6007,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6008_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6008,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6009_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6009,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6010_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6010,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6011_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6011,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6012_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6012,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6014_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6014,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6015_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6015,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6016_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6016,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6018_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6018,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6019_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6019,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6020_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6020,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6021_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6021,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6023_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6023,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6025_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6025,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6026_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6026,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6650_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6650,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6652_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6652,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6654_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6654,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6655_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6655,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6657_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6657,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6659_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6659,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6661_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6661,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6663_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6663,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6665_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6665,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6667_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6667,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6669_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6669,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6671_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6671,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6673_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6673,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6675_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6675,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6677_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6677,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6679_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6679,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6681_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6681,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6683_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6683,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6685_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6685,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6687_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6687,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6689_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6689,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6690_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6690,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6692_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6692,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6693_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6693,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6695_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6695,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6697_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6697,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6699_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6699,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6701_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6701,0x1f12a1f1)
HX_LOCAL_STACK_FRAME(_hx_pos_02b9537fa9419772_6703_boot,"lime._internal.backend.native.NativeCFFI","boot",0x977714b1,"lime._internal.backend.native.NativeCFFI.boot","lime/_internal/backend/native/NativeCFFI.hx",6703,0x1f12a1f1)
namespace lime{
namespace _internal{
namespace backend{
namespace native{
void NativeCFFI_obj::__construct() { }
Dynamic NativeCFFI_obj::__CreateEmpty() { return new NativeCFFI_obj; }
void *NativeCFFI_obj::_hx_vtable = 0;
Dynamic NativeCFFI_obj::__Create(::hx::DynamicArray inArgs)
{
::hx::ObjectPtr< NativeCFFI_obj > _hx_result = new NativeCFFI_obj();
_hx_result->__construct();
return _hx_result;
}
bool NativeCFFI_obj::_hx_isInstanceOf(int inClassId) {
return inClassId==(int)0x00000001 || inClassId==(int)0x7e459dfd;
}
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_application_create;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_application_event_manager_register;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_application_exec;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_application_init;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_application_quit;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_application_set_frame_rate;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_application_update;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_audio_load;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_audio_load_bytes;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_audio_load_file;
::cpp::Function< ::hx::Object * (Float,int, ::hx::Object *) > NativeCFFI_obj::lime_bytes_from_data_pointer;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_bytes_get_data_pointer;
::cpp::Function< Float ( ::hx::Object *,int) > NativeCFFI_obj::lime_bytes_get_data_pointer_offset;
::cpp::Function< ::hx::Object * (::String, ::hx::Object *) > NativeCFFI_obj::lime_bytes_read_file;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_cffi_get_native_pointer;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_clipboard_event_manager_register;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_clipboard_get_text;
::cpp::Function< void (::String) > NativeCFFI_obj::lime_clipboard_set_text;
::cpp::Function< Float (Float,int) > NativeCFFI_obj::lime_data_pointer_offset;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_deflate_compress;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_deflate_decompress;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_drop_event_manager_register;
::cpp::Function< ::hx::Object * (::String,::String,::String) > NativeCFFI_obj::lime_file_dialog_open_directory;
::cpp::Function< ::hx::Object * (::String,::String,::String) > NativeCFFI_obj::lime_file_dialog_open_file;
::cpp::Function< ::hx::Object * (::String,::String,::String) > NativeCFFI_obj::lime_file_dialog_open_files;
::cpp::Function< ::hx::Object * (::String,::String,::String) > NativeCFFI_obj::lime_file_dialog_save_file;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_file_watcher_create;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,bool) > NativeCFFI_obj::lime_file_watcher_add_directory;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_file_watcher_remove_directory;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_file_watcher_update;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_ascender;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_descender;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_family_name;
::cpp::Function< int ( ::hx::Object *,::String) > NativeCFFI_obj::lime_font_get_glyph_index;
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > NativeCFFI_obj::lime_font_get_glyph_indices;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_font_get_glyph_metrics;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_height;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_num_glyphs;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_underline_position;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_underline_thickness;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_font_get_units_per_em;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_font_load;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_font_load_bytes;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_font_load_file;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_font_outline_decompose;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_font_render_glyph;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_font_render_glyphs;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_font_set_size;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_gamepad_add_mappings;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gamepad_get_device_guid;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gamepad_get_device_name;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_gamepad_event_manager_register;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_gzip_compress;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_gzip_decompress;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_haptic_vibrate;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int, ::hx::Object *) > NativeCFFI_obj::lime_image_encode;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_image_load;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_image_load_bytes;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_image_load_file;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_image_data_util_color_transform;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int) > NativeCFFI_obj::lime_image_data_util_copy_channel;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,bool) > NativeCFFI_obj::lime_image_data_util_copy_pixels;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > NativeCFFI_obj::lime_image_data_util_fill_rect;
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > NativeCFFI_obj::lime_image_data_util_flood_fill;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_image_data_util_get_pixels;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int) > NativeCFFI_obj::lime_image_data_util_merge;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_image_data_util_multiply_alpha;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > NativeCFFI_obj::lime_image_data_util_resize;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_image_data_util_set_format;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int) > NativeCFFI_obj::lime_image_data_util_set_pixels;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int,int,int,int,bool) > NativeCFFI_obj::lime_image_data_util_threshold;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_image_data_util_unmultiply_alpha;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_joystick_get_device_guid;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_joystick_get_device_name;
::cpp::Function< int (int) > NativeCFFI_obj::lime_joystick_get_num_axes;
::cpp::Function< int (int) > NativeCFFI_obj::lime_joystick_get_num_buttons;
::cpp::Function< int (int) > NativeCFFI_obj::lime_joystick_get_num_hats;
::cpp::Function< int (int) > NativeCFFI_obj::lime_joystick_get_num_trackballs;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_joystick_event_manager_register;
::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > NativeCFFI_obj::lime_jpeg_decode_bytes;
::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > NativeCFFI_obj::lime_jpeg_decode_file;
::cpp::Function< float (float) > NativeCFFI_obj::lime_key_code_from_scan_code;
::cpp::Function< float (float) > NativeCFFI_obj::lime_key_code_to_scan_code;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_key_event_manager_register;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_lzma_compress;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_lzma_decompress;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_mouse_event_manager_register;
::cpp::Function< void (::String) > NativeCFFI_obj::lime_neko_execute;
::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > NativeCFFI_obj::lime_png_decode_bytes;
::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > NativeCFFI_obj::lime_png_decode_file;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_render_event_manager_register;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_sensor_event_manager_register;
::cpp::Function< bool () > NativeCFFI_obj::lime_system_get_allow_screen_timeout;
::cpp::Function< bool (bool) > NativeCFFI_obj::lime_system_set_allow_screen_timeout;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_system_get_device_model;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_system_get_device_vendor;
::cpp::Function< ::hx::Object * (int,::String,::String) > NativeCFFI_obj::lime_system_get_directory;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_system_get_display;
::cpp::Function< bool () > NativeCFFI_obj::lime_system_get_ios_tablet;
::cpp::Function< int () > NativeCFFI_obj::lime_system_get_num_displays;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_system_get_platform_label;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_system_get_platform_name;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_system_get_platform_version;
::cpp::Function< Float () > NativeCFFI_obj::lime_system_get_timer;
::cpp::Function< void (::String) > NativeCFFI_obj::lime_system_open_file;
::cpp::Function< void (::String,::String) > NativeCFFI_obj::lime_system_open_url;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_text_event_manager_register;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_touch_event_manager_register;
::cpp::Function< void ( ::hx::Object *,::String,::String) > NativeCFFI_obj::lime_window_alert;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_window_close;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_window_context_flip;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_window_context_lock;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_window_context_make_current;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_window_context_unlock;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int,::String) > NativeCFFI_obj::lime_window_create;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_window_focus;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_context;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_context_type;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_display;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_display_mode;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_height;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_id;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_mouse_lock;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_scale;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_text_input_enabled;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_width;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_x;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_window_get_y;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_window_move;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_window_read_pixels;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_window_resize;
::cpp::Function< bool ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_borderless;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_window_set_cursor;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_window_set_display_mode;
::cpp::Function< bool ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_fullscreen;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_window_set_icon;
::cpp::Function< bool ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_maximized;
::cpp::Function< bool ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_minimized;
::cpp::Function< void ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_mouse_lock;
::cpp::Function< bool ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_resizable;
::cpp::Function< void ( ::hx::Object *,bool) > NativeCFFI_obj::lime_window_set_text_input_enabled;
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > NativeCFFI_obj::lime_window_set_title;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_window_warp_mouse;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_window_event_manager_register;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_zlib_compress;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_zlib_decompress;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_buffer_data;
::cpp::Function< void ( ::hx::Object *,int,float,float,float) > NativeCFFI_obj::lime_al_buffer3f;
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > NativeCFFI_obj::lime_al_buffer3i;
::cpp::Function< void ( ::hx::Object *,int,float) > NativeCFFI_obj::lime_al_bufferf;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_bufferfv;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_bufferi;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_bufferiv;
::cpp::Function< void () > NativeCFFI_obj::lime_al_cleanup;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_delete_buffer;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_delete_buffers;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_delete_source;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_delete_sources;
::cpp::Function< void (int) > NativeCFFI_obj::lime_al_disable;
::cpp::Function< void (int) > NativeCFFI_obj::lime_al_distance_model;
::cpp::Function< void (float) > NativeCFFI_obj::lime_al_doppler_factor;
::cpp::Function< void (float) > NativeCFFI_obj::lime_al_doppler_velocity;
::cpp::Function< void (int) > NativeCFFI_obj::lime_al_enable;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_al_gen_source;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_al_gen_sources;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_al_get_boolean;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_al_get_booleanv;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_al_gen_buffer;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_al_gen_buffers;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_buffer3f;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_buffer3i;
::cpp::Function< float ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_bufferf;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_get_bufferfv;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_bufferi;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_get_bufferiv;
::cpp::Function< Float (int) > NativeCFFI_obj::lime_al_get_double;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_al_get_doublev;
::cpp::Function< int (::String) > NativeCFFI_obj::lime_al_get_enum_value;
::cpp::Function< int () > NativeCFFI_obj::lime_al_get_error;
::cpp::Function< float (int) > NativeCFFI_obj::lime_al_get_float;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_al_get_floatv;
::cpp::Function< int (int) > NativeCFFI_obj::lime_al_get_integer;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_al_get_integerv;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_al_get_listener3f;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_al_get_listener3i;
::cpp::Function< float (int) > NativeCFFI_obj::lime_al_get_listenerf;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_al_get_listenerfv;
::cpp::Function< int (int) > NativeCFFI_obj::lime_al_get_listeneri;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_al_get_listeneriv;
::cpp::Function< Float (::String) > NativeCFFI_obj::lime_al_get_proc_address;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_source3f;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_source3i;
::cpp::Function< float ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_sourcef;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_get_sourcefv;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_sourcei;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_get_sourceiv;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_al_get_string;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_al_is_buffer;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_al_is_enabled;
::cpp::Function< bool (::String) > NativeCFFI_obj::lime_al_is_extension_present;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_al_is_source;
::cpp::Function< void (int,float,float,float) > NativeCFFI_obj::lime_al_listener3f;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_al_listener3i;
::cpp::Function< void (int,float) > NativeCFFI_obj::lime_al_listenerf;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_listenerfv;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_al_listeneri;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_listeneriv;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_source_pause;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_source_pausev;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_source_play;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_source_playv;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_source_queue_buffers;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_source_rewind;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_source_rewindv;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_source_stop;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_al_source_stopv;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_source_unqueue_buffers;
::cpp::Function< void ( ::hx::Object *,int,float,float,float) > NativeCFFI_obj::lime_al_source3f;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_source3i;
::cpp::Function< void ( ::hx::Object *,int,float) > NativeCFFI_obj::lime_al_sourcef;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_sourcefv;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_sourcei;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_sourceiv;
::cpp::Function< void (float) > NativeCFFI_obj::lime_al_speed_of_sound;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_alc_close_device;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_alc_create_context;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_alc_destroy_context;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_alc_get_contexts_device;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_alc_get_current_context;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_alc_get_error;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_alc_get_integerv;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_alc_get_string;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_alc_make_context_current;
::cpp::Function< ::hx::Object * (::String) > NativeCFFI_obj::lime_alc_open_device;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_alc_pause_device;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_alc_process_context;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_alc_resume_device;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_alc_suspend_context;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_al_gen_filter;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_filteri;
::cpp::Function< void ( ::hx::Object *,int,float) > NativeCFFI_obj::lime_al_filterf;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_al_remove_direct_filter;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_al_is_filter;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_get_filteri;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_al_gen_effect;
::cpp::Function< void ( ::hx::Object *,int,float) > NativeCFFI_obj::lime_al_effectf;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_effectfv;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_al_effecti;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_effectiv;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_al_is_effect;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_al_gen_aux;
::cpp::Function< void ( ::hx::Object *,int,float) > NativeCFFI_obj::lime_al_auxf;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_auxfv;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_auxi;
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_al_auxiv;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_al_is_aux;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_al_remove_send;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_arc;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_arc_negative;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_clip;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_clip_preserve;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_clip_extents;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_close_path;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_copy_page;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_create;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_curve_to;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_fill;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_fill_extents;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_fill_preserve;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_antialias;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_current_point;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_dash;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_dash_count;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_fill_rule;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_font_face;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_font_options;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_group_target;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_line_cap;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_line_join;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_line_width;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_matrix;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_miter_limit;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_operator;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_source;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_target;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_get_tolerance;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_has_current_point;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_identity_matrix;
::cpp::Function< bool ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_in_clip;
::cpp::Function< bool ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_in_fill;
::cpp::Function< bool ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_in_stroke;
::cpp::Function< void ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_line_to;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_mask;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_mask_surface;
::cpp::Function< void ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_move_to;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_new_path;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_paint;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_cairo_paint_with_alpha;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pop_group;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pop_group_to_source;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_push_group;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_push_group_with_content;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_rectangle;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_rel_curve_to;
::cpp::Function< void ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_rel_line_to;
::cpp::Function< void ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_rel_move_to;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_reset_clip;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_restore;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_cairo_rotate;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_save;
::cpp::Function< void ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_scale;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_set_antialias;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_set_dash;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_set_fill_rule;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_set_font_face;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_set_font_options;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_cairo_set_font_size;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_set_line_cap;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_set_line_join;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_cairo_set_line_width;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_set_matrix;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_cairo_set_miter_limit;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_set_operator;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_set_source;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float) > NativeCFFI_obj::lime_cairo_set_source_rgb;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_set_source_rgba;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_set_source_surface;
::cpp::Function< void ( ::hx::Object *,Float) > NativeCFFI_obj::lime_cairo_set_tolerance;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_show_glyphs;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_show_page;
::cpp::Function< void ( ::hx::Object *,::String) > NativeCFFI_obj::lime_cairo_show_text;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_status;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_stroke;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_stroke_extents;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_stroke_preserve;
::cpp::Function< void ( ::hx::Object *,::String) > NativeCFFI_obj::lime_cairo_text_path;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_transform;
::cpp::Function< void ( ::hx::Object *,Float,Float) > NativeCFFI_obj::lime_cairo_translate;
::cpp::Function< int () > NativeCFFI_obj::lime_cairo_version;
::cpp::Function< ::String () > NativeCFFI_obj::lime_cairo_version_string;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_font_face_status;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_cairo_font_options_create;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_font_options_get_antialias;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_font_options_get_hint_metrics;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_font_options_get_hint_style;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_font_options_get_subpixel_order;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_font_options_set_antialias;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_font_options_set_hint_metrics;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_font_options_set_hint_style;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_font_options_set_subpixel_order;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_ft_font_face_create;
::cpp::Function< ::hx::Object * (int,int,int) > NativeCFFI_obj::lime_cairo_image_surface_create;
::cpp::Function< ::hx::Object * (Float,int,int,int,int) > NativeCFFI_obj::lime_cairo_image_surface_create_for_data;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_image_surface_get_data;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_image_surface_get_format;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_image_surface_get_height;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_image_surface_get_stride;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_image_surface_get_width;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgb;
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgba;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pattern_create_for_surface;
::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_pattern_create_linear;
::cpp::Function< ::hx::Object * (Float,Float,Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_pattern_create_radial;
::cpp::Function< ::hx::Object * (Float,Float,Float) > NativeCFFI_obj::lime_cairo_pattern_create_rgb;
::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > NativeCFFI_obj::lime_cairo_pattern_create_rgba;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pattern_get_color_stop_count;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pattern_get_extend;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pattern_get_filter;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_pattern_get_matrix;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_pattern_set_extend;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_cairo_pattern_set_filter;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_cairo_pattern_set_matrix;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_cairo_surface_flush;
::cpp::Function< Float (::String,Float) > NativeCFFI_obj::lime_curl_getdate;
::cpp::Function< void () > NativeCFFI_obj::lime_curl_global_cleanup;
::cpp::Function< int (int) > NativeCFFI_obj::lime_curl_global_init;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_curl_version;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_curl_version_info;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_curl_easy_cleanup;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_curl_easy_duphandle;
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int) > NativeCFFI_obj::lime_curl_easy_escape;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_curl_easy_flush;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_curl_easy_getinfo;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_curl_easy_init;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_curl_easy_pause;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_curl_easy_perform;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > NativeCFFI_obj::lime_curl_easy_recv;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_curl_easy_reset;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > NativeCFFI_obj::lime_curl_easy_send;
::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_curl_easy_setopt;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_curl_easy_strerror;
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int,int) > NativeCFFI_obj::lime_curl_easy_unescape;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_curl_multi_init;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_curl_multi_add_handle;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_curl_multi_get_running_handles;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_curl_multi_info_read;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_curl_multi_perform;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_curl_multi_remove_handle;
::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *) > NativeCFFI_obj::lime_curl_multi_setopt;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_curl_multi_wait;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_active_texture;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_attach_shader;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_begin_query;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_begin_transform_feedback;
::cpp::Function< void (int,int,::String) > NativeCFFI_obj::lime_gl_bind_attrib_location;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_bind_buffer;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_bind_buffer_base;
::cpp::Function< void (int,int,int,Float,int) > NativeCFFI_obj::lime_gl_bind_buffer_range;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_bind_framebuffer;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_bind_renderbuffer;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_bind_sampler;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_bind_texture;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_bind_transform_feedback;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_bind_vertex_array;
::cpp::Function< void (float,float,float,float) > NativeCFFI_obj::lime_gl_blend_color;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_blend_equation;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_blend_equation_separate;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_blend_func;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_blend_func_separate;
::cpp::Function< void (int,int,int,int,int,int,int,int,int,int) > NativeCFFI_obj::lime_gl_blit_framebuffer;
::cpp::Function< void (int,int,Float,int) > NativeCFFI_obj::lime_gl_buffer_data;
::cpp::Function< void (int,int,int,Float) > NativeCFFI_obj::lime_gl_buffer_sub_data;
::cpp::Function< int (int) > NativeCFFI_obj::lime_gl_check_framebuffer_status;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_clear;
::cpp::Function< void (int,int,float,int) > NativeCFFI_obj::lime_gl_clear_bufferfi;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_clear_bufferfv;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_clear_bufferiv;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_clear_bufferuiv;
::cpp::Function< int ( ::hx::Object *,int,int,int) > NativeCFFI_obj::lime_gl_client_wait_sync;
::cpp::Function< void (float,float,float,float) > NativeCFFI_obj::lime_gl_clear_color;
::cpp::Function< void (float) > NativeCFFI_obj::lime_gl_clear_depthf;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_clear_stencil;
::cpp::Function< void (bool,bool,bool,bool) > NativeCFFI_obj::lime_gl_color_mask;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_compile_shader;
::cpp::Function< void (int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_compressed_tex_image_2d;
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_compressed_tex_image_3d;
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_compressed_tex_sub_image_2d;
::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_compressed_tex_sub_image_3d;
::cpp::Function< void (int,int,Float,Float,int) > NativeCFFI_obj::lime_gl_copy_buffer_sub_data;
::cpp::Function< void (int,int,int,int,int,int,int,int) > NativeCFFI_obj::lime_gl_copy_tex_image_2d;
::cpp::Function< void (int,int,int,int,int,int,int,int) > NativeCFFI_obj::lime_gl_copy_tex_sub_image_2d;
::cpp::Function< void (int,int,int,int,int,int,int,int,int) > NativeCFFI_obj::lime_gl_copy_tex_sub_image_3d;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_buffer;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_framebuffer;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_program;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_query;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_renderbuffer;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_sampler;
::cpp::Function< int (int) > NativeCFFI_obj::lime_gl_create_shader;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_texture;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_transform_feedback;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_create_vertex_array;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_cull_face;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_buffer;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_framebuffer;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_program;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_query;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_renderbuffer;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_sampler;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_shader;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_gl_delete_sync;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_texture;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_transform_feedback;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_delete_vertex_array;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_depth_func;
::cpp::Function< void (bool) > NativeCFFI_obj::lime_gl_depth_mask;
::cpp::Function< void (float,float) > NativeCFFI_obj::lime_gl_depth_rangef;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_detach_shader;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_disable;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_disable_vertex_attrib_array;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_draw_arrays;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_draw_arrays_instanced;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_gl_draw_buffers;
::cpp::Function< void (int,int,int,Float) > NativeCFFI_obj::lime_gl_draw_elements;
::cpp::Function< void (int,int,int,Float,int) > NativeCFFI_obj::lime_gl_draw_elements_instanced;
::cpp::Function< void (int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_draw_range_elements;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_enable;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_enable_vertex_attrib_array;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_end_query;
::cpp::Function< void () > NativeCFFI_obj::lime_gl_end_transform_feedback;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_fence_sync;
::cpp::Function< void () > NativeCFFI_obj::lime_gl_finish;
::cpp::Function< void () > NativeCFFI_obj::lime_gl_flush;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_framebuffer_renderbuffer;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_framebuffer_texture2D;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_framebuffer_texture_layer;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_front_face;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_generate_mipmap;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_get_active_attrib;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_get_active_uniform;
::cpp::Function< int (int,int,int) > NativeCFFI_obj::lime_gl_get_active_uniform_blocki;
::cpp::Function< void (int,int,int,Float) > NativeCFFI_obj::lime_gl_get_active_uniform_blockiv;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_get_active_uniform_block_name;
::cpp::Function< void (int, ::hx::Object *,int,Float) > NativeCFFI_obj::lime_gl_get_active_uniformsiv;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gl_get_attached_shaders;
::cpp::Function< int (int,::String) > NativeCFFI_obj::lime_gl_get_attrib_location;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_get_boolean;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_get_booleanv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_buffer_parameteri;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_buffer_parameteri64v;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_buffer_parameteriv;
::cpp::Function< Float (int,int) > NativeCFFI_obj::lime_gl_get_buffer_pointerv;
::cpp::Function< void (int,Float,int,Float) > NativeCFFI_obj::lime_gl_get_buffer_sub_data;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_gl_get_context_attributes;
::cpp::Function< int () > NativeCFFI_obj::lime_gl_get_error;
::cpp::Function< ::hx::Object * (::String) > NativeCFFI_obj::lime_gl_get_extension;
::cpp::Function< float (int) > NativeCFFI_obj::lime_gl_get_float;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_get_floatv;
::cpp::Function< int (int,::String) > NativeCFFI_obj::lime_gl_get_frag_data_location;
::cpp::Function< int (int,int,int) > NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteri;
::cpp::Function< void (int,int,int,Float) > NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteriv;
::cpp::Function< int (int) > NativeCFFI_obj::lime_gl_get_integer;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_get_integer64v;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_integer64i_v;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_get_integerv;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_integeri_v;
::cpp::Function< void (int,int,int,int,Float) > NativeCFFI_obj::lime_gl_get_internalformativ;
::cpp::Function< void (int,int, ::hx::Object *) > NativeCFFI_obj::lime_gl_get_program_binary;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gl_get_program_info_log;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_programi;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_programiv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_queryi;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_queryiv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_query_objectui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_query_objectuiv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_renderbuffer_parameteri;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_renderbuffer_parameteriv;
::cpp::Function< float (int,int) > NativeCFFI_obj::lime_gl_get_sampler_parameterf;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_sampler_parameterfv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_sampler_parameteri;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_sampler_parameteriv;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gl_get_shader_info_log;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_shaderi;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_shaderiv;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_get_shader_precision_format;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gl_get_shader_source;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_gl_get_string;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_get_stringi;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_gl_get_sync_parameteri;
::cpp::Function< void ( ::hx::Object *,int,Float) > NativeCFFI_obj::lime_gl_get_sync_parameteriv;
::cpp::Function< float (int,int) > NativeCFFI_obj::lime_gl_get_tex_parameterf;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_tex_parameterfv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_tex_parameteri;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_tex_parameteriv;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_get_transform_feedback_varying;
::cpp::Function< float (int,int) > NativeCFFI_obj::lime_gl_get_uniformf;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_uniformfv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_uniformi;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_uniformiv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_uniformui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_uniformuiv;
::cpp::Function< int (int,::String) > NativeCFFI_obj::lime_gl_get_uniform_block_index;
::cpp::Function< int (int,::String) > NativeCFFI_obj::lime_gl_get_uniform_location;
::cpp::Function< float (int,int) > NativeCFFI_obj::lime_gl_get_vertex_attribf;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_vertex_attribfv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_vertex_attribi;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_vertex_attribiv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_vertex_attribii;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_vertex_attribiiv;
::cpp::Function< int (int,int) > NativeCFFI_obj::lime_gl_get_vertex_attribiui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_get_vertex_attribiuiv;
::cpp::Function< Float (int,int) > NativeCFFI_obj::lime_gl_get_vertex_attrib_pointerv;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_hint;
::cpp::Function< void (int, ::hx::Object *) > NativeCFFI_obj::lime_gl_invalidate_framebuffer;
::cpp::Function< void (int, ::hx::Object *,int,int,int,int) > NativeCFFI_obj::lime_gl_invalidate_sub_framebuffer;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_buffer;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_enabled;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_framebuffer;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_program;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_query;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_renderbuffer;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_sampler;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_shader;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_gl_is_sync;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_texture;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_transform_feedback;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_is_vertex_array;
::cpp::Function< void (float) > NativeCFFI_obj::lime_gl_line_width;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_link_program;
::cpp::Function< Float (int,Float,int,int) > NativeCFFI_obj::lime_gl_map_buffer_range;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_gl_object_deregister;
::cpp::Function< ::hx::Object * (int,int) > NativeCFFI_obj::lime_gl_object_from_id;
::cpp::Function< ::hx::Object * (int,int, ::hx::Object *) > NativeCFFI_obj::lime_gl_object_register;
::cpp::Function< void () > NativeCFFI_obj::lime_gl_pause_transform_feedback;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_pixel_storei;
::cpp::Function< void (float,float) > NativeCFFI_obj::lime_gl_polygon_offset;
::cpp::Function< void (int,int,Float,int) > NativeCFFI_obj::lime_gl_program_binary;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_program_parameteri;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_read_buffer;
::cpp::Function< void (int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_read_pixels;
::cpp::Function< void () > NativeCFFI_obj::lime_gl_release_shader_compiler;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_renderbuffer_storage;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_renderbuffer_storage_multisample;
::cpp::Function< void () > NativeCFFI_obj::lime_gl_resume_transform_feedback;
::cpp::Function< void (float,bool) > NativeCFFI_obj::lime_gl_sample_coverage;
::cpp::Function< void (int,int,float) > NativeCFFI_obj::lime_gl_sampler_parameterf;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_sampler_parameteri;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_scissor;
::cpp::Function< void ( ::hx::Object *,int,Float,int) > NativeCFFI_obj::lime_gl_shader_binary;
::cpp::Function< void (int,::String) > NativeCFFI_obj::lime_gl_shader_source;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_stencil_func;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_stencil_func_separate;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_stencil_mask;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_stencil_mask_separate;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_stencil_op;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_stencil_op_separate;
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_tex_image_2d;
::cpp::Function< void (int,int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_tex_image_3d;
::cpp::Function< void (int,int,float) > NativeCFFI_obj::lime_gl_tex_parameterf;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_tex_parameteri;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_tex_storage_2d;
::cpp::Function< void (int,int,int,int,int,int) > NativeCFFI_obj::lime_gl_tex_storage_3d;
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_tex_sub_image_2d;
::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > NativeCFFI_obj::lime_gl_tex_sub_image_3d;
::cpp::Function< void (int, ::hx::Object *,int) > NativeCFFI_obj::lime_gl_transform_feedback_varyings;
::cpp::Function< void (int,float) > NativeCFFI_obj::lime_gl_uniform1f;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform1fv;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_uniform1i;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform1iv;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_uniform1ui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform1uiv;
::cpp::Function< void (int,float,float) > NativeCFFI_obj::lime_gl_uniform2f;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform2fv;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_uniform2i;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform2iv;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_uniform2ui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform2uiv;
::cpp::Function< void (int,float,float,float) > NativeCFFI_obj::lime_gl_uniform3f;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform3fv;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_uniform3i;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform3iv;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_uniform3ui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform3uiv;
::cpp::Function< void (int,float,float,float,float) > NativeCFFI_obj::lime_gl_uniform4f;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform4fv;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_uniform4i;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform4iv;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_uniform4ui;
::cpp::Function< void (int,int,Float) > NativeCFFI_obj::lime_gl_uniform4uiv;
::cpp::Function< void (int,int,int) > NativeCFFI_obj::lime_gl_uniform_block_binding;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix2fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix2x3fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix2x4fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix3fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix3x2fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix3x4fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix4fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix4x2fv;
::cpp::Function< void (int,int,bool,Float) > NativeCFFI_obj::lime_gl_uniform_matrix4x3fv;
::cpp::Function< bool (int) > NativeCFFI_obj::lime_gl_unmap_buffer;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_use_program;
::cpp::Function< void (int) > NativeCFFI_obj::lime_gl_validate_program;
::cpp::Function< void (int,float) > NativeCFFI_obj::lime_gl_vertex_attrib1f;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_vertex_attrib1fv;
::cpp::Function< void (int,float,float) > NativeCFFI_obj::lime_gl_vertex_attrib2f;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_vertex_attrib2fv;
::cpp::Function< void (int,float,float,float) > NativeCFFI_obj::lime_gl_vertex_attrib3f;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_vertex_attrib3fv;
::cpp::Function< void (int,float,float,float,float) > NativeCFFI_obj::lime_gl_vertex_attrib4f;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_vertex_attrib4fv;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_vertex_attribi4i;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_vertex_attribi4iv;
::cpp::Function< void (int,int,int,int,int) > NativeCFFI_obj::lime_gl_vertex_attribi4ui;
::cpp::Function< void (int,Float) > NativeCFFI_obj::lime_gl_vertex_attribi4uiv;
::cpp::Function< void (int,int) > NativeCFFI_obj::lime_gl_vertex_attrib_divisor;
::cpp::Function< void (int,int,int,int,Float) > NativeCFFI_obj::lime_gl_vertex_attrib_ipointer;
::cpp::Function< void (int,int,int,bool,int,Float) > NativeCFFI_obj::lime_gl_vertex_attrib_pointer;
::cpp::Function< void (int,int,int,int) > NativeCFFI_obj::lime_gl_viewport;
::cpp::Function< void ( ::hx::Object *,int,int,int) > NativeCFFI_obj::lime_gl_wait_sync;
::cpp::Function< ::hx::Object * (Float,int,int) > NativeCFFI_obj::lime_hb_blob_create;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_blob_create_sub_blob;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_hb_blob_get_data;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_hb_blob_get_data_writable;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_blob_get_empty;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_blob_get_length;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_hb_blob_is_immutable;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_blob_make_immutable;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_buffer_add;
::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > NativeCFFI_obj::lime_hb_buffer_add_codepoints;
::cpp::Function< void ( ::hx::Object *,::String,int,int) > NativeCFFI_obj::lime_hb_buffer_add_utf8;
::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > NativeCFFI_obj::lime_hb_buffer_add_utf16;
::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > NativeCFFI_obj::lime_hb_buffer_add_utf32;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_allocation_successful;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_clear_contents;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_buffer_create;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_cluster_level;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_content_type;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_direction;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_buffer_get_empty;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_flags;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_glyph_infos;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_glyph_positions;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_language;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_length;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_replacement_codepoint;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_script;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_get_segment_properties;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_guess_segment_properties;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_normalize_glyphs;
::cpp::Function< bool ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_preallocate;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_reset;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_reverse;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_reverse_clusters;
::cpp::Function< int (::String) > NativeCFFI_obj::lime_hb_buffer_serialize_format_from_string;
::cpp::Function< ::hx::Object * (int) > NativeCFFI_obj::lime_hb_buffer_serialize_format_to_string;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_buffer_serialize_list_formats;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_cluster_level;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_content_type;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_direction;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_flags;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_set_language;
::cpp::Function< bool ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_length;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_replacement_codepoint;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_buffer_set_script;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_buffer_set_segment_properties;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_face_create;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_face_get_empty;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_face_get_glyph_count;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_face_get_index;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_face_get_upem;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_hb_face_is_immutable;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_face_make_immutable;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_face_reference_blob;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_face_reference_table;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_face_set_glyph_count;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_face_set_index;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_face_set_upem;
::cpp::Function< ::hx::Object * (::String) > NativeCFFI_obj::lime_hb_feature_from_string;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_feature_to_string;
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > NativeCFFI_obj::lime_hb_font_add_glyph_origin_for_direction;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_create;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_create_sub_font;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_font_get_empty;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_get_face;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_font_get_glyph_advance_for_direction;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int) > NativeCFFI_obj::lime_hb_font_get_glyph_kerning_for_direction;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_font_get_glyph_origin_for_direction;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_get_parent;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_get_ppem;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_get_scale;
::cpp::Function< int ( ::hx::Object *,::String) > NativeCFFI_obj::lime_hb_font_glyph_from_string;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_font_glyph_to_string;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_is_immutable;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_font_make_immutable;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_font_set_ppem;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_font_set_scale;
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > NativeCFFI_obj::lime_hb_font_subtract_glyph_origin_for_direction;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_ft_font_create;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_ft_font_create_referenced;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_ft_font_get_load_flags;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_ft_font_set_load_flags;
::cpp::Function< ::hx::Object * (::String) > NativeCFFI_obj::lime_hb_language_from_string;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_language_get_default;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_language_to_string;
::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_segment_properties_equal;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_segment_properties_hash;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_set_add;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_set_add_range;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_allocation_successful;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_clear;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_set_create;
::cpp::Function< void ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_set_del;
::cpp::Function< void ( ::hx::Object *,int,int) > NativeCFFI_obj::lime_hb_set_del_range;
::cpp::Function< ::hx::Object * () > NativeCFFI_obj::lime_hb_set_get_empty;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_get_max;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_get_min;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_get_population;
::cpp::Function< bool ( ::hx::Object *,int) > NativeCFFI_obj::lime_hb_set_has;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_set_intersect;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_invert;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_is_empty;
::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_set_is_equal;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_next;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_hb_set_next_range;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_set_set;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_set_subtract;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_set_symmetric_difference;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_set_union;
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_hb_shape;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_bitrate;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_bitrate_instant;
::cpp::Function< void ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_clear;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_comment;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_crosslap;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_from_bytes;
::cpp::Function< ::hx::Object * (::String) > NativeCFFI_obj::lime_vorbis_file_from_file;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_info;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_pcm_seek;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_pcm_seek_lap;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_pcm_seek_page;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_pcm_seek_page_lap;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_raw_seek;
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_raw_seek_lap;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_pcm_tell;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_pcm_total;
::cpp::Function< ::hx::Object * ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_raw_tell;
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_raw_total;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int,int,bool,int,bool) > NativeCFFI_obj::lime_vorbis_file_read;
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_read_float;
::cpp::Function< bool ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_seekable;
::cpp::Function< int ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_serial_number;
::cpp::Function< int ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_streams;
::cpp::Function< int ( ::hx::Object *,Float) > NativeCFFI_obj::lime_vorbis_file_time_seek;
::cpp::Function< int ( ::hx::Object *,Float) > NativeCFFI_obj::lime_vorbis_file_time_seek_lap;
::cpp::Function< int ( ::hx::Object *,Float) > NativeCFFI_obj::lime_vorbis_file_time_seek_page;
::cpp::Function< int ( ::hx::Object *,Float) > NativeCFFI_obj::lime_vorbis_file_time_seek_page_lap;
::cpp::Function< Float ( ::hx::Object *) > NativeCFFI_obj::lime_vorbis_file_time_tell;
::cpp::Function< Float ( ::hx::Object *,int) > NativeCFFI_obj::lime_vorbis_file_time_total;
NativeCFFI_obj::NativeCFFI_obj()
{
}
bool NativeCFFI_obj::__GetStatic(const ::String &inName, Dynamic &outValue, ::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 12:
if (HX_FIELD_EQ(inName,"lime_al_auxf") ) { outValue = ( lime_al_auxf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_auxi") ) { outValue = ( lime_al_auxi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_hint") ) { outValue = ( lime_gl_hint ); return true; }
break;
case 13:
if (HX_FIELD_EQ(inName,"lime_al_auxfv") ) { outValue = ( lime_al_auxfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_auxiv") ) { outValue = ( lime_al_auxiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear") ) { outValue = ( lime_gl_clear ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_flush") ) { outValue = ( lime_gl_flush ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_shape") ) { outValue = ( lime_hb_shape ); return true; }
break;
case 14:
if (HX_FIELD_EQ(inName,"lime_font_load") ) { outValue = ( lime_font_load ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_enable") ) { outValue = ( lime_al_enable ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_aux") ) { outValue = ( lime_al_is_aux ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_arc") ) { outValue = ( lime_cairo_arc ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_enable") ) { outValue = ( lime_gl_enable ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_finish") ) { outValue = ( lime_gl_finish ); return true; }
break;
case 15:
if (HX_FIELD_EQ(inName,"lime_audio_load") ) { outValue = ( lime_audio_load ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_load") ) { outValue = ( lime_image_load ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferf") ) { outValue = ( lime_al_bufferf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferi") ) { outValue = ( lime_al_bufferi ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_cleanup") ) { outValue = ( lime_al_cleanup ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_disable") ) { outValue = ( lime_al_disable ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourcef") ) { outValue = ( lime_al_sourcef ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourcei") ) { outValue = ( lime_al_sourcei ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_filteri") ) { outValue = ( lime_al_filteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_filterf") ) { outValue = ( lime_al_filterf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effectf") ) { outValue = ( lime_al_effectf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effecti") ) { outValue = ( lime_al_effecti ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_aux") ) { outValue = ( lime_al_gen_aux ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_clip") ) { outValue = ( lime_cairo_clip ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_fill") ) { outValue = ( lime_cairo_fill ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_mask") ) { outValue = ( lime_cairo_mask ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_save") ) { outValue = ( lime_cairo_save ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_disable") ) { outValue = ( lime_gl_disable ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_sync") ) { outValue = ( lime_gl_is_sync ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_scissor") ) { outValue = ( lime_gl_scissor ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_add") ) { outValue = ( lime_hb_set_add ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_del") ) { outValue = ( lime_hb_set_del ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_has") ) { outValue = ( lime_hb_set_has ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_set") ) { outValue = ( lime_hb_set_set ); return true; }
break;
case 16:
if (HX_FIELD_EQ(inName,"lime_window_move") ) { outValue = ( lime_window_move ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_buffer3f") ) { outValue = ( lime_al_buffer3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_buffer3i") ) { outValue = ( lime_al_buffer3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferfv") ) { outValue = ( lime_al_bufferfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferiv") ) { outValue = ( lime_al_bufferiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source3f") ) { outValue = ( lime_al_source3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source3i") ) { outValue = ( lime_al_source3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourcefv") ) { outValue = ( lime_al_sourcefv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourceiv") ) { outValue = ( lime_al_sourceiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effectfv") ) { outValue = ( lime_al_effectfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effectiv") ) { outValue = ( lime_al_effectiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_paint") ) { outValue = ( lime_cairo_paint ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_scale") ) { outValue = ( lime_cairo_scale ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_query") ) { outValue = ( lime_gl_is_query ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_viewport") ) { outValue = ( lime_gl_viewport ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_next") ) { outValue = ( lime_hb_set_next ); return true; }
break;
case 17:
if (HX_FIELD_EQ(inName,"lime_image_encode") ) { outValue = ( lime_image_encode ); return true; }
if (HX_FIELD_EQ(inName,"lime_neko_execute") ) { outValue = ( lime_neko_execute ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_alert") ) { outValue = ( lime_window_alert ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_close") ) { outValue = ( lime_window_close ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_focus") ) { outValue = ( lime_window_focus ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_x") ) { outValue = ( lime_window_get_x ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_y") ) { outValue = ( lime_window_get_y ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_error") ) { outValue = ( lime_al_get_error ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_float") ) { outValue = ( lime_al_get_float ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_buffer") ) { outValue = ( lime_al_is_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_source") ) { outValue = ( lime_al_is_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listenerf") ) { outValue = ( lime_al_listenerf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listeneri") ) { outValue = ( lime_al_listeneri ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_filter") ) { outValue = ( lime_al_is_filter ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_effect") ) { outValue = ( lime_al_is_effect ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_create") ) { outValue = ( lime_cairo_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rotate") ) { outValue = ( lime_cairo_rotate ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_status") ) { outValue = ( lime_cairo_status ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_stroke") ) { outValue = ( lime_cairo_stroke ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_getdate") ) { outValue = ( lime_curl_getdate ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_version") ) { outValue = ( lime_curl_version ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_cull_face") ) { outValue = ( lime_gl_cull_face ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_end_query") ) { outValue = ( lime_gl_end_query ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_error") ) { outValue = ( lime_gl_get_error ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_float") ) { outValue = ( lime_gl_get_float ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_buffer") ) { outValue = ( lime_gl_is_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_shader") ) { outValue = ( lime_gl_is_shader ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1f") ) { outValue = ( lime_gl_uniform1f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1i") ) { outValue = ( lime_gl_uniform1i ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2f") ) { outValue = ( lime_gl_uniform2f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2i") ) { outValue = ( lime_gl_uniform2i ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3f") ) { outValue = ( lime_gl_uniform3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3i") ) { outValue = ( lime_gl_uniform3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4f") ) { outValue = ( lime_gl_uniform4f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4i") ) { outValue = ( lime_gl_uniform4i ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_wait_sync") ) { outValue = ( lime_gl_wait_sync ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_clear") ) { outValue = ( lime_hb_set_clear ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_union") ) { outValue = ( lime_hb_set_union ); return true; }
break;
case 18:
if (HX_FIELD_EQ(inName,"lime_font_set_size") ) { outValue = ( lime_font_set_size ); return true; }
if (HX_FIELD_EQ(inName,"lime_gzip_compress") ) { outValue = ( lime_gzip_compress ); return true; }
if (HX_FIELD_EQ(inName,"lime_lzma_compress") ) { outValue = ( lime_lzma_compress ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_create") ) { outValue = ( lime_window_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_id") ) { outValue = ( lime_window_get_id ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_resize") ) { outValue = ( lime_window_resize ); return true; }
if (HX_FIELD_EQ(inName,"lime_zlib_compress") ) { outValue = ( lime_zlib_compress ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_source") ) { outValue = ( lime_al_gen_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_buffer") ) { outValue = ( lime_al_gen_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_double") ) { outValue = ( lime_al_get_double ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_floatv") ) { outValue = ( lime_al_get_floatv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_string") ) { outValue = ( lime_al_get_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_enabled") ) { outValue = ( lime_al_is_enabled ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listener3f") ) { outValue = ( lime_al_listener3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listener3i") ) { outValue = ( lime_al_listener3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listenerfv") ) { outValue = ( lime_al_listenerfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listeneriv") ) { outValue = ( lime_al_listeneriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_error") ) { outValue = ( lime_alc_get_error ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_filter") ) { outValue = ( lime_al_gen_filter ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_effect") ) { outValue = ( lime_al_gen_effect ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_in_clip") ) { outValue = ( lime_cairo_in_clip ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_in_fill") ) { outValue = ( lime_cairo_in_fill ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_line_to") ) { outValue = ( lime_cairo_line_to ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_move_to") ) { outValue = ( lime_cairo_move_to ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_restore") ) { outValue = ( lime_cairo_restore ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_version") ) { outValue = ( lime_cairo_version ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_func") ) { outValue = ( lime_gl_blend_func ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_color_mask") ) { outValue = ( lime_gl_color_mask ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_depth_func") ) { outValue = ( lime_gl_depth_func ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_depth_mask") ) { outValue = ( lime_gl_depth_mask ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_fence_sync") ) { outValue = ( lime_gl_fence_sync ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_front_face") ) { outValue = ( lime_gl_front_face ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_floatv") ) { outValue = ( lime_gl_get_floatv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_queryi") ) { outValue = ( lime_gl_get_queryi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_string") ) { outValue = ( lime_gl_get_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_enabled") ) { outValue = ( lime_gl_is_enabled ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_program") ) { outValue = ( lime_gl_is_program ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_sampler") ) { outValue = ( lime_gl_is_sampler ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_texture") ) { outValue = ( lime_gl_is_texture ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_line_width") ) { outValue = ( lime_gl_line_width ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_op") ) { outValue = ( lime_gl_stencil_op ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1fv") ) { outValue = ( lime_gl_uniform1fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1iv") ) { outValue = ( lime_gl_uniform1iv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1ui") ) { outValue = ( lime_gl_uniform1ui ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2fv") ) { outValue = ( lime_gl_uniform2fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2iv") ) { outValue = ( lime_gl_uniform2iv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2ui") ) { outValue = ( lime_gl_uniform2ui ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3fv") ) { outValue = ( lime_gl_uniform3fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3iv") ) { outValue = ( lime_gl_uniform3iv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3ui") ) { outValue = ( lime_gl_uniform3ui ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4fv") ) { outValue = ( lime_gl_uniform4fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4iv") ) { outValue = ( lime_gl_uniform4iv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4ui") ) { outValue = ( lime_gl_uniform4ui ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add") ) { outValue = ( lime_hb_buffer_add ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_create") ) { outValue = ( lime_hb_set_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_invert") ) { outValue = ( lime_hb_set_invert ); return true; }
break;
case 19:
if (HX_FIELD_EQ(inName,"lime_font_load_file") ) { outValue = ( lime_font_load_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_haptic_vibrate") ) { outValue = ( lime_haptic_vibrate ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_buffer_data") ) { outValue = ( lime_al_buffer_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_sources") ) { outValue = ( lime_al_gen_sources ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_boolean") ) { outValue = ( lime_al_get_boolean ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_buffers") ) { outValue = ( lime_al_gen_buffers ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferf") ) { outValue = ( lime_al_get_bufferf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferi") ) { outValue = ( lime_al_get_bufferi ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_doublev") ) { outValue = ( lime_al_get_doublev ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_integer") ) { outValue = ( lime_al_get_integer ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourcef") ) { outValue = ( lime_al_get_sourcef ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourcei") ) { outValue = ( lime_al_get_sourcei ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_play") ) { outValue = ( lime_al_source_play ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_stop") ) { outValue = ( lime_al_source_stop ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_string") ) { outValue = ( lime_alc_get_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_filteri") ) { outValue = ( lime_al_get_filteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_remove_send") ) { outValue = ( lime_al_remove_send ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_curve_to") ) { outValue = ( lime_cairo_curve_to ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_dash") ) { outValue = ( lime_cairo_get_dash ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_new_path") ) { outValue = ( lime_cairo_new_path ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_dash") ) { outValue = ( lime_cairo_set_dash ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_init") ) { outValue = ( lime_curl_easy_init ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_recv") ) { outValue = ( lime_curl_easy_recv ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_send") ) { outValue = ( lime_curl_easy_send ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_begin_query") ) { outValue = ( lime_gl_begin_query ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_buffer") ) { outValue = ( lime_gl_bind_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_color") ) { outValue = ( lime_gl_blend_color ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_buffer_data") ) { outValue = ( lime_gl_buffer_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_color") ) { outValue = ( lime_gl_clear_color ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_sync") ) { outValue = ( lime_gl_delete_sync ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_arrays") ) { outValue = ( lime_gl_draw_arrays ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_boolean") ) { outValue = ( lime_gl_get_boolean ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integer") ) { outValue = ( lime_gl_get_integer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_queryiv") ) { outValue = ( lime_gl_get_queryiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shaderi") ) { outValue = ( lime_gl_get_shaderi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_stringi") ) { outValue = ( lime_gl_get_stringi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_read_buffer") ) { outValue = ( lime_gl_read_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_read_pixels") ) { outValue = ( lime_gl_read_pixels ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1uiv") ) { outValue = ( lime_gl_uniform1uiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2uiv") ) { outValue = ( lime_gl_uniform2uiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3uiv") ) { outValue = ( lime_gl_uniform3uiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4uiv") ) { outValue = ( lime_gl_uniform4uiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_use_program") ) { outValue = ( lime_gl_use_program ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_create") ) { outValue = ( lime_hb_blob_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_create") ) { outValue = ( lime_hb_face_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_create") ) { outValue = ( lime_hb_font_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_max") ) { outValue = ( lime_hb_set_get_max ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_min") ) { outValue = ( lime_hb_set_get_min ); return true; }
break;
case 20:
if (HX_FIELD_EQ(inName,"lime_audio_load_file") ) { outValue = ( lime_audio_load_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_bytes_read_file") ) { outValue = ( lime_bytes_read_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_height") ) { outValue = ( lime_font_get_height ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_load_bytes") ) { outValue = ( lime_font_load_bytes ); return true; }
if (HX_FIELD_EQ(inName,"lime_gzip_decompress") ) { outValue = ( lime_gzip_decompress ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_load_file") ) { outValue = ( lime_image_load_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_lzma_decompress") ) { outValue = ( lime_lzma_decompress ); return true; }
if (HX_FIELD_EQ(inName,"lime_png_decode_file") ) { outValue = ( lime_png_decode_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_open_url") ) { outValue = ( lime_system_open_url ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_icon") ) { outValue = ( lime_window_set_icon ); return true; }
if (HX_FIELD_EQ(inName,"lime_zlib_decompress") ) { outValue = ( lime_zlib_decompress ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_booleanv") ) { outValue = ( lime_al_get_booleanv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_buffer3f") ) { outValue = ( lime_al_get_buffer3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_buffer3i") ) { outValue = ( lime_al_get_buffer3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferfv") ) { outValue = ( lime_al_get_bufferfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferiv") ) { outValue = ( lime_al_get_bufferiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_integerv") ) { outValue = ( lime_al_get_integerv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_source3f") ) { outValue = ( lime_al_get_source3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_source3i") ) { outValue = ( lime_al_get_source3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourcefv") ) { outValue = ( lime_al_get_sourcefv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourceiv") ) { outValue = ( lime_al_get_sourceiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_pause") ) { outValue = ( lime_al_source_pause ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_playv") ) { outValue = ( lime_al_source_playv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_stopv") ) { outValue = ( lime_al_source_stopv ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_open_device") ) { outValue = ( lime_alc_open_device ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_copy_page") ) { outValue = ( lime_cairo_copy_page ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_in_stroke") ) { outValue = ( lime_cairo_in_stroke ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pop_group") ) { outValue = ( lime_cairo_pop_group ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rectangle") ) { outValue = ( lime_cairo_rectangle ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_show_page") ) { outValue = ( lime_cairo_show_page ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_show_text") ) { outValue = ( lime_cairo_show_text ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_text_path") ) { outValue = ( lime_cairo_text_path ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_transform") ) { outValue = ( lime_cairo_transform ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_translate") ) { outValue = ( lime_cairo_translate ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_flush") ) { outValue = ( lime_curl_easy_flush ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_pause") ) { outValue = ( lime_curl_easy_pause ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_reset") ) { outValue = ( lime_curl_easy_reset ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_init") ) { outValue = ( lime_curl_multi_init ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_wait") ) { outValue = ( lime_curl_multi_wait ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_sampler") ) { outValue = ( lime_gl_bind_sampler ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_texture") ) { outValue = ( lime_gl_bind_texture ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_depthf") ) { outValue = ( lime_gl_clear_depthf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_query") ) { outValue = ( lime_gl_create_query ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_query") ) { outValue = ( lime_gl_delete_query ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_depth_rangef") ) { outValue = ( lime_gl_depth_rangef ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_buffers") ) { outValue = ( lime_gl_draw_buffers ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_booleanv") ) { outValue = ( lime_gl_get_booleanv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integerv") ) { outValue = ( lime_gl_get_integerv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_programi") ) { outValue = ( lime_gl_get_programi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shaderiv") ) { outValue = ( lime_gl_get_shaderiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformf") ) { outValue = ( lime_gl_get_uniformf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformi") ) { outValue = ( lime_gl_get_uniformi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_link_program") ) { outValue = ( lime_gl_link_program ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_pixel_storei") ) { outValue = ( lime_gl_pixel_storei ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_func") ) { outValue = ( lime_gl_stencil_func ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_mask") ) { outValue = ( lime_gl_stencil_mask ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_image_2d") ) { outValue = ( lime_gl_tex_image_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_image_3d") ) { outValue = ( lime_gl_tex_image_3d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_unmap_buffer") ) { outValue = ( lime_gl_unmap_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_reset") ) { outValue = ( lime_hb_buffer_reset ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_is_empty") ) { outValue = ( lime_hb_set_is_empty ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_is_equal") ) { outValue = ( lime_hb_set_is_equal ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_subtract") ) { outValue = ( lime_hb_set_subtract ); return true; }
break;
case 21:
if (HX_FIELD_EQ(inName,"lime_application_exec") ) { outValue = ( lime_application_exec ); return true; }
if (HX_FIELD_EQ(inName,"lime_application_init") ) { outValue = ( lime_application_init ); return true; }
if (HX_FIELD_EQ(inName,"lime_application_quit") ) { outValue = ( lime_application_quit ); return true; }
if (HX_FIELD_EQ(inName,"lime_audio_load_bytes") ) { outValue = ( lime_audio_load_bytes ); return true; }
if (HX_FIELD_EQ(inName,"lime_deflate_compress") ) { outValue = ( lime_deflate_compress ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_load_bytes") ) { outValue = ( lime_image_load_bytes ); return true; }
if (HX_FIELD_EQ(inName,"lime_jpeg_decode_file") ) { outValue = ( lime_jpeg_decode_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_png_decode_bytes") ) { outValue = ( lime_png_decode_bytes ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_timer") ) { outValue = ( lime_system_get_timer ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_open_file") ) { outValue = ( lime_system_open_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_scale") ) { outValue = ( lime_window_get_scale ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_width") ) { outValue = ( lime_window_get_width ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_title") ) { outValue = ( lime_window_set_title ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_buffer") ) { outValue = ( lime_al_delete_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_source") ) { outValue = ( lime_al_delete_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listenerf") ) { outValue = ( lime_al_get_listenerf ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listeneri") ) { outValue = ( lime_al_get_listeneri ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_pausev") ) { outValue = ( lime_al_source_pausev ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_rewind") ) { outValue = ( lime_al_source_rewind ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_close_device") ) { outValue = ( lime_alc_close_device ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_integerv") ) { outValue = ( lime_alc_get_integerv ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_pause_device") ) { outValue = ( lime_alc_pause_device ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_close_path") ) { outValue = ( lime_cairo_close_path ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_matrix") ) { outValue = ( lime_cairo_get_matrix ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_source") ) { outValue = ( lime_cairo_get_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_target") ) { outValue = ( lime_cairo_get_target ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_push_group") ) { outValue = ( lime_cairo_push_group ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_reset_clip") ) { outValue = ( lime_cairo_reset_clip ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_matrix") ) { outValue = ( lime_cairo_set_matrix ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source") ) { outValue = ( lime_cairo_set_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_global_init") ) { outValue = ( lime_curl_global_init ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_escape") ) { outValue = ( lime_curl_easy_escape ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_setopt") ) { outValue = ( lime_curl_easy_setopt ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_attach_shader") ) { outValue = ( lime_gl_attach_shader ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_stencil") ) { outValue = ( lime_gl_clear_stencil ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_buffer") ) { outValue = ( lime_gl_create_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_shader") ) { outValue = ( lime_gl_create_shader ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_buffer") ) { outValue = ( lime_gl_delete_buffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_shader") ) { outValue = ( lime_gl_delete_shader ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_detach_shader") ) { outValue = ( lime_gl_detach_shader ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_elements") ) { outValue = ( lime_gl_draw_elements ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_extension") ) { outValue = ( lime_gl_get_extension ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_programiv") ) { outValue = ( lime_gl_get_programiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformfv") ) { outValue = ( lime_gl_get_uniformfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformiv") ) { outValue = ( lime_gl_get_uniformiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformui") ) { outValue = ( lime_gl_get_uniformui ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_shader_binary") ) { outValue = ( lime_gl_shader_binary ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_shader_source") ) { outValue = ( lime_gl_shader_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_data") ) { outValue = ( lime_hb_blob_get_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_create") ) { outValue = ( lime_hb_buffer_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_upem") ) { outValue = ( lime_hb_face_get_upem ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_set_upem") ) { outValue = ( lime_hb_face_set_upem ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_face") ) { outValue = ( lime_hb_font_get_face ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_ppem") ) { outValue = ( lime_hb_font_get_ppem ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_set_ppem") ) { outValue = ( lime_hb_font_set_ppem ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_add_range") ) { outValue = ( lime_hb_set_add_range ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_del_range") ) { outValue = ( lime_hb_set_del_range ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_empty") ) { outValue = ( lime_hb_set_get_empty ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_intersect") ) { outValue = ( lime_hb_set_intersect ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_info") ) { outValue = ( lime_vorbis_file_info ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_read") ) { outValue = ( lime_vorbis_file_read ); return true; }
break;
case 22:
if (HX_FIELD_EQ(inName,"lime_font_get_ascender") ) { outValue = ( lime_font_get_ascender ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_render_glyph") ) { outValue = ( lime_font_render_glyph ); return true; }
if (HX_FIELD_EQ(inName,"lime_jpeg_decode_bytes") ) { outValue = ( lime_jpeg_decode_bytes ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_height") ) { outValue = ( lime_window_get_height ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_cursor") ) { outValue = ( lime_window_set_cursor ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_warp_mouse") ) { outValue = ( lime_window_warp_mouse ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_buffers") ) { outValue = ( lime_al_delete_buffers ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_sources") ) { outValue = ( lime_al_delete_sources ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_distance_model") ) { outValue = ( lime_al_distance_model ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_doppler_factor") ) { outValue = ( lime_al_doppler_factor ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_enum_value") ) { outValue = ( lime_al_get_enum_value ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listener3f") ) { outValue = ( lime_al_get_listener3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listener3i") ) { outValue = ( lime_al_get_listener3i ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listenerfv") ) { outValue = ( lime_al_get_listenerfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listeneriv") ) { outValue = ( lime_al_get_listeneriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_rewindv") ) { outValue = ( lime_al_source_rewindv ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_speed_of_sound") ) { outValue = ( lime_al_speed_of_sound ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_resume_device") ) { outValue = ( lime_alc_resume_device ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rel_line_to") ) { outValue = ( lime_cairo_rel_line_to ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rel_move_to") ) { outValue = ( lime_cairo_rel_move_to ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_show_glyphs") ) { outValue = ( lime_cairo_show_glyphs ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_version_info") ) { outValue = ( lime_curl_version_info ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_cleanup") ) { outValue = ( lime_curl_easy_cleanup ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_getinfo") ) { outValue = ( lime_curl_easy_getinfo ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_perform") ) { outValue = ( lime_curl_easy_perform ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_setopt") ) { outValue = ( lime_curl_multi_setopt ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_active_texture") ) { outValue = ( lime_gl_active_texture ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_equation") ) { outValue = ( lime_gl_blend_equation ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferfi") ) { outValue = ( lime_gl_clear_bufferfi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferfv") ) { outValue = ( lime_gl_clear_bufferfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferiv") ) { outValue = ( lime_gl_clear_bufferiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compile_shader") ) { outValue = ( lime_gl_compile_shader ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_program") ) { outValue = ( lime_gl_create_program ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_sampler") ) { outValue = ( lime_gl_create_sampler ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_texture") ) { outValue = ( lime_gl_create_texture ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_program") ) { outValue = ( lime_gl_delete_program ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_sampler") ) { outValue = ( lime_gl_delete_sampler ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_texture") ) { outValue = ( lime_gl_delete_texture ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integer64v") ) { outValue = ( lime_gl_get_integer64v ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integeri_v") ) { outValue = ( lime_gl_get_integeri_v ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformuiv") ) { outValue = ( lime_gl_get_uniformuiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_framebuffer") ) { outValue = ( lime_gl_is_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_object_from_id") ) { outValue = ( lime_gl_object_from_id ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_polygon_offset") ) { outValue = ( lime_gl_polygon_offset ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_program_binary") ) { outValue = ( lime_gl_program_binary ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_parameterf") ) { outValue = ( lime_gl_tex_parameterf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_parameteri") ) { outValue = ( lime_gl_tex_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_storage_2d") ) { outValue = ( lime_gl_tex_storage_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_storage_3d") ) { outValue = ( lime_gl_tex_storage_3d ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_empty") ) { outValue = ( lime_hb_blob_get_empty ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_reverse") ) { outValue = ( lime_hb_buffer_reverse ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_empty") ) { outValue = ( lime_hb_face_get_empty ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_index") ) { outValue = ( lime_hb_face_get_index ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_set_index") ) { outValue = ( lime_hb_face_set_index ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_empty") ) { outValue = ( lime_hb_font_get_empty ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_scale") ) { outValue = ( lime_hb_font_get_scale ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_set_scale") ) { outValue = ( lime_hb_font_set_scale ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_create") ) { outValue = ( lime_hb_ft_font_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_next_range") ) { outValue = ( lime_hb_set_next_range ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_clear") ) { outValue = ( lime_vorbis_file_clear ); return true; }
break;
case 23:
if (HX_FIELD_EQ(inName,"lime_application_create") ) { outValue = ( lime_application_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_application_update") ) { outValue = ( lime_application_update ); return true; }
if (HX_FIELD_EQ(inName,"lime_clipboard_get_text") ) { outValue = ( lime_clipboard_get_text ); return true; }
if (HX_FIELD_EQ(inName,"lime_clipboard_set_text") ) { outValue = ( lime_clipboard_set_text ); return true; }
if (HX_FIELD_EQ(inName,"lime_deflate_decompress") ) { outValue = ( lime_deflate_decompress ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_descender") ) { outValue = ( lime_font_get_descender ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_render_glyphs") ) { outValue = ( lime_font_render_glyphs ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_display") ) { outValue = ( lime_system_get_display ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_context") ) { outValue = ( lime_window_get_context ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_display") ) { outValue = ( lime_window_get_display ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_read_pixels") ) { outValue = ( lime_window_read_pixels ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_create_context") ) { outValue = ( lime_alc_create_context ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_arc_negative") ) { outValue = ( lime_cairo_arc_negative ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_clip_extents") ) { outValue = ( lime_cairo_clip_extents ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_fill_extents") ) { outValue = ( lime_cairo_fill_extents ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_line_cap") ) { outValue = ( lime_cairo_get_line_cap ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_operator") ) { outValue = ( lime_cairo_get_operator ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_mask_surface") ) { outValue = ( lime_cairo_mask_surface ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rel_curve_to") ) { outValue = ( lime_cairo_rel_curve_to ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_line_cap") ) { outValue = ( lime_cairo_set_line_cap ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_operator") ) { outValue = ( lime_cairo_set_operator ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_strerror") ) { outValue = ( lime_curl_easy_strerror ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_unescape") ) { outValue = ( lime_curl_easy_unescape ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_perform") ) { outValue = ( lime_curl_multi_perform ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_buffer_sub_data") ) { outValue = ( lime_gl_buffer_sub_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferuiv") ) { outValue = ( lime_gl_clear_bufferuiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_generate_mipmap") ) { outValue = ( lime_gl_generate_mipmap ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_renderbuffer") ) { outValue = ( lime_gl_is_renderbuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_vertex_array") ) { outValue = ( lime_gl_is_vertex_array ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_object_register") ) { outValue = ( lime_gl_object_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_sample_coverage") ) { outValue = ( lime_gl_sample_coverage ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib1f") ) { outValue = ( lime_gl_vertex_attrib1f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib2f") ) { outValue = ( lime_gl_vertex_attrib2f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib3f") ) { outValue = ( lime_gl_vertex_attrib3f ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib4f") ) { outValue = ( lime_gl_vertex_attrib4f ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_length") ) { outValue = ( lime_hb_blob_get_length ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_utf8") ) { outValue = ( lime_hb_buffer_add_utf8 ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_parent") ) { outValue = ( lime_hb_font_get_parent ); return true; }
break;
case 24:
if (HX_FIELD_EQ(inName,"lime_data_pointer_offset") ) { outValue = ( lime_data_pointer_offset ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_create") ) { outValue = ( lime_file_watcher_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_update") ) { outValue = ( lime_file_watcher_update ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_num_glyphs") ) { outValue = ( lime_font_get_num_glyphs ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_flip") ) { outValue = ( lime_window_context_flip ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_lock") ) { outValue = ( lime_window_context_lock ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_doppler_velocity") ) { outValue = ( lime_al_doppler_velocity ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_proc_address") ) { outValue = ( lime_al_get_proc_address ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_destroy_context") ) { outValue = ( lime_alc_destroy_context ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_process_context") ) { outValue = ( lime_alc_process_context ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_suspend_context") ) { outValue = ( lime_alc_suspend_context ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_clip_preserve") ) { outValue = ( lime_cairo_clip_preserve ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_fill_preserve") ) { outValue = ( lime_cairo_fill_preserve ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_antialias") ) { outValue = ( lime_cairo_get_antialias ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_fill_rule") ) { outValue = ( lime_cairo_get_fill_rule ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_font_face") ) { outValue = ( lime_cairo_get_font_face ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_line_join") ) { outValue = ( lime_cairo_get_line_join ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_tolerance") ) { outValue = ( lime_cairo_get_tolerance ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_antialias") ) { outValue = ( lime_cairo_set_antialias ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_fill_rule") ) { outValue = ( lime_cairo_set_fill_rule ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_font_face") ) { outValue = ( lime_cairo_set_font_face ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_font_size") ) { outValue = ( lime_cairo_set_font_size ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_line_join") ) { outValue = ( lime_cairo_set_line_join ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_tolerance") ) { outValue = ( lime_cairo_set_tolerance ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_surface_flush") ) { outValue = ( lime_cairo_surface_flush ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_global_cleanup") ) { outValue = ( lime_curl_global_cleanup ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_duphandle") ) { outValue = ( lime_curl_easy_duphandle ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_buffer_base") ) { outValue = ( lime_gl_bind_buffer_base ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_framebuffer") ) { outValue = ( lime_gl_bind_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blit_framebuffer") ) { outValue = ( lime_gl_blit_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_client_wait_sync") ) { outValue = ( lime_gl_client_wait_sync ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integer64i_v") ) { outValue = ( lime_gl_get_integer64i_v ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_map_buffer_range") ) { outValue = ( lime_gl_map_buffer_range ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_sub_image_2d") ) { outValue = ( lime_gl_tex_sub_image_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_sub_image_3d") ) { outValue = ( lime_gl_tex_sub_image_3d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_validate_program") ) { outValue = ( lime_gl_validate_program ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib1fv") ) { outValue = ( lime_gl_vertex_attrib1fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib2fv") ) { outValue = ( lime_gl_vertex_attrib2fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib3fv") ) { outValue = ( lime_gl_vertex_attrib3fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib4fv") ) { outValue = ( lime_gl_vertex_attrib4fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4i") ) { outValue = ( lime_gl_vertex_attribi4i ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_utf16") ) { outValue = ( lime_hb_buffer_add_utf16 ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_utf32") ) { outValue = ( lime_hb_buffer_add_utf32 ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_empty") ) { outValue = ( lime_hb_buffer_get_empty ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_flags") ) { outValue = ( lime_hb_buffer_get_flags ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_flags") ) { outValue = ( lime_hb_buffer_set_flags ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_bitrate") ) { outValue = ( lime_vorbis_file_bitrate ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_comment") ) { outValue = ( lime_vorbis_file_comment ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_streams") ) { outValue = ( lime_vorbis_file_streams ); return true; }
break;
case 25:
if (HX_FIELD_EQ(inName,"lime_font_get_family_name") ) { outValue = ( lime_font_get_family_name ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_glyph_index") ) { outValue = ( lime_font_get_glyph_index ); return true; }
if (HX_FIELD_EQ(inName,"lime_gamepad_add_mappings") ) { outValue = ( lime_gamepad_add_mappings ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_directory") ) { outValue = ( lime_system_get_directory ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_maximized") ) { outValue = ( lime_window_set_maximized ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_minimized") ) { outValue = ( lime_window_set_minimized ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_resizable") ) { outValue = ( lime_window_set_resizable ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_dash_count") ) { outValue = ( lime_cairo_get_dash_count ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_line_width") ) { outValue = ( lime_cairo_get_line_width ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_line_width") ) { outValue = ( lime_cairo_set_line_width ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source_rgb") ) { outValue = ( lime_cairo_set_source_rgb ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_stroke_extents") ) { outValue = ( lime_cairo_stroke_extents ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_version_string") ) { outValue = ( lime_cairo_version_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_info_read") ) { outValue = ( lime_curl_multi_info_read ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_buffer_range") ) { outValue = ( lime_gl_bind_buffer_range ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_renderbuffer") ) { outValue = ( lime_gl_bind_renderbuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_vertex_array") ) { outValue = ( lime_gl_bind_vertex_array ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_tex_image_2d") ) { outValue = ( lime_gl_copy_tex_image_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_attrib") ) { outValue = ( lime_gl_get_active_attrib ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shader_source") ) { outValue = ( lime_gl_get_shader_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_object_deregister") ) { outValue = ( lime_gl_object_deregister ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix2fv") ) { outValue = ( lime_gl_uniform_matrix2fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix3fv") ) { outValue = ( lime_gl_uniform_matrix3fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix4fv") ) { outValue = ( lime_gl_uniform_matrix4fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4iv") ) { outValue = ( lime_gl_vertex_attribi4iv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4ui") ) { outValue = ( lime_gl_vertex_attribi4ui ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_is_immutable") ) { outValue = ( lime_hb_blob_is_immutable ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_length") ) { outValue = ( lime_hb_buffer_get_length ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_script") ) { outValue = ( lime_hb_buffer_get_script ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_length") ) { outValue = ( lime_hb_buffer_set_length ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_script") ) { outValue = ( lime_hb_buffer_set_script ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_is_immutable") ) { outValue = ( lime_hb_face_is_immutable ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_feature_to_string") ) { outValue = ( lime_hb_feature_to_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_is_immutable") ) { outValue = ( lime_hb_font_is_immutable ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_crosslap") ) { outValue = ( lime_vorbis_file_crosslap ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek") ) { outValue = ( lime_vorbis_file_pcm_seek ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_seek") ) { outValue = ( lime_vorbis_file_raw_seek ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_tell") ) { outValue = ( lime_vorbis_file_pcm_tell ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_tell") ) { outValue = ( lime_vorbis_file_raw_tell ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_seekable") ) { outValue = ( lime_vorbis_file_seekable ); return true; }
break;
case 26:
if (HX_FIELD_EQ(inName,"lime_file_dialog_open_file") ) { outValue = ( lime_file_dialog_open_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_dialog_save_file") ) { outValue = ( lime_file_dialog_save_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_units_per_em") ) { outValue = ( lime_font_get_units_per_em ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_merge") ) { outValue = ( lime_image_data_util_merge ); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_axes") ) { outValue = ( lime_joystick_get_num_axes ); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_hats") ) { outValue = ( lime_joystick_get_num_hats ); return true; }
if (HX_FIELD_EQ(inName,"lime_key_code_to_scan_code") ) { outValue = ( lime_key_code_to_scan_code ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_ios_tablet") ) { outValue = ( lime_system_get_ios_tablet ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_unlock") ) { outValue = ( lime_window_context_unlock ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_mouse_lock") ) { outValue = ( lime_window_get_mouse_lock ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_borderless") ) { outValue = ( lime_window_set_borderless ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_fullscreen") ) { outValue = ( lime_window_set_fullscreen ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_mouse_lock") ) { outValue = ( lime_window_set_mouse_lock ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_miter_limit") ) { outValue = ( lime_cairo_get_miter_limit ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_identity_matrix") ) { outValue = ( lime_cairo_identity_matrix ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_miter_limit") ) { outValue = ( lime_cairo_set_miter_limit ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source_rgba") ) { outValue = ( lime_cairo_set_source_rgba ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_stroke_preserve") ) { outValue = ( lime_cairo_stroke_preserve ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_add_handle") ) { outValue = ( lime_curl_multi_add_handle ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_framebuffer") ) { outValue = ( lime_gl_create_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_framebuffer") ) { outValue = ( lime_gl_delete_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform") ) { outValue = ( lime_gl_get_active_uniform ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_program_binary") ) { outValue = ( lime_gl_get_program_binary ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_query_objectui") ) { outValue = ( lime_gl_get_query_objectui ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameterf") ) { outValue = ( lime_gl_get_tex_parameterf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameteri") ) { outValue = ( lime_gl_get_tex_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribf") ) { outValue = ( lime_gl_get_vertex_attribf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribi") ) { outValue = ( lime_gl_get_vertex_attribi ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_program_parameteri") ) { outValue = ( lime_gl_program_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_sampler_parameterf") ) { outValue = ( lime_gl_sampler_parameterf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_sampler_parameteri") ) { outValue = ( lime_gl_sampler_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4uiv") ) { outValue = ( lime_gl_vertex_attribi4uiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_preallocate") ) { outValue = ( lime_hb_buffer_preallocate ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_language_to_string") ) { outValue = ( lime_hb_language_to_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_population") ) { outValue = ( lime_hb_set_get_population ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_from_file") ) { outValue = ( lime_vorbis_file_from_file ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_total") ) { outValue = ( lime_vorbis_file_pcm_total ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_total") ) { outValue = ( lime_vorbis_file_raw_total ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek") ) { outValue = ( lime_vorbis_file_time_seek ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_tell") ) { outValue = ( lime_vorbis_file_time_tell ); return true; }
break;
case 27:
if (HX_FIELD_EQ(inName,"lime_bytes_get_data_pointer") ) { outValue = ( lime_bytes_get_data_pointer ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_dialog_open_files") ) { outValue = ( lime_file_dialog_open_files ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_glyph_indices") ) { outValue = ( lime_font_get_glyph_indices ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_glyph_metrics") ) { outValue = ( lime_font_get_glyph_metrics ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_outline_decompose") ) { outValue = ( lime_font_outline_decompose ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_resize") ) { outValue = ( lime_image_data_util_resize ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_font_options") ) { outValue = ( lime_cairo_get_font_options ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_group_target") ) { outValue = ( lime_cairo_get_group_target ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_paint_with_alpha") ) { outValue = ( lime_cairo_paint_with_alpha ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_font_options") ) { outValue = ( lime_cairo_set_font_options ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_face_status") ) { outValue = ( lime_cairo_font_face_status ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_func_separate") ) { outValue = ( lime_gl_blend_func_separate ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_renderbuffer") ) { outValue = ( lime_gl_create_renderbuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_vertex_array") ) { outValue = ( lime_gl_create_vertex_array ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_renderbuffer") ) { outValue = ( lime_gl_delete_renderbuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_vertex_array") ) { outValue = ( lime_gl_delete_vertex_array ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_range_elements") ) { outValue = ( lime_gl_draw_range_elements ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_attrib_location") ) { outValue = ( lime_gl_get_attrib_location ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_pointerv") ) { outValue = ( lime_gl_get_buffer_pointerv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_sub_data") ) { outValue = ( lime_gl_get_buffer_sub_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_query_objectuiv") ) { outValue = ( lime_gl_get_query_objectuiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shader_info_log") ) { outValue = ( lime_gl_get_shader_info_log ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sync_parameteri") ) { outValue = ( lime_gl_get_sync_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameterfv") ) { outValue = ( lime_gl_get_tex_parameterfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameteriv") ) { outValue = ( lime_gl_get_tex_parameteriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribfv") ) { outValue = ( lime_gl_get_vertex_attribfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiv") ) { outValue = ( lime_gl_get_vertex_attribiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribii") ) { outValue = ( lime_gl_get_vertex_attribii ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_op_separate") ) { outValue = ( lime_gl_stencil_op_separate ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix2x3fv") ) { outValue = ( lime_gl_uniform_matrix2x3fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix2x4fv") ) { outValue = ( lime_gl_uniform_matrix2x4fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix3x2fv") ) { outValue = ( lime_gl_uniform_matrix3x2fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix3x4fv") ) { outValue = ( lime_gl_uniform_matrix3x4fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix4x2fv") ) { outValue = ( lime_gl_uniform_matrix4x2fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix4x3fv") ) { outValue = ( lime_gl_uniform_matrix4x3fv ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_make_immutable") ) { outValue = ( lime_hb_blob_make_immutable ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_language") ) { outValue = ( lime_hb_buffer_get_language ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_language") ) { outValue = ( lime_hb_buffer_set_language ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_make_immutable") ) { outValue = ( lime_hb_face_make_immutable ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_reference_blob") ) { outValue = ( lime_hb_face_reference_blob ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_feature_from_string") ) { outValue = ( lime_hb_feature_from_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_make_immutable") ) { outValue = ( lime_hb_font_make_immutable ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_from_bytes") ) { outValue = ( lime_vorbis_file_from_bytes ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_read_float") ) { outValue = ( lime_vorbis_file_read_float ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_total") ) { outValue = ( lime_vorbis_file_time_total ); return true; }
break;
case 28:
if (HX_FIELD_EQ(inName,"lime_bytes_from_data_pointer") ) { outValue = ( lime_bytes_from_data_pointer ); return true; }
if (HX_FIELD_EQ(inName,"lime_cffi_get_native_pointer") ) { outValue = ( lime_cffi_get_native_pointer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gamepad_get_device_guid") ) { outValue = ( lime_gamepad_get_device_guid ); return true; }
if (HX_FIELD_EQ(inName,"lime_gamepad_get_device_name") ) { outValue = ( lime_gamepad_get_device_name ); return true; }
if (HX_FIELD_EQ(inName,"lime_key_code_from_scan_code") ) { outValue = ( lime_key_code_from_scan_code ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_device_model") ) { outValue = ( lime_system_get_device_model ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_num_displays") ) { outValue = ( lime_system_get_num_displays ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_context_type") ) { outValue = ( lime_window_get_context_type ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_display_mode") ) { outValue = ( lime_window_get_display_mode ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_display_mode") ) { outValue = ( lime_window_set_display_mode ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_extension_present") ) { outValue = ( lime_al_is_extension_present ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_queue_buffers") ) { outValue = ( lime_al_source_queue_buffers ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_contexts_device") ) { outValue = ( lime_alc_get_contexts_device ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_current_context") ) { outValue = ( lime_alc_get_current_context ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_remove_direct_filter") ) { outValue = ( lime_al_remove_direct_filter ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_current_point") ) { outValue = ( lime_cairo_get_current_point ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_has_current_point") ) { outValue = ( lime_cairo_has_current_point ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_attrib_location") ) { outValue = ( lime_gl_bind_attrib_location ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_buffer_sub_data") ) { outValue = ( lime_gl_copy_buffer_sub_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_attached_shaders") ) { outValue = ( lime_gl_get_attached_shaders ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_internalformativ") ) { outValue = ( lime_gl_get_internalformativ ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_program_info_log") ) { outValue = ( lime_gl_get_program_info_log ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sync_parameteriv") ) { outValue = ( lime_gl_get_sync_parameteriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniform_location") ) { outValue = ( lime_gl_get_uniform_location ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiiv") ) { outValue = ( lime_gl_get_vertex_attribiiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiui") ) { outValue = ( lime_gl_get_vertex_attribiui ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_renderbuffer_storage") ) { outValue = ( lime_gl_renderbuffer_storage ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_create_sub_blob") ) { outValue = ( lime_hb_blob_create_sub_blob ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_direction") ) { outValue = ( lime_hb_buffer_get_direction ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_direction") ) { outValue = ( lime_hb_buffer_set_direction ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_glyph_count") ) { outValue = ( lime_hb_face_get_glyph_count ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_reference_table") ) { outValue = ( lime_hb_face_reference_table ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_set_glyph_count") ) { outValue = ( lime_hb_face_set_glyph_count ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_create_sub_font") ) { outValue = ( lime_hb_font_create_sub_font ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_glyph_to_string") ) { outValue = ( lime_hb_font_glyph_to_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_language_from_string") ) { outValue = ( lime_hb_language_from_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_language_get_default") ) { outValue = ( lime_hb_language_get_default ); return true; }
break;
case 29:
if (HX_FIELD_EQ(inName,"lime_joystick_get_device_guid") ) { outValue = ( lime_joystick_get_device_guid ); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_device_name") ) { outValue = ( lime_joystick_get_device_name ); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_buttons") ) { outValue = ( lime_joystick_get_num_buttons ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_device_vendor") ) { outValue = ( lime_system_get_device_vendor ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_platform_name") ) { outValue = ( lime_system_get_platform_name ); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_make_context_current") ) { outValue = ( lime_alc_make_context_current ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source_surface") ) { outValue = ( lime_cairo_set_source_surface ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_rgb") ) { outValue = ( lime_cairo_pattern_create_rgb ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_extend") ) { outValue = ( lime_cairo_pattern_get_extend ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_filter") ) { outValue = ( lime_cairo_pattern_get_filter ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_matrix") ) { outValue = ( lime_cairo_pattern_get_matrix ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_set_extend") ) { outValue = ( lime_cairo_pattern_set_extend ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_set_filter") ) { outValue = ( lime_cairo_pattern_set_filter ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_set_matrix") ) { outValue = ( lime_cairo_pattern_set_matrix ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_remove_handle") ) { outValue = ( lime_curl_multi_remove_handle ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_tex_sub_image_2d") ) { outValue = ( lime_gl_copy_tex_sub_image_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_tex_sub_image_3d") ) { outValue = ( lime_gl_copy_tex_sub_image_3d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_arrays_instanced") ) { outValue = ( lime_gl_draw_arrays_instanced ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_framebuffer_texture2D") ) { outValue = ( lime_gl_framebuffer_texture2D ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniformsiv") ) { outValue = ( lime_gl_get_active_uniformsiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_parameteri") ) { outValue = ( lime_gl_get_buffer_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiuiv") ) { outValue = ( lime_gl_get_vertex_attribiuiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_transform_feedback") ) { outValue = ( lime_gl_is_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_func_separate") ) { outValue = ( lime_gl_stencil_func_separate ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_mask_separate") ) { outValue = ( lime_gl_stencil_mask_separate ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_block_binding") ) { outValue = ( lime_gl_uniform_block_binding ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib_divisor") ) { outValue = ( lime_gl_vertex_attrib_divisor ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib_pointer") ) { outValue = ( lime_gl_vertex_attrib_pointer ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_codepoints") ) { outValue = ( lime_hb_buffer_add_codepoints ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_clear_contents") ) { outValue = ( lime_hb_buffer_clear_contents ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek_lap") ) { outValue = ( lime_vorbis_file_pcm_seek_lap ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_seek_lap") ) { outValue = ( lime_vorbis_file_raw_seek_lap ); return true; }
break;
case 30:
if (HX_FIELD_EQ(inName,"lime_image_data_util_fill_rect") ) { outValue = ( lime_image_data_util_fill_rect ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_threshold") ) { outValue = ( lime_image_data_util_threshold ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_platform_label") ) { outValue = ( lime_system_get_platform_label ); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_unqueue_buffers") ) { outValue = ( lime_al_source_unqueue_buffers ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pop_group_to_source") ) { outValue = ( lime_cairo_pop_group_to_source ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_create") ) { outValue = ( lime_cairo_font_options_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_ft_font_face_create") ) { outValue = ( lime_cairo_ft_font_face_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_rgba") ) { outValue = ( lime_cairo_pattern_create_rgba ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_end_transform_feedback") ) { outValue = ( lime_gl_end_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_parameteriv") ) { outValue = ( lime_gl_get_buffer_parameteriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_context_attributes") ) { outValue = ( lime_gl_get_context_attributes ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_frag_data_location") ) { outValue = ( lime_gl_get_frag_data_location ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameterf") ) { outValue = ( lime_gl_get_sampler_parameterf ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameteri") ) { outValue = ( lime_gl_get_sampler_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_invalidate_framebuffer") ) { outValue = ( lime_gl_invalidate_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib_ipointer") ) { outValue = ( lime_gl_vertex_attrib_ipointer ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_data_writable") ) { outValue = ( lime_hb_blob_get_data_writable ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_glyph_infos") ) { outValue = ( lime_hb_buffer_get_glyph_infos ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_glyph_from_string") ) { outValue = ( lime_hb_font_glyph_from_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_get_load_flags") ) { outValue = ( lime_hb_ft_font_get_load_flags ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_set_load_flags") ) { outValue = ( lime_hb_ft_font_set_load_flags ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek_page") ) { outValue = ( lime_vorbis_file_pcm_seek_page ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_serial_number") ) { outValue = ( lime_vorbis_file_serial_number ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek_lap") ) { outValue = ( lime_vorbis_file_time_seek_lap ); return true; }
break;
case 31:
if (HX_FIELD_EQ(inName,"lime_application_set_frame_rate") ) { outValue = ( lime_application_set_frame_rate ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_dialog_open_directory") ) { outValue = ( lime_file_dialog_open_directory ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_add_directory") ) { outValue = ( lime_file_watcher_add_directory ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_flood_fill") ) { outValue = ( lime_image_data_util_flood_fill ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_get_pixels") ) { outValue = ( lime_image_data_util_get_pixels ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_set_format") ) { outValue = ( lime_image_data_util_set_format ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_set_pixels") ) { outValue = ( lime_image_data_util_set_pixels ); return true; }
if (HX_FIELD_EQ(inName,"lime_key_event_manager_register") ) { outValue = ( lime_key_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_create") ) { outValue = ( lime_cairo_image_surface_create ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_transform_feedback") ) { outValue = ( lime_gl_bind_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_equation_separate") ) { outValue = ( lime_gl_blend_equation_separate ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_image_2d") ) { outValue = ( lime_gl_compressed_tex_image_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_image_3d") ) { outValue = ( lime_gl_compressed_tex_image_3d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_elements_instanced") ) { outValue = ( lime_gl_draw_elements_instanced ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameterfv") ) { outValue = ( lime_gl_get_sampler_parameterfv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameteriv") ) { outValue = ( lime_gl_get_sampler_parameteriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniform_block_index") ) { outValue = ( lime_gl_get_uniform_block_index ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_release_shader_compiler") ) { outValue = ( lime_gl_release_shader_compiler ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_content_type") ) { outValue = ( lime_hb_buffer_get_content_type ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_normalize_glyphs") ) { outValue = ( lime_hb_buffer_normalize_glyphs ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_reverse_clusters") ) { outValue = ( lime_hb_buffer_reverse_clusters ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_content_type") ) { outValue = ( lime_hb_buffer_set_content_type ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_segment_properties_hash") ) { outValue = ( lime_hb_segment_properties_hash ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek_page") ) { outValue = ( lime_vorbis_file_time_seek_page ); return true; }
break;
case 32:
if (HX_FIELD_EQ(inName,"lime_drop_event_manager_register") ) { outValue = ( lime_drop_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_underline_position") ) { outValue = ( lime_font_get_underline_position ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_copy_pixels") ) { outValue = ( lime_image_data_util_copy_pixels ); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_trackballs") ) { outValue = ( lime_joystick_get_num_trackballs ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_platform_version") ) { outValue = ( lime_system_get_platform_version ); return true; }
if (HX_FIELD_EQ(inName,"lime_text_event_manager_register") ) { outValue = ( lime_text_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_make_current") ) { outValue = ( lime_window_context_make_current ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_linear") ) { outValue = ( lime_cairo_pattern_create_linear ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_radial") ) { outValue = ( lime_cairo_pattern_create_radial ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_begin_transform_feedback") ) { outValue = ( lime_gl_begin_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_check_framebuffer_status") ) { outValue = ( lime_gl_check_framebuffer_status ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_framebuffer_renderbuffer") ) { outValue = ( lime_gl_framebuffer_renderbuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_parameteri64v") ) { outValue = ( lime_gl_get_buffer_parameteri64v ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_pause_transform_feedback") ) { outValue = ( lime_gl_pause_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_cluster_level") ) { outValue = ( lime_hb_buffer_get_cluster_level ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_cluster_level") ) { outValue = ( lime_hb_buffer_set_cluster_level ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_segment_properties_equal") ) { outValue = ( lime_hb_segment_properties_equal ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_symmetric_difference") ) { outValue = ( lime_hb_set_symmetric_difference ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_bitrate_instant") ) { outValue = ( lime_vorbis_file_bitrate_instant ); return true; }
break;
case 33:
if (HX_FIELD_EQ(inName,"lime_font_get_underline_thickness") ) { outValue = ( lime_font_get_underline_thickness ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_copy_channel") ) { outValue = ( lime_image_data_util_copy_channel ); return true; }
if (HX_FIELD_EQ(inName,"lime_mouse_event_manager_register") ) { outValue = ( lime_mouse_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_touch_event_manager_register") ) { outValue = ( lime_touch_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_data") ) { outValue = ( lime_cairo_image_surface_get_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_transform_feedback") ) { outValue = ( lime_gl_create_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_transform_feedback") ) { outValue = ( lime_gl_delete_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_framebuffer_texture_layer") ) { outValue = ( lime_gl_framebuffer_texture_layer ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform_blocki") ) { outValue = ( lime_gl_get_active_uniform_blocki ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_resume_transform_feedback") ) { outValue = ( lime_gl_resume_transform_feedback ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_create_referenced") ) { outValue = ( lime_hb_ft_font_create_referenced ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_allocation_successful") ) { outValue = ( lime_hb_set_allocation_successful ); return true; }
break;
case 34:
if (HX_FIELD_EQ(inName,"lime_bytes_get_data_pointer_offset") ) { outValue = ( lime_bytes_get_data_pointer_offset ); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_remove_directory") ) { outValue = ( lime_file_watcher_remove_directory ); return true; }
if (HX_FIELD_EQ(inName,"lime_render_event_manager_register") ) { outValue = ( lime_render_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_sensor_event_manager_register") ) { outValue = ( lime_sensor_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_text_input_enabled") ) { outValue = ( lime_window_get_text_input_enabled ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_text_input_enabled") ) { outValue = ( lime_window_set_text_input_enabled ); return true; }
if (HX_FIELD_EQ(inName,"lime_window_event_manager_register") ) { outValue = ( lime_window_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_push_group_with_content") ) { outValue = ( lime_cairo_push_group_with_content ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_width") ) { outValue = ( lime_cairo_image_surface_get_width ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_enable_vertex_attrib_array") ) { outValue = ( lime_gl_enable_vertex_attrib_array ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform_blockiv") ) { outValue = ( lime_gl_get_active_uniform_blockiv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attrib_pointerv") ) { outValue = ( lime_gl_get_vertex_attrib_pointerv ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_invalidate_sub_framebuffer") ) { outValue = ( lime_gl_invalidate_sub_framebuffer ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_glyph_positions") ) { outValue = ( lime_hb_buffer_get_glyph_positions ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek_page_lap") ) { outValue = ( lime_vorbis_file_pcm_seek_page_lap ); return true; }
break;
case 35:
if (HX_FIELD_EQ(inName,"lime_gamepad_event_manager_register") ) { outValue = ( lime_gamepad_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_multiply_alpha") ) { outValue = ( lime_image_data_util_multiply_alpha ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_format") ) { outValue = ( lime_cairo_image_surface_get_format ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_height") ) { outValue = ( lime_cairo_image_surface_get_height ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_stride") ) { outValue = ( lime_cairo_image_surface_get_stride ); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_get_running_handles") ) { outValue = ( lime_curl_multi_get_running_handles ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_sub_image_2d") ) { outValue = ( lime_gl_compressed_tex_sub_image_2d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_sub_image_3d") ) { outValue = ( lime_gl_compressed_tex_sub_image_3d ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_disable_vertex_attrib_array") ) { outValue = ( lime_gl_disable_vertex_attrib_array ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_renderbuffer_parameteri") ) { outValue = ( lime_gl_get_renderbuffer_parameteri ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shader_precision_format") ) { outValue = ( lime_gl_get_shader_precision_format ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_transform_feedback_varyings") ) { outValue = ( lime_gl_transform_feedback_varyings ); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek_page_lap") ) { outValue = ( lime_vorbis_file_time_seek_page_lap ); return true; }
break;
case 36:
if (HX_FIELD_EQ(inName,"lime_image_data_util_color_transform") ) { outValue = ( lime_image_data_util_color_transform ); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_event_manager_register") ) { outValue = ( lime_joystick_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_allow_screen_timeout") ) { outValue = ( lime_system_get_allow_screen_timeout ); return true; }
if (HX_FIELD_EQ(inName,"lime_system_set_allow_screen_timeout") ) { outValue = ( lime_system_set_allow_screen_timeout ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_renderbuffer_parameteriv") ) { outValue = ( lime_gl_get_renderbuffer_parameteriv ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_allocation_successful") ) { outValue = ( lime_hb_buffer_allocation_successful ); return true; }
break;
case 37:
if (HX_FIELD_EQ(inName,"lime_clipboard_event_manager_register") ) { outValue = ( lime_clipboard_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_unmultiply_alpha") ) { outValue = ( lime_image_data_util_unmultiply_alpha ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_antialias") ) { outValue = ( lime_cairo_font_options_get_antialias ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_antialias") ) { outValue = ( lime_cairo_font_options_set_antialias ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_add_color_stop_rgb") ) { outValue = ( lime_cairo_pattern_add_color_stop_rgb ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_for_surface") ) { outValue = ( lime_cairo_pattern_create_for_surface ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform_block_name") ) { outValue = ( lime_gl_get_active_uniform_block_name ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_segment_properties") ) { outValue = ( lime_hb_buffer_get_segment_properties ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_serialize_list_formats") ) { outValue = ( lime_hb_buffer_serialize_list_formats ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_segment_properties") ) { outValue = ( lime_hb_buffer_set_segment_properties ); return true; }
break;
case 38:
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_hint_style") ) { outValue = ( lime_cairo_font_options_get_hint_style ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_hint_style") ) { outValue = ( lime_cairo_font_options_set_hint_style ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_add_color_stop_rgba") ) { outValue = ( lime_cairo_pattern_add_color_stop_rgba ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_transform_feedback_varying") ) { outValue = ( lime_gl_get_transform_feedback_varying ); return true; }
break;
case 39:
if (HX_FIELD_EQ(inName,"lime_application_event_manager_register") ) { outValue = ( lime_application_event_manager_register ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_color_stop_count") ) { outValue = ( lime_cairo_pattern_get_color_stop_count ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_guess_segment_properties") ) { outValue = ( lime_hb_buffer_guess_segment_properties ); return true; }
break;
case 40:
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_hint_metrics") ) { outValue = ( lime_cairo_font_options_get_hint_metrics ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_hint_metrics") ) { outValue = ( lime_cairo_font_options_set_hint_metrics ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_create_for_data") ) { outValue = ( lime_cairo_image_surface_create_for_data ); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_renderbuffer_storage_multisample") ) { outValue = ( lime_gl_renderbuffer_storage_multisample ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_replacement_codepoint") ) { outValue = ( lime_hb_buffer_get_replacement_codepoint ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_replacement_codepoint") ) { outValue = ( lime_hb_buffer_set_replacement_codepoint ); return true; }
break;
case 41:
if (HX_FIELD_EQ(inName,"lime_hb_buffer_serialize_format_to_string") ) { outValue = ( lime_hb_buffer_serialize_format_to_string ); return true; }
break;
case 42:
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_subpixel_order") ) { outValue = ( lime_cairo_font_options_get_subpixel_order ); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_subpixel_order") ) { outValue = ( lime_cairo_font_options_set_subpixel_order ); return true; }
break;
case 43:
if (HX_FIELD_EQ(inName,"lime_hb_buffer_serialize_format_from_string") ) { outValue = ( lime_hb_buffer_serialize_format_from_string ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_add_glyph_origin_for_direction") ) { outValue = ( lime_hb_font_add_glyph_origin_for_direction ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_glyph_origin_for_direction") ) { outValue = ( lime_hb_font_get_glyph_origin_for_direction ); return true; }
break;
case 44:
if (HX_FIELD_EQ(inName,"lime_hb_font_get_glyph_advance_for_direction") ) { outValue = ( lime_hb_font_get_glyph_advance_for_direction ); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_glyph_kerning_for_direction") ) { outValue = ( lime_hb_font_get_glyph_kerning_for_direction ); return true; }
break;
case 45:
if (HX_FIELD_EQ(inName,"lime_gl_get_framebuffer_attachment_parameteri") ) { outValue = ( lime_gl_get_framebuffer_attachment_parameteri ); return true; }
break;
case 46:
if (HX_FIELD_EQ(inName,"lime_gl_get_framebuffer_attachment_parameteriv") ) { outValue = ( lime_gl_get_framebuffer_attachment_parameteriv ); return true; }
break;
case 48:
if (HX_FIELD_EQ(inName,"lime_hb_font_subtract_glyph_origin_for_direction") ) { outValue = ( lime_hb_font_subtract_glyph_origin_for_direction ); return true; }
}
return false;
}
bool NativeCFFI_obj::__SetStatic(const ::String &inName,Dynamic &ioValue,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 12:
if (HX_FIELD_EQ(inName,"lime_al_auxf") ) { lime_al_auxf=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_auxi") ) { lime_al_auxi=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_hint") ) { lime_gl_hint=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
break;
case 13:
if (HX_FIELD_EQ(inName,"lime_al_auxfv") ) { lime_al_auxfv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_auxiv") ) { lime_al_auxiv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear") ) { lime_gl_clear=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_flush") ) { lime_gl_flush=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_shape") ) { lime_hb_shape=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 14:
if (HX_FIELD_EQ(inName,"lime_font_load") ) { lime_font_load=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_enable") ) { lime_al_enable=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_aux") ) { lime_al_is_aux=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_arc") ) { lime_cairo_arc=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_enable") ) { lime_gl_enable=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_finish") ) { lime_gl_finish=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
break;
case 15:
if (HX_FIELD_EQ(inName,"lime_audio_load") ) { lime_audio_load=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_load") ) { lime_image_load=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferf") ) { lime_al_bufferf=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferi") ) { lime_al_bufferi=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_cleanup") ) { lime_al_cleanup=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_disable") ) { lime_al_disable=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourcef") ) { lime_al_sourcef=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourcei") ) { lime_al_sourcei=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_filteri") ) { lime_al_filteri=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_filterf") ) { lime_al_filterf=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effectf") ) { lime_al_effectf=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effecti") ) { lime_al_effecti=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_aux") ) { lime_al_gen_aux=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_clip") ) { lime_cairo_clip=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_fill") ) { lime_cairo_fill=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_mask") ) { lime_cairo_mask=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_save") ) { lime_cairo_save=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_disable") ) { lime_gl_disable=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_sync") ) { lime_gl_is_sync=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_scissor") ) { lime_gl_scissor=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_add") ) { lime_hb_set_add=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_del") ) { lime_hb_set_del=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_has") ) { lime_hb_set_has=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_set") ) { lime_hb_set_set=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 16:
if (HX_FIELD_EQ(inName,"lime_window_move") ) { lime_window_move=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_buffer3f") ) { lime_al_buffer3f=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_buffer3i") ) { lime_al_buffer3i=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferfv") ) { lime_al_bufferfv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_bufferiv") ) { lime_al_bufferiv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source3f") ) { lime_al_source3f=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source3i") ) { lime_al_source3i=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourcefv") ) { lime_al_sourcefv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_sourceiv") ) { lime_al_sourceiv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effectfv") ) { lime_al_effectfv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_effectiv") ) { lime_al_effectiv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_paint") ) { lime_cairo_paint=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_scale") ) { lime_cairo_scale=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_query") ) { lime_gl_is_query=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_viewport") ) { lime_gl_viewport=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_next") ) { lime_hb_set_next=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
break;
case 17:
if (HX_FIELD_EQ(inName,"lime_image_encode") ) { lime_image_encode=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_neko_execute") ) { lime_neko_execute=ioValue.Cast< ::cpp::Function< void (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_alert") ) { lime_window_alert=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_close") ) { lime_window_close=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_focus") ) { lime_window_focus=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_x") ) { lime_window_get_x=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_y") ) { lime_window_get_y=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_error") ) { lime_al_get_error=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_float") ) { lime_al_get_float=ioValue.Cast< ::cpp::Function< float (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_buffer") ) { lime_al_is_buffer=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_source") ) { lime_al_is_source=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listenerf") ) { lime_al_listenerf=ioValue.Cast< ::cpp::Function< void (int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listeneri") ) { lime_al_listeneri=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_filter") ) { lime_al_is_filter=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_effect") ) { lime_al_is_effect=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_create") ) { lime_cairo_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rotate") ) { lime_cairo_rotate=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_status") ) { lime_cairo_status=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_stroke") ) { lime_cairo_stroke=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_getdate") ) { lime_curl_getdate=ioValue.Cast< ::cpp::Function< Float (::String,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_version") ) { lime_curl_version=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_cull_face") ) { lime_gl_cull_face=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_end_query") ) { lime_gl_end_query=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_error") ) { lime_gl_get_error=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_float") ) { lime_gl_get_float=ioValue.Cast< ::cpp::Function< float (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_buffer") ) { lime_gl_is_buffer=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_shader") ) { lime_gl_is_shader=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1f") ) { lime_gl_uniform1f=ioValue.Cast< ::cpp::Function< void (int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1i") ) { lime_gl_uniform1i=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2f") ) { lime_gl_uniform2f=ioValue.Cast< ::cpp::Function< void (int,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2i") ) { lime_gl_uniform2i=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3f") ) { lime_gl_uniform3f=ioValue.Cast< ::cpp::Function< void (int,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3i") ) { lime_gl_uniform3i=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4f") ) { lime_gl_uniform4f=ioValue.Cast< ::cpp::Function< void (int,float,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4i") ) { lime_gl_uniform4i=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_wait_sync") ) { lime_gl_wait_sync=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_clear") ) { lime_hb_set_clear=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_union") ) { lime_hb_set_union=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 18:
if (HX_FIELD_EQ(inName,"lime_font_set_size") ) { lime_font_set_size=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gzip_compress") ) { lime_gzip_compress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_lzma_compress") ) { lime_lzma_compress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_create") ) { lime_window_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_id") ) { lime_window_get_id=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_resize") ) { lime_window_resize=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_zlib_compress") ) { lime_zlib_compress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_source") ) { lime_al_gen_source=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_buffer") ) { lime_al_gen_buffer=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_double") ) { lime_al_get_double=ioValue.Cast< ::cpp::Function< Float (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_floatv") ) { lime_al_get_floatv=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_string") ) { lime_al_get_string=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_enabled") ) { lime_al_is_enabled=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listener3f") ) { lime_al_listener3f=ioValue.Cast< ::cpp::Function< void (int,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listener3i") ) { lime_al_listener3i=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listenerfv") ) { lime_al_listenerfv=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_listeneriv") ) { lime_al_listeneriv=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_error") ) { lime_alc_get_error=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_filter") ) { lime_al_gen_filter=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_effect") ) { lime_al_gen_effect=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_in_clip") ) { lime_cairo_in_clip=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_in_fill") ) { lime_cairo_in_fill=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_line_to") ) { lime_cairo_line_to=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_move_to") ) { lime_cairo_move_to=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_restore") ) { lime_cairo_restore=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_version") ) { lime_cairo_version=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_func") ) { lime_gl_blend_func=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_color_mask") ) { lime_gl_color_mask=ioValue.Cast< ::cpp::Function< void (bool,bool,bool,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_depth_func") ) { lime_gl_depth_func=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_depth_mask") ) { lime_gl_depth_mask=ioValue.Cast< ::cpp::Function< void (bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_fence_sync") ) { lime_gl_fence_sync=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_front_face") ) { lime_gl_front_face=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_floatv") ) { lime_gl_get_floatv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_queryi") ) { lime_gl_get_queryi=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_string") ) { lime_gl_get_string=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_enabled") ) { lime_gl_is_enabled=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_program") ) { lime_gl_is_program=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_sampler") ) { lime_gl_is_sampler=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_texture") ) { lime_gl_is_texture=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_line_width") ) { lime_gl_line_width=ioValue.Cast< ::cpp::Function< void (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_op") ) { lime_gl_stencil_op=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1fv") ) { lime_gl_uniform1fv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1iv") ) { lime_gl_uniform1iv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1ui") ) { lime_gl_uniform1ui=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2fv") ) { lime_gl_uniform2fv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2iv") ) { lime_gl_uniform2iv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2ui") ) { lime_gl_uniform2ui=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3fv") ) { lime_gl_uniform3fv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3iv") ) { lime_gl_uniform3iv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3ui") ) { lime_gl_uniform3ui=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4fv") ) { lime_gl_uniform4fv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4iv") ) { lime_gl_uniform4iv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4ui") ) { lime_gl_uniform4ui=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add") ) { lime_hb_buffer_add=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_create") ) { lime_hb_set_create=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_invert") ) { lime_hb_set_invert=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
break;
case 19:
if (HX_FIELD_EQ(inName,"lime_font_load_file") ) { lime_font_load_file=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_haptic_vibrate") ) { lime_haptic_vibrate=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_buffer_data") ) { lime_al_buffer_data=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_sources") ) { lime_al_gen_sources=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_boolean") ) { lime_al_get_boolean=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_gen_buffers") ) { lime_al_gen_buffers=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferf") ) { lime_al_get_bufferf=ioValue.Cast< ::cpp::Function< float ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferi") ) { lime_al_get_bufferi=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_doublev") ) { lime_al_get_doublev=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_integer") ) { lime_al_get_integer=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourcef") ) { lime_al_get_sourcef=ioValue.Cast< ::cpp::Function< float ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourcei") ) { lime_al_get_sourcei=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_play") ) { lime_al_source_play=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_stop") ) { lime_al_source_stop=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_string") ) { lime_alc_get_string=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_filteri") ) { lime_al_get_filteri=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_remove_send") ) { lime_al_remove_send=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_curve_to") ) { lime_cairo_curve_to=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_dash") ) { lime_cairo_get_dash=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_new_path") ) { lime_cairo_new_path=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_dash") ) { lime_cairo_set_dash=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_init") ) { lime_curl_easy_init=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_recv") ) { lime_curl_easy_recv=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_send") ) { lime_curl_easy_send=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_begin_query") ) { lime_gl_begin_query=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_buffer") ) { lime_gl_bind_buffer=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_color") ) { lime_gl_blend_color=ioValue.Cast< ::cpp::Function< void (float,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_buffer_data") ) { lime_gl_buffer_data=ioValue.Cast< ::cpp::Function< void (int,int,Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_color") ) { lime_gl_clear_color=ioValue.Cast< ::cpp::Function< void (float,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_sync") ) { lime_gl_delete_sync=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_arrays") ) { lime_gl_draw_arrays=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_boolean") ) { lime_gl_get_boolean=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integer") ) { lime_gl_get_integer=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_queryiv") ) { lime_gl_get_queryiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shaderi") ) { lime_gl_get_shaderi=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_stringi") ) { lime_gl_get_stringi=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_read_buffer") ) { lime_gl_read_buffer=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_read_pixels") ) { lime_gl_read_pixels=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform1uiv") ) { lime_gl_uniform1uiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform2uiv") ) { lime_gl_uniform2uiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform3uiv") ) { lime_gl_uniform3uiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform4uiv") ) { lime_gl_uniform4uiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_use_program") ) { lime_gl_use_program=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_create") ) { lime_hb_blob_create=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_create") ) { lime_hb_face_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_create") ) { lime_hb_font_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_max") ) { lime_hb_set_get_max=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_min") ) { lime_hb_set_get_min=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
break;
case 20:
if (HX_FIELD_EQ(inName,"lime_audio_load_file") ) { lime_audio_load_file=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_bytes_read_file") ) { lime_bytes_read_file=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_height") ) { lime_font_get_height=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_load_bytes") ) { lime_font_load_bytes=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gzip_decompress") ) { lime_gzip_decompress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_load_file") ) { lime_image_load_file=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_lzma_decompress") ) { lime_lzma_decompress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_png_decode_file") ) { lime_png_decode_file=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_open_url") ) { lime_system_open_url=ioValue.Cast< ::cpp::Function< void (::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_icon") ) { lime_window_set_icon=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_zlib_decompress") ) { lime_zlib_decompress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_booleanv") ) { lime_al_get_booleanv=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_buffer3f") ) { lime_al_get_buffer3f=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_buffer3i") ) { lime_al_get_buffer3i=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferfv") ) { lime_al_get_bufferfv=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_bufferiv") ) { lime_al_get_bufferiv=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_integerv") ) { lime_al_get_integerv=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_source3f") ) { lime_al_get_source3f=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_source3i") ) { lime_al_get_source3i=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourcefv") ) { lime_al_get_sourcefv=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_sourceiv") ) { lime_al_get_sourceiv=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_pause") ) { lime_al_source_pause=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_playv") ) { lime_al_source_playv=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_stopv") ) { lime_al_source_stopv=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_open_device") ) { lime_alc_open_device=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_copy_page") ) { lime_cairo_copy_page=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_in_stroke") ) { lime_cairo_in_stroke=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pop_group") ) { lime_cairo_pop_group=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rectangle") ) { lime_cairo_rectangle=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_show_page") ) { lime_cairo_show_page=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_show_text") ) { lime_cairo_show_text=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_text_path") ) { lime_cairo_text_path=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_transform") ) { lime_cairo_transform=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_translate") ) { lime_cairo_translate=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_flush") ) { lime_curl_easy_flush=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_pause") ) { lime_curl_easy_pause=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_reset") ) { lime_curl_easy_reset=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_init") ) { lime_curl_multi_init=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_wait") ) { lime_curl_multi_wait=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_sampler") ) { lime_gl_bind_sampler=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_texture") ) { lime_gl_bind_texture=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_depthf") ) { lime_gl_clear_depthf=ioValue.Cast< ::cpp::Function< void (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_query") ) { lime_gl_create_query=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_query") ) { lime_gl_delete_query=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_depth_rangef") ) { lime_gl_depth_rangef=ioValue.Cast< ::cpp::Function< void (float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_buffers") ) { lime_gl_draw_buffers=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_booleanv") ) { lime_gl_get_booleanv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integerv") ) { lime_gl_get_integerv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_programi") ) { lime_gl_get_programi=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shaderiv") ) { lime_gl_get_shaderiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformf") ) { lime_gl_get_uniformf=ioValue.Cast< ::cpp::Function< float (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformi") ) { lime_gl_get_uniformi=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_link_program") ) { lime_gl_link_program=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_pixel_storei") ) { lime_gl_pixel_storei=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_func") ) { lime_gl_stencil_func=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_mask") ) { lime_gl_stencil_mask=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_image_2d") ) { lime_gl_tex_image_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_image_3d") ) { lime_gl_tex_image_3d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_unmap_buffer") ) { lime_gl_unmap_buffer=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_reset") ) { lime_hb_buffer_reset=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_is_empty") ) { lime_hb_set_is_empty=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_is_equal") ) { lime_hb_set_is_equal=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_subtract") ) { lime_hb_set_subtract=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 21:
if (HX_FIELD_EQ(inName,"lime_application_exec") ) { lime_application_exec=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_application_init") ) { lime_application_init=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_application_quit") ) { lime_application_quit=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_audio_load_bytes") ) { lime_audio_load_bytes=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_deflate_compress") ) { lime_deflate_compress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_load_bytes") ) { lime_image_load_bytes=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_jpeg_decode_file") ) { lime_jpeg_decode_file=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_png_decode_bytes") ) { lime_png_decode_bytes=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_timer") ) { lime_system_get_timer=ioValue.Cast< ::cpp::Function< Float () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_open_file") ) { lime_system_open_file=ioValue.Cast< ::cpp::Function< void (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_scale") ) { lime_window_get_scale=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_width") ) { lime_window_get_width=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_title") ) { lime_window_set_title=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_buffer") ) { lime_al_delete_buffer=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_source") ) { lime_al_delete_source=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listenerf") ) { lime_al_get_listenerf=ioValue.Cast< ::cpp::Function< float (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listeneri") ) { lime_al_get_listeneri=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_pausev") ) { lime_al_source_pausev=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_rewind") ) { lime_al_source_rewind=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_close_device") ) { lime_alc_close_device=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_integerv") ) { lime_alc_get_integerv=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_pause_device") ) { lime_alc_pause_device=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_close_path") ) { lime_cairo_close_path=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_matrix") ) { lime_cairo_get_matrix=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_source") ) { lime_cairo_get_source=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_target") ) { lime_cairo_get_target=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_push_group") ) { lime_cairo_push_group=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_reset_clip") ) { lime_cairo_reset_clip=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_matrix") ) { lime_cairo_set_matrix=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source") ) { lime_cairo_set_source=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_global_init") ) { lime_curl_global_init=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_escape") ) { lime_curl_easy_escape=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_setopt") ) { lime_curl_easy_setopt=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_attach_shader") ) { lime_gl_attach_shader=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_stencil") ) { lime_gl_clear_stencil=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_buffer") ) { lime_gl_create_buffer=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_shader") ) { lime_gl_create_shader=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_buffer") ) { lime_gl_delete_buffer=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_shader") ) { lime_gl_delete_shader=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_detach_shader") ) { lime_gl_detach_shader=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_elements") ) { lime_gl_draw_elements=ioValue.Cast< ::cpp::Function< void (int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_extension") ) { lime_gl_get_extension=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_programiv") ) { lime_gl_get_programiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformfv") ) { lime_gl_get_uniformfv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformiv") ) { lime_gl_get_uniformiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformui") ) { lime_gl_get_uniformui=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_shader_binary") ) { lime_gl_shader_binary=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_shader_source") ) { lime_gl_shader_source=ioValue.Cast< ::cpp::Function< void (int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_data") ) { lime_hb_blob_get_data=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_create") ) { lime_hb_buffer_create=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_upem") ) { lime_hb_face_get_upem=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_set_upem") ) { lime_hb_face_set_upem=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_face") ) { lime_hb_font_get_face=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_ppem") ) { lime_hb_font_get_ppem=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_set_ppem") ) { lime_hb_font_set_ppem=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_add_range") ) { lime_hb_set_add_range=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_del_range") ) { lime_hb_set_del_range=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_empty") ) { lime_hb_set_get_empty=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_intersect") ) { lime_hb_set_intersect=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_info") ) { lime_vorbis_file_info=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_read") ) { lime_vorbis_file_read=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int,int,bool,int,bool) > >(); return true; }
break;
case 22:
if (HX_FIELD_EQ(inName,"lime_font_get_ascender") ) { lime_font_get_ascender=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_render_glyph") ) { lime_font_render_glyph=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_jpeg_decode_bytes") ) { lime_jpeg_decode_bytes=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_height") ) { lime_window_get_height=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_cursor") ) { lime_window_set_cursor=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_warp_mouse") ) { lime_window_warp_mouse=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_buffers") ) { lime_al_delete_buffers=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_delete_sources") ) { lime_al_delete_sources=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_distance_model") ) { lime_al_distance_model=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_doppler_factor") ) { lime_al_doppler_factor=ioValue.Cast< ::cpp::Function< void (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_enum_value") ) { lime_al_get_enum_value=ioValue.Cast< ::cpp::Function< int (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listener3f") ) { lime_al_get_listener3f=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listener3i") ) { lime_al_get_listener3i=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listenerfv") ) { lime_al_get_listenerfv=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_listeneriv") ) { lime_al_get_listeneriv=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_rewindv") ) { lime_al_source_rewindv=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_speed_of_sound") ) { lime_al_speed_of_sound=ioValue.Cast< ::cpp::Function< void (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_resume_device") ) { lime_alc_resume_device=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rel_line_to") ) { lime_cairo_rel_line_to=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rel_move_to") ) { lime_cairo_rel_move_to=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_show_glyphs") ) { lime_cairo_show_glyphs=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_version_info") ) { lime_curl_version_info=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_cleanup") ) { lime_curl_easy_cleanup=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_getinfo") ) { lime_curl_easy_getinfo=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_perform") ) { lime_curl_easy_perform=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_setopt") ) { lime_curl_multi_setopt=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_active_texture") ) { lime_gl_active_texture=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_equation") ) { lime_gl_blend_equation=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferfi") ) { lime_gl_clear_bufferfi=ioValue.Cast< ::cpp::Function< void (int,int,float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferfv") ) { lime_gl_clear_bufferfv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferiv") ) { lime_gl_clear_bufferiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compile_shader") ) { lime_gl_compile_shader=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_program") ) { lime_gl_create_program=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_sampler") ) { lime_gl_create_sampler=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_texture") ) { lime_gl_create_texture=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_program") ) { lime_gl_delete_program=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_sampler") ) { lime_gl_delete_sampler=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_texture") ) { lime_gl_delete_texture=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integer64v") ) { lime_gl_get_integer64v=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integeri_v") ) { lime_gl_get_integeri_v=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniformuiv") ) { lime_gl_get_uniformuiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_framebuffer") ) { lime_gl_is_framebuffer=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_object_from_id") ) { lime_gl_object_from_id=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_polygon_offset") ) { lime_gl_polygon_offset=ioValue.Cast< ::cpp::Function< void (float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_program_binary") ) { lime_gl_program_binary=ioValue.Cast< ::cpp::Function< void (int,int,Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_parameterf") ) { lime_gl_tex_parameterf=ioValue.Cast< ::cpp::Function< void (int,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_parameteri") ) { lime_gl_tex_parameteri=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_storage_2d") ) { lime_gl_tex_storage_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_storage_3d") ) { lime_gl_tex_storage_3d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_empty") ) { lime_hb_blob_get_empty=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_reverse") ) { lime_hb_buffer_reverse=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_empty") ) { lime_hb_face_get_empty=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_index") ) { lime_hb_face_get_index=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_set_index") ) { lime_hb_face_set_index=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_empty") ) { lime_hb_font_get_empty=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_scale") ) { lime_hb_font_get_scale=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_set_scale") ) { lime_hb_font_set_scale=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_create") ) { lime_hb_ft_font_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_next_range") ) { lime_hb_set_next_range=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_clear") ) { lime_vorbis_file_clear=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
break;
case 23:
if (HX_FIELD_EQ(inName,"lime_application_create") ) { lime_application_create=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_application_update") ) { lime_application_update=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_clipboard_get_text") ) { lime_clipboard_get_text=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_clipboard_set_text") ) { lime_clipboard_set_text=ioValue.Cast< ::cpp::Function< void (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_deflate_decompress") ) { lime_deflate_decompress=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_descender") ) { lime_font_get_descender=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_render_glyphs") ) { lime_font_render_glyphs=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_display") ) { lime_system_get_display=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_context") ) { lime_window_get_context=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_display") ) { lime_window_get_display=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_read_pixels") ) { lime_window_read_pixels=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_create_context") ) { lime_alc_create_context=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_arc_negative") ) { lime_cairo_arc_negative=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_clip_extents") ) { lime_cairo_clip_extents=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_fill_extents") ) { lime_cairo_fill_extents=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_line_cap") ) { lime_cairo_get_line_cap=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_operator") ) { lime_cairo_get_operator=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_mask_surface") ) { lime_cairo_mask_surface=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_rel_curve_to") ) { lime_cairo_rel_curve_to=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_line_cap") ) { lime_cairo_set_line_cap=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_operator") ) { lime_cairo_set_operator=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_strerror") ) { lime_curl_easy_strerror=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_unescape") ) { lime_curl_easy_unescape=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_perform") ) { lime_curl_multi_perform=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_buffer_sub_data") ) { lime_gl_buffer_sub_data=ioValue.Cast< ::cpp::Function< void (int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_clear_bufferuiv") ) { lime_gl_clear_bufferuiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_generate_mipmap") ) { lime_gl_generate_mipmap=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_renderbuffer") ) { lime_gl_is_renderbuffer=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_vertex_array") ) { lime_gl_is_vertex_array=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_object_register") ) { lime_gl_object_register=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_sample_coverage") ) { lime_gl_sample_coverage=ioValue.Cast< ::cpp::Function< void (float,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib1f") ) { lime_gl_vertex_attrib1f=ioValue.Cast< ::cpp::Function< void (int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib2f") ) { lime_gl_vertex_attrib2f=ioValue.Cast< ::cpp::Function< void (int,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib3f") ) { lime_gl_vertex_attrib3f=ioValue.Cast< ::cpp::Function< void (int,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib4f") ) { lime_gl_vertex_attrib4f=ioValue.Cast< ::cpp::Function< void (int,float,float,float,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_length") ) { lime_hb_blob_get_length=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_utf8") ) { lime_hb_buffer_add_utf8=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,::String,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_parent") ) { lime_hb_font_get_parent=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
break;
case 24:
if (HX_FIELD_EQ(inName,"lime_data_pointer_offset") ) { lime_data_pointer_offset=ioValue.Cast< ::cpp::Function< Float (Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_create") ) { lime_file_watcher_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_update") ) { lime_file_watcher_update=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_num_glyphs") ) { lime_font_get_num_glyphs=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_flip") ) { lime_window_context_flip=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_lock") ) { lime_window_context_lock=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_doppler_velocity") ) { lime_al_doppler_velocity=ioValue.Cast< ::cpp::Function< void (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_get_proc_address") ) { lime_al_get_proc_address=ioValue.Cast< ::cpp::Function< Float (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_destroy_context") ) { lime_alc_destroy_context=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_process_context") ) { lime_alc_process_context=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_suspend_context") ) { lime_alc_suspend_context=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_clip_preserve") ) { lime_cairo_clip_preserve=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_fill_preserve") ) { lime_cairo_fill_preserve=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_antialias") ) { lime_cairo_get_antialias=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_fill_rule") ) { lime_cairo_get_fill_rule=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_font_face") ) { lime_cairo_get_font_face=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_line_join") ) { lime_cairo_get_line_join=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_tolerance") ) { lime_cairo_get_tolerance=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_antialias") ) { lime_cairo_set_antialias=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_fill_rule") ) { lime_cairo_set_fill_rule=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_font_face") ) { lime_cairo_set_font_face=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_font_size") ) { lime_cairo_set_font_size=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_line_join") ) { lime_cairo_set_line_join=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_tolerance") ) { lime_cairo_set_tolerance=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_surface_flush") ) { lime_cairo_surface_flush=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_global_cleanup") ) { lime_curl_global_cleanup=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_easy_duphandle") ) { lime_curl_easy_duphandle=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_buffer_base") ) { lime_gl_bind_buffer_base=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_framebuffer") ) { lime_gl_bind_framebuffer=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blit_framebuffer") ) { lime_gl_blit_framebuffer=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_client_wait_sync") ) { lime_gl_client_wait_sync=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_integer64i_v") ) { lime_gl_get_integer64i_v=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_map_buffer_range") ) { lime_gl_map_buffer_range=ioValue.Cast< ::cpp::Function< Float (int,Float,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_sub_image_2d") ) { lime_gl_tex_sub_image_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_tex_sub_image_3d") ) { lime_gl_tex_sub_image_3d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_validate_program") ) { lime_gl_validate_program=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib1fv") ) { lime_gl_vertex_attrib1fv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib2fv") ) { lime_gl_vertex_attrib2fv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib3fv") ) { lime_gl_vertex_attrib3fv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib4fv") ) { lime_gl_vertex_attrib4fv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4i") ) { lime_gl_vertex_attribi4i=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_utf16") ) { lime_hb_buffer_add_utf16=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_utf32") ) { lime_hb_buffer_add_utf32=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_empty") ) { lime_hb_buffer_get_empty=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_flags") ) { lime_hb_buffer_get_flags=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_flags") ) { lime_hb_buffer_set_flags=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_bitrate") ) { lime_vorbis_file_bitrate=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_comment") ) { lime_vorbis_file_comment=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_streams") ) { lime_vorbis_file_streams=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
break;
case 25:
if (HX_FIELD_EQ(inName,"lime_font_get_family_name") ) { lime_font_get_family_name=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_glyph_index") ) { lime_font_get_glyph_index=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gamepad_add_mappings") ) { lime_gamepad_add_mappings=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_directory") ) { lime_system_get_directory=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_maximized") ) { lime_window_set_maximized=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_minimized") ) { lime_window_set_minimized=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_resizable") ) { lime_window_set_resizable=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_dash_count") ) { lime_cairo_get_dash_count=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_line_width") ) { lime_cairo_get_line_width=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_line_width") ) { lime_cairo_set_line_width=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source_rgb") ) { lime_cairo_set_source_rgb=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_stroke_extents") ) { lime_cairo_stroke_extents=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_version_string") ) { lime_cairo_version_string=ioValue.Cast< ::cpp::Function< ::String () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_info_read") ) { lime_curl_multi_info_read=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_buffer_range") ) { lime_gl_bind_buffer_range=ioValue.Cast< ::cpp::Function< void (int,int,int,Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_renderbuffer") ) { lime_gl_bind_renderbuffer=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_vertex_array") ) { lime_gl_bind_vertex_array=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_tex_image_2d") ) { lime_gl_copy_tex_image_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_attrib") ) { lime_gl_get_active_attrib=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shader_source") ) { lime_gl_get_shader_source=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_object_deregister") ) { lime_gl_object_deregister=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix2fv") ) { lime_gl_uniform_matrix2fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix3fv") ) { lime_gl_uniform_matrix3fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix4fv") ) { lime_gl_uniform_matrix4fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4iv") ) { lime_gl_vertex_attribi4iv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4ui") ) { lime_gl_vertex_attribi4ui=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_is_immutable") ) { lime_hb_blob_is_immutable=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_length") ) { lime_hb_buffer_get_length=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_script") ) { lime_hb_buffer_get_script=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_length") ) { lime_hb_buffer_set_length=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_script") ) { lime_hb_buffer_set_script=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_is_immutable") ) { lime_hb_face_is_immutable=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_feature_to_string") ) { lime_hb_feature_to_string=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_is_immutable") ) { lime_hb_font_is_immutable=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_crosslap") ) { lime_vorbis_file_crosslap=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek") ) { lime_vorbis_file_pcm_seek=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_seek") ) { lime_vorbis_file_raw_seek=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_tell") ) { lime_vorbis_file_pcm_tell=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_tell") ) { lime_vorbis_file_raw_tell=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_seekable") ) { lime_vorbis_file_seekable=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
break;
case 26:
if (HX_FIELD_EQ(inName,"lime_file_dialog_open_file") ) { lime_file_dialog_open_file=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String,::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_dialog_save_file") ) { lime_file_dialog_save_file=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String,::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_units_per_em") ) { lime_font_get_units_per_em=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_merge") ) { lime_image_data_util_merge=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_axes") ) { lime_joystick_get_num_axes=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_hats") ) { lime_joystick_get_num_hats=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_key_code_to_scan_code") ) { lime_key_code_to_scan_code=ioValue.Cast< ::cpp::Function< float (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_ios_tablet") ) { lime_system_get_ios_tablet=ioValue.Cast< ::cpp::Function< bool () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_unlock") ) { lime_window_context_unlock=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_mouse_lock") ) { lime_window_get_mouse_lock=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_borderless") ) { lime_window_set_borderless=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_fullscreen") ) { lime_window_set_fullscreen=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_mouse_lock") ) { lime_window_set_mouse_lock=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_miter_limit") ) { lime_cairo_get_miter_limit=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_identity_matrix") ) { lime_cairo_identity_matrix=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_miter_limit") ) { lime_cairo_set_miter_limit=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source_rgba") ) { lime_cairo_set_source_rgba=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_stroke_preserve") ) { lime_cairo_stroke_preserve=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_add_handle") ) { lime_curl_multi_add_handle=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_framebuffer") ) { lime_gl_create_framebuffer=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_framebuffer") ) { lime_gl_delete_framebuffer=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform") ) { lime_gl_get_active_uniform=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_program_binary") ) { lime_gl_get_program_binary=ioValue.Cast< ::cpp::Function< void (int,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_query_objectui") ) { lime_gl_get_query_objectui=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameterf") ) { lime_gl_get_tex_parameterf=ioValue.Cast< ::cpp::Function< float (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameteri") ) { lime_gl_get_tex_parameteri=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribf") ) { lime_gl_get_vertex_attribf=ioValue.Cast< ::cpp::Function< float (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribi") ) { lime_gl_get_vertex_attribi=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_program_parameteri") ) { lime_gl_program_parameteri=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_sampler_parameterf") ) { lime_gl_sampler_parameterf=ioValue.Cast< ::cpp::Function< void (int,int,float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_sampler_parameteri") ) { lime_gl_sampler_parameteri=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attribi4uiv") ) { lime_gl_vertex_attribi4uiv=ioValue.Cast< ::cpp::Function< void (int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_preallocate") ) { lime_hb_buffer_preallocate=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_language_to_string") ) { lime_hb_language_to_string=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_get_population") ) { lime_hb_set_get_population=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_from_file") ) { lime_vorbis_file_from_file=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_total") ) { lime_vorbis_file_pcm_total=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_total") ) { lime_vorbis_file_raw_total=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek") ) { lime_vorbis_file_time_seek=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_tell") ) { lime_vorbis_file_time_tell=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
break;
case 27:
if (HX_FIELD_EQ(inName,"lime_bytes_get_data_pointer") ) { lime_bytes_get_data_pointer=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_dialog_open_files") ) { lime_file_dialog_open_files=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String,::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_glyph_indices") ) { lime_font_get_glyph_indices=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_glyph_metrics") ) { lime_font_get_glyph_metrics=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_outline_decompose") ) { lime_font_outline_decompose=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_resize") ) { lime_image_data_util_resize=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_font_options") ) { lime_cairo_get_font_options=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_group_target") ) { lime_cairo_get_group_target=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_paint_with_alpha") ) { lime_cairo_paint_with_alpha=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_font_options") ) { lime_cairo_set_font_options=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_face_status") ) { lime_cairo_font_face_status=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_func_separate") ) { lime_gl_blend_func_separate=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_renderbuffer") ) { lime_gl_create_renderbuffer=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_vertex_array") ) { lime_gl_create_vertex_array=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_renderbuffer") ) { lime_gl_delete_renderbuffer=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_vertex_array") ) { lime_gl_delete_vertex_array=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_range_elements") ) { lime_gl_draw_range_elements=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_attrib_location") ) { lime_gl_get_attrib_location=ioValue.Cast< ::cpp::Function< int (int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_pointerv") ) { lime_gl_get_buffer_pointerv=ioValue.Cast< ::cpp::Function< Float (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_sub_data") ) { lime_gl_get_buffer_sub_data=ioValue.Cast< ::cpp::Function< void (int,Float,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_query_objectuiv") ) { lime_gl_get_query_objectuiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shader_info_log") ) { lime_gl_get_shader_info_log=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sync_parameteri") ) { lime_gl_get_sync_parameteri=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameterfv") ) { lime_gl_get_tex_parameterfv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_tex_parameteriv") ) { lime_gl_get_tex_parameteriv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribfv") ) { lime_gl_get_vertex_attribfv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiv") ) { lime_gl_get_vertex_attribiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribii") ) { lime_gl_get_vertex_attribii=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_op_separate") ) { lime_gl_stencil_op_separate=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix2x3fv") ) { lime_gl_uniform_matrix2x3fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix2x4fv") ) { lime_gl_uniform_matrix2x4fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix3x2fv") ) { lime_gl_uniform_matrix3x2fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix3x4fv") ) { lime_gl_uniform_matrix3x4fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix4x2fv") ) { lime_gl_uniform_matrix4x2fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_matrix4x3fv") ) { lime_gl_uniform_matrix4x3fv=ioValue.Cast< ::cpp::Function< void (int,int,bool,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_make_immutable") ) { lime_hb_blob_make_immutable=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_language") ) { lime_hb_buffer_get_language=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_language") ) { lime_hb_buffer_set_language=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_make_immutable") ) { lime_hb_face_make_immutable=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_reference_blob") ) { lime_hb_face_reference_blob=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_feature_from_string") ) { lime_hb_feature_from_string=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_make_immutable") ) { lime_hb_font_make_immutable=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_from_bytes") ) { lime_vorbis_file_from_bytes=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_read_float") ) { lime_vorbis_file_read_float=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_total") ) { lime_vorbis_file_time_total=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *,int) > >(); return true; }
break;
case 28:
if (HX_FIELD_EQ(inName,"lime_bytes_from_data_pointer") ) { lime_bytes_from_data_pointer=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cffi_get_native_pointer") ) { lime_cffi_get_native_pointer=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gamepad_get_device_guid") ) { lime_gamepad_get_device_guid=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gamepad_get_device_name") ) { lime_gamepad_get_device_name=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_key_code_from_scan_code") ) { lime_key_code_from_scan_code=ioValue.Cast< ::cpp::Function< float (float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_device_model") ) { lime_system_get_device_model=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_num_displays") ) { lime_system_get_num_displays=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_context_type") ) { lime_window_get_context_type=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_display_mode") ) { lime_window_get_display_mode=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_display_mode") ) { lime_window_set_display_mode=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_is_extension_present") ) { lime_al_is_extension_present=ioValue.Cast< ::cpp::Function< bool (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_queue_buffers") ) { lime_al_source_queue_buffers=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_contexts_device") ) { lime_alc_get_contexts_device=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_get_current_context") ) { lime_alc_get_current_context=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_remove_direct_filter") ) { lime_al_remove_direct_filter=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_get_current_point") ) { lime_cairo_get_current_point=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_has_current_point") ) { lime_cairo_has_current_point=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_attrib_location") ) { lime_gl_bind_attrib_location=ioValue.Cast< ::cpp::Function< void (int,int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_buffer_sub_data") ) { lime_gl_copy_buffer_sub_data=ioValue.Cast< ::cpp::Function< void (int,int,Float,Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_attached_shaders") ) { lime_gl_get_attached_shaders=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_internalformativ") ) { lime_gl_get_internalformativ=ioValue.Cast< ::cpp::Function< void (int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_program_info_log") ) { lime_gl_get_program_info_log=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sync_parameteriv") ) { lime_gl_get_sync_parameteriv=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniform_location") ) { lime_gl_get_uniform_location=ioValue.Cast< ::cpp::Function< int (int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiiv") ) { lime_gl_get_vertex_attribiiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiui") ) { lime_gl_get_vertex_attribiui=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_renderbuffer_storage") ) { lime_gl_renderbuffer_storage=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_create_sub_blob") ) { lime_hb_blob_create_sub_blob=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_direction") ) { lime_hb_buffer_get_direction=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_direction") ) { lime_hb_buffer_set_direction=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_get_glyph_count") ) { lime_hb_face_get_glyph_count=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_reference_table") ) { lime_hb_face_reference_table=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_face_set_glyph_count") ) { lime_hb_face_set_glyph_count=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_create_sub_font") ) { lime_hb_font_create_sub_font=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_glyph_to_string") ) { lime_hb_font_glyph_to_string=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_language_from_string") ) { lime_hb_language_from_string=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_language_get_default") ) { lime_hb_language_get_default=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
break;
case 29:
if (HX_FIELD_EQ(inName,"lime_joystick_get_device_guid") ) { lime_joystick_get_device_guid=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_device_name") ) { lime_joystick_get_device_name=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_buttons") ) { lime_joystick_get_num_buttons=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_device_vendor") ) { lime_system_get_device_vendor=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_platform_name") ) { lime_system_get_platform_name=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_alc_make_context_current") ) { lime_alc_make_context_current=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_set_source_surface") ) { lime_cairo_set_source_surface=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_rgb") ) { lime_cairo_pattern_create_rgb=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_extend") ) { lime_cairo_pattern_get_extend=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_filter") ) { lime_cairo_pattern_get_filter=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_matrix") ) { lime_cairo_pattern_get_matrix=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_set_extend") ) { lime_cairo_pattern_set_extend=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_set_filter") ) { lime_cairo_pattern_set_filter=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_set_matrix") ) { lime_cairo_pattern_set_matrix=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_remove_handle") ) { lime_curl_multi_remove_handle=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_tex_sub_image_2d") ) { lime_gl_copy_tex_sub_image_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_copy_tex_sub_image_3d") ) { lime_gl_copy_tex_sub_image_3d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_arrays_instanced") ) { lime_gl_draw_arrays_instanced=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_framebuffer_texture2D") ) { lime_gl_framebuffer_texture2D=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniformsiv") ) { lime_gl_get_active_uniformsiv=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_parameteri") ) { lime_gl_get_buffer_parameteri=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attribiuiv") ) { lime_gl_get_vertex_attribiuiv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_is_transform_feedback") ) { lime_gl_is_transform_feedback=ioValue.Cast< ::cpp::Function< bool (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_func_separate") ) { lime_gl_stencil_func_separate=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_stencil_mask_separate") ) { lime_gl_stencil_mask_separate=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_uniform_block_binding") ) { lime_gl_uniform_block_binding=ioValue.Cast< ::cpp::Function< void (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib_divisor") ) { lime_gl_vertex_attrib_divisor=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib_pointer") ) { lime_gl_vertex_attrib_pointer=ioValue.Cast< ::cpp::Function< void (int,int,int,bool,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_add_codepoints") ) { lime_hb_buffer_add_codepoints=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_clear_contents") ) { lime_hb_buffer_clear_contents=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek_lap") ) { lime_vorbis_file_pcm_seek_lap=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_raw_seek_lap") ) { lime_vorbis_file_raw_seek_lap=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 30:
if (HX_FIELD_EQ(inName,"lime_image_data_util_fill_rect") ) { lime_image_data_util_fill_rect=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_threshold") ) { lime_image_data_util_threshold=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int,int,int,int,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_platform_label") ) { lime_system_get_platform_label=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_al_source_unqueue_buffers") ) { lime_al_source_unqueue_buffers=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pop_group_to_source") ) { lime_cairo_pop_group_to_source=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_create") ) { lime_cairo_font_options_create=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_ft_font_face_create") ) { lime_cairo_ft_font_face_create=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_rgba") ) { lime_cairo_pattern_create_rgba=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_end_transform_feedback") ) { lime_gl_end_transform_feedback=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_parameteriv") ) { lime_gl_get_buffer_parameteriv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_context_attributes") ) { lime_gl_get_context_attributes=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_frag_data_location") ) { lime_gl_get_frag_data_location=ioValue.Cast< ::cpp::Function< int (int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameterf") ) { lime_gl_get_sampler_parameterf=ioValue.Cast< ::cpp::Function< float (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameteri") ) { lime_gl_get_sampler_parameteri=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_invalidate_framebuffer") ) { lime_gl_invalidate_framebuffer=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_vertex_attrib_ipointer") ) { lime_gl_vertex_attrib_ipointer=ioValue.Cast< ::cpp::Function< void (int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_blob_get_data_writable") ) { lime_hb_blob_get_data_writable=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_glyph_infos") ) { lime_hb_buffer_get_glyph_infos=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_glyph_from_string") ) { lime_hb_font_glyph_from_string=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_get_load_flags") ) { lime_hb_ft_font_get_load_flags=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_set_load_flags") ) { lime_hb_ft_font_set_load_flags=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek_page") ) { lime_vorbis_file_pcm_seek_page=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_serial_number") ) { lime_vorbis_file_serial_number=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek_lap") ) { lime_vorbis_file_time_seek_lap=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,Float) > >(); return true; }
break;
case 31:
if (HX_FIELD_EQ(inName,"lime_application_set_frame_rate") ) { lime_application_set_frame_rate=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_dialog_open_directory") ) { lime_file_dialog_open_directory=ioValue.Cast< ::cpp::Function< ::hx::Object * (::String,::String,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_add_directory") ) { lime_file_watcher_add_directory=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_flood_fill") ) { lime_image_data_util_flood_fill=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_get_pixels") ) { lime_image_data_util_get_pixels=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_set_format") ) { lime_image_data_util_set_format=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_set_pixels") ) { lime_image_data_util_set_pixels=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_key_event_manager_register") ) { lime_key_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_create") ) { lime_cairo_image_surface_create=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_bind_transform_feedback") ) { lime_gl_bind_transform_feedback=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_blend_equation_separate") ) { lime_gl_blend_equation_separate=ioValue.Cast< ::cpp::Function< void (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_image_2d") ) { lime_gl_compressed_tex_image_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_image_3d") ) { lime_gl_compressed_tex_image_3d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_draw_elements_instanced") ) { lime_gl_draw_elements_instanced=ioValue.Cast< ::cpp::Function< void (int,int,int,Float,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameterfv") ) { lime_gl_get_sampler_parameterfv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_sampler_parameteriv") ) { lime_gl_get_sampler_parameteriv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_uniform_block_index") ) { lime_gl_get_uniform_block_index=ioValue.Cast< ::cpp::Function< int (int,::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_release_shader_compiler") ) { lime_gl_release_shader_compiler=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_content_type") ) { lime_hb_buffer_get_content_type=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_normalize_glyphs") ) { lime_hb_buffer_normalize_glyphs=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_reverse_clusters") ) { lime_hb_buffer_reverse_clusters=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_content_type") ) { lime_hb_buffer_set_content_type=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_segment_properties_hash") ) { lime_hb_segment_properties_hash=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek_page") ) { lime_vorbis_file_time_seek_page=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,Float) > >(); return true; }
break;
case 32:
if (HX_FIELD_EQ(inName,"lime_drop_event_manager_register") ) { lime_drop_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_font_get_underline_position") ) { lime_font_get_underline_position=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_copy_pixels") ) { lime_image_data_util_copy_pixels=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_get_num_trackballs") ) { lime_joystick_get_num_trackballs=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_platform_version") ) { lime_system_get_platform_version=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_text_event_manager_register") ) { lime_text_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_context_make_current") ) { lime_window_context_make_current=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_linear") ) { lime_cairo_pattern_create_linear=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_radial") ) { lime_cairo_pattern_create_radial=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_begin_transform_feedback") ) { lime_gl_begin_transform_feedback=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_check_framebuffer_status") ) { lime_gl_check_framebuffer_status=ioValue.Cast< ::cpp::Function< int (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_framebuffer_renderbuffer") ) { lime_gl_framebuffer_renderbuffer=ioValue.Cast< ::cpp::Function< void (int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_buffer_parameteri64v") ) { lime_gl_get_buffer_parameteri64v=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_pause_transform_feedback") ) { lime_gl_pause_transform_feedback=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_cluster_level") ) { lime_hb_buffer_get_cluster_level=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_cluster_level") ) { lime_hb_buffer_set_cluster_level=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_segment_properties_equal") ) { lime_hb_segment_properties_equal=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_symmetric_difference") ) { lime_hb_set_symmetric_difference=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_bitrate_instant") ) { lime_vorbis_file_bitrate_instant=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
break;
case 33:
if (HX_FIELD_EQ(inName,"lime_font_get_underline_thickness") ) { lime_font_get_underline_thickness=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_copy_channel") ) { lime_image_data_util_copy_channel=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_mouse_event_manager_register") ) { lime_mouse_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_touch_event_manager_register") ) { lime_touch_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_data") ) { lime_cairo_image_surface_get_data=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_create_transform_feedback") ) { lime_gl_create_transform_feedback=ioValue.Cast< ::cpp::Function< int () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_delete_transform_feedback") ) { lime_gl_delete_transform_feedback=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_framebuffer_texture_layer") ) { lime_gl_framebuffer_texture_layer=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform_blocki") ) { lime_gl_get_active_uniform_blocki=ioValue.Cast< ::cpp::Function< int (int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_resume_transform_feedback") ) { lime_gl_resume_transform_feedback=ioValue.Cast< ::cpp::Function< void () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_ft_font_create_referenced") ) { lime_hb_ft_font_create_referenced=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_set_allocation_successful") ) { lime_hb_set_allocation_successful=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
break;
case 34:
if (HX_FIELD_EQ(inName,"lime_bytes_get_data_pointer_offset") ) { lime_bytes_get_data_pointer_offset=ioValue.Cast< ::cpp::Function< Float ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_file_watcher_remove_directory") ) { lime_file_watcher_remove_directory=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_render_event_manager_register") ) { lime_render_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_sensor_event_manager_register") ) { lime_sensor_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_get_text_input_enabled") ) { lime_window_get_text_input_enabled=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_set_text_input_enabled") ) { lime_window_set_text_input_enabled=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_window_event_manager_register") ) { lime_window_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_push_group_with_content") ) { lime_cairo_push_group_with_content=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_width") ) { lime_cairo_image_surface_get_width=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_enable_vertex_attrib_array") ) { lime_gl_enable_vertex_attrib_array=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform_blockiv") ) { lime_gl_get_active_uniform_blockiv=ioValue.Cast< ::cpp::Function< void (int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_vertex_attrib_pointerv") ) { lime_gl_get_vertex_attrib_pointerv=ioValue.Cast< ::cpp::Function< Float (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_invalidate_sub_framebuffer") ) { lime_gl_invalidate_sub_framebuffer=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_glyph_positions") ) { lime_hb_buffer_get_glyph_positions=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_pcm_seek_page_lap") ) { lime_vorbis_file_pcm_seek_page_lap=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 35:
if (HX_FIELD_EQ(inName,"lime_gamepad_event_manager_register") ) { lime_gamepad_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_multiply_alpha") ) { lime_image_data_util_multiply_alpha=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_format") ) { lime_cairo_image_surface_get_format=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_height") ) { lime_cairo_image_surface_get_height=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_get_stride") ) { lime_cairo_image_surface_get_stride=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_curl_multi_get_running_handles") ) { lime_curl_multi_get_running_handles=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_sub_image_2d") ) { lime_gl_compressed_tex_sub_image_2d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_compressed_tex_sub_image_3d") ) { lime_gl_compressed_tex_sub_image_3d=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_disable_vertex_attrib_array") ) { lime_gl_disable_vertex_attrib_array=ioValue.Cast< ::cpp::Function< void (int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_renderbuffer_parameteri") ) { lime_gl_get_renderbuffer_parameteri=ioValue.Cast< ::cpp::Function< int (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_shader_precision_format") ) { lime_gl_get_shader_precision_format=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_transform_feedback_varyings") ) { lime_gl_transform_feedback_varyings=ioValue.Cast< ::cpp::Function< void (int, ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_vorbis_file_time_seek_page_lap") ) { lime_vorbis_file_time_seek_page_lap=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *,Float) > >(); return true; }
break;
case 36:
if (HX_FIELD_EQ(inName,"lime_image_data_util_color_transform") ) { lime_image_data_util_color_transform=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_joystick_event_manager_register") ) { lime_joystick_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_get_allow_screen_timeout") ) { lime_system_get_allow_screen_timeout=ioValue.Cast< ::cpp::Function< bool () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_system_set_allow_screen_timeout") ) { lime_system_set_allow_screen_timeout=ioValue.Cast< ::cpp::Function< bool (bool) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_renderbuffer_parameteriv") ) { lime_gl_get_renderbuffer_parameteriv=ioValue.Cast< ::cpp::Function< void (int,int,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_allocation_successful") ) { lime_hb_buffer_allocation_successful=ioValue.Cast< ::cpp::Function< bool ( ::hx::Object *) > >(); return true; }
break;
case 37:
if (HX_FIELD_EQ(inName,"lime_clipboard_event_manager_register") ) { lime_clipboard_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_image_data_util_unmultiply_alpha") ) { lime_image_data_util_unmultiply_alpha=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_antialias") ) { lime_cairo_font_options_get_antialias=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_antialias") ) { lime_cairo_font_options_set_antialias=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_add_color_stop_rgb") ) { lime_cairo_pattern_add_color_stop_rgb=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_create_for_surface") ) { lime_cairo_pattern_create_for_surface=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_active_uniform_block_name") ) { lime_gl_get_active_uniform_block_name=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_segment_properties") ) { lime_hb_buffer_get_segment_properties=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_serialize_list_formats") ) { lime_hb_buffer_serialize_list_formats=ioValue.Cast< ::cpp::Function< ::hx::Object * () > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_segment_properties") ) { lime_hb_buffer_set_segment_properties=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
break;
case 38:
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_hint_style") ) { lime_cairo_font_options_get_hint_style=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_hint_style") ) { lime_cairo_font_options_set_hint_style=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_add_color_stop_rgba") ) { lime_cairo_pattern_add_color_stop_rgba=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_get_transform_feedback_varying") ) { lime_gl_get_transform_feedback_varying=ioValue.Cast< ::cpp::Function< ::hx::Object * (int,int) > >(); return true; }
break;
case 39:
if (HX_FIELD_EQ(inName,"lime_application_event_manager_register") ) { lime_application_event_manager_register=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_pattern_get_color_stop_count") ) { lime_cairo_pattern_get_color_stop_count=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_guess_segment_properties") ) { lime_hb_buffer_guess_segment_properties=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *) > >(); return true; }
break;
case 40:
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_hint_metrics") ) { lime_cairo_font_options_get_hint_metrics=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_hint_metrics") ) { lime_cairo_font_options_set_hint_metrics=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_image_surface_create_for_data") ) { lime_cairo_image_surface_create_for_data=ioValue.Cast< ::cpp::Function< ::hx::Object * (Float,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_gl_renderbuffer_storage_multisample") ) { lime_gl_renderbuffer_storage_multisample=ioValue.Cast< ::cpp::Function< void (int,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_get_replacement_codepoint") ) { lime_hb_buffer_get_replacement_codepoint=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_buffer_set_replacement_codepoint") ) { lime_hb_buffer_set_replacement_codepoint=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
break;
case 41:
if (HX_FIELD_EQ(inName,"lime_hb_buffer_serialize_format_to_string") ) { lime_hb_buffer_serialize_format_to_string=ioValue.Cast< ::cpp::Function< ::hx::Object * (int) > >(); return true; }
break;
case 42:
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_get_subpixel_order") ) { lime_cairo_font_options_get_subpixel_order=ioValue.Cast< ::cpp::Function< int ( ::hx::Object *) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_cairo_font_options_set_subpixel_order") ) { lime_cairo_font_options_set_subpixel_order=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int) > >(); return true; }
break;
case 43:
if (HX_FIELD_EQ(inName,"lime_hb_buffer_serialize_format_from_string") ) { lime_hb_buffer_serialize_format_from_string=ioValue.Cast< ::cpp::Function< int (::String) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_add_glyph_origin_for_direction") ) { lime_hb_font_add_glyph_origin_for_direction=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_glyph_origin_for_direction") ) { lime_hb_font_get_glyph_origin_for_direction=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
break;
case 44:
if (HX_FIELD_EQ(inName,"lime_hb_font_get_glyph_advance_for_direction") ) { lime_hb_font_get_glyph_advance_for_direction=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > >(); return true; }
if (HX_FIELD_EQ(inName,"lime_hb_font_get_glyph_kerning_for_direction") ) { lime_hb_font_get_glyph_kerning_for_direction=ioValue.Cast< ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int) > >(); return true; }
break;
case 45:
if (HX_FIELD_EQ(inName,"lime_gl_get_framebuffer_attachment_parameteri") ) { lime_gl_get_framebuffer_attachment_parameteri=ioValue.Cast< ::cpp::Function< int (int,int,int) > >(); return true; }
break;
case 46:
if (HX_FIELD_EQ(inName,"lime_gl_get_framebuffer_attachment_parameteriv") ) { lime_gl_get_framebuffer_attachment_parameteriv=ioValue.Cast< ::cpp::Function< void (int,int,int,Float) > >(); return true; }
break;
case 48:
if (HX_FIELD_EQ(inName,"lime_hb_font_subtract_glyph_origin_for_direction") ) { lime_hb_font_subtract_glyph_origin_for_direction=ioValue.Cast< ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > >(); return true; }
}
return false;
}
#ifdef HXCPP_SCRIPTABLE
static ::hx::StorageInfo *NativeCFFI_obj_sMemberStorageInfo = 0;
static ::hx::StaticInfo NativeCFFI_obj_sStaticStorageInfo[] = {
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_application_create,HX_("lime_application_create",75,25,1a,bb)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_application_event_manager_register,HX_("lime_application_event_manager_register",33,3f,87,01)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_application_exec,HX_("lime_application_exec",ca,f1,81,e2)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_application_init,HX_("lime_application_init",49,39,1f,e5)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_application_quit,HX_("lime_application_quit",08,3e,6e,ea)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_application_set_frame_rate,HX_("lime_application_set_frame_rate",a8,03,d7,1d)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_application_update,HX_("lime_application_update",82,44,10,c6)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_audio_load,HX_("lime_audio_load",99,89,38,30)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_audio_load_bytes,HX_("lime_audio_load_bytes",05,92,98,ba)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_audio_load_file,HX_("lime_audio_load_file",22,f6,9d,0c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_bytes_from_data_pointer,HX_("lime_bytes_from_data_pointer",1f,3b,02,90)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_bytes_get_data_pointer,HX_("lime_bytes_get_data_pointer",af,ff,82,7b)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_bytes_get_data_pointer_offset,HX_("lime_bytes_get_data_pointer_offset",63,8d,9d,00)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_bytes_read_file,HX_("lime_bytes_read_file",c7,b2,82,ba)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cffi_get_native_pointer,HX_("lime_cffi_get_native_pointer",6d,f2,d7,07)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_clipboard_event_manager_register,HX_("lime_clipboard_event_manager_register",ed,56,db,9a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_clipboard_get_text,HX_("lime_clipboard_get_text",29,fd,31,04)},
{::hx::fsObject /* ::cpp::Function< void (::String) > */ ,(void *) &NativeCFFI_obj::lime_clipboard_set_text,HX_("lime_clipboard_set_text",9d,56,8f,b2)},
{::hx::fsObject /* ::cpp::Function< Float (Float,int) > */ ,(void *) &NativeCFFI_obj::lime_data_pointer_offset,HX_("lime_data_pointer_offset",60,b2,70,59)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_deflate_compress,HX_("lime_deflate_compress",e0,7d,72,7f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_deflate_decompress,HX_("lime_deflate_decompress",e1,49,b0,91)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_drop_event_manager_register,HX_("lime_drop_event_manager_register",a0,48,49,3f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String,::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_file_dialog_open_directory,HX_("lime_file_dialog_open_directory",36,64,09,e2)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String,::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_file_dialog_open_file,HX_("lime_file_dialog_open_file",53,b1,fe,c0)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String,::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_file_dialog_open_files,HX_("lime_file_dialog_open_files",c0,77,dc,1d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String,::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_file_dialog_save_file,HX_("lime_file_dialog_save_file",00,49,86,dc)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_file_watcher_create,HX_("lime_file_watcher_create",d8,1b,00,e0)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_file_watcher_add_directory,HX_("lime_file_watcher_add_directory",33,92,27,79)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_file_watcher_remove_directory,HX_("lime_file_watcher_remove_directory",4e,67,5d,01)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_file_watcher_update,HX_("lime_file_watcher_update",e5,3a,f6,ea)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_ascender,HX_("lime_font_get_ascender",06,f1,b5,57)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_descender,HX_("lime_font_get_descender",68,c1,2f,64)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_family_name,HX_("lime_font_get_family_name",97,ce,b2,b4)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,::String) > */ ,(void *) &NativeCFFI_obj::lime_font_get_glyph_index,HX_("lime_font_get_glyph_index",90,3b,dd,a2)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > */ ,(void *) &NativeCFFI_obj::lime_font_get_glyph_indices,HX_("lime_font_get_glyph_indices",25,83,e4,03)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_font_get_glyph_metrics,HX_("lime_font_get_glyph_metrics",41,de,64,4d)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_height,HX_("lime_font_get_height",f6,3e,aa,fc)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_num_glyphs,HX_("lime_font_get_num_glyphs",ef,8b,e7,ad)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_underline_position,HX_("lime_font_get_underline_position",0b,93,8e,28)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_underline_thickness,HX_("lime_font_get_underline_thickness",d2,14,47,de)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_get_units_per_em,HX_("lime_font_get_units_per_em",29,72,55,dc)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_load,HX_("lime_font_load",ec,08,6e,02)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_load_bytes,HX_("lime_font_load_bytes",98,d1,ec,43)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_load_file,HX_("lime_font_load_file",ef,09,bb,9c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_font_outline_decompose,HX_("lime_font_outline_decompose",ee,da,88,55)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_render_glyph,HX_("lime_font_render_glyph",89,79,39,0f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_font_render_glyphs,HX_("lime_font_render_glyphs",ca,de,10,43)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_font_set_size,HX_("lime_font_set_size",84,ff,47,dd)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gamepad_add_mappings,HX_("lime_gamepad_add_mappings",0b,39,a9,d8)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gamepad_get_device_guid,HX_("lime_gamepad_get_device_guid",61,03,1f,2d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gamepad_get_device_name,HX_("lime_gamepad_get_device_name",23,58,b0,31)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gamepad_event_manager_register,HX_("lime_gamepad_event_manager_register",02,b7,1e,51)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gzip_compress,HX_("lime_gzip_compress",fd,cc,13,7a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gzip_decompress,HX_("lime_gzip_decompress",3e,5a,99,72)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_haptic_vibrate,HX_("lime_haptic_vibrate",31,58,7a,85)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_encode,HX_("lime_image_encode",64,48,63,9c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_load,HX_("lime_image_load",f4,20,ad,9c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_load_bytes,HX_("lime_image_load_bytes",a0,9f,39,e7)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_load_file,HX_("lime_image_load_file",e7,d4,9f,41)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_color_transform,HX_("lime_image_data_util_color_transform",ba,cc,96,40)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_copy_channel,HX_("lime_image_data_util_copy_channel",4f,54,36,a5)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_copy_pixels,HX_("lime_image_data_util_copy_pixels",21,51,7b,ab)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_fill_rect,HX_("lime_image_data_util_fill_rect",8a,8c,a4,8e)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_flood_fill,HX_("lime_image_data_util_flood_fill",ba,e7,5b,f2)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_get_pixels,HX_("lime_image_data_util_get_pixels",cc,3e,de,0c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_merge,HX_("lime_image_data_util_merge",a2,d2,b1,f7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_multiply_alpha,HX_("lime_image_data_util_multiply_alpha",99,86,ad,5d)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_resize,HX_("lime_image_data_util_resize",ca,16,5a,c4)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_set_format,HX_("lime_image_data_util_set_format",4a,7d,40,81)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_set_pixels,HX_("lime_image_data_util_set_pixels",40,dd,5b,10)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int,int,int,int,bool) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_threshold,HX_("lime_image_data_util_threshold",95,30,16,89)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_image_data_util_unmultiply_alpha,HX_("lime_image_data_util_unmultiply_alpha",32,d8,15,90)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_joystick_get_device_guid,HX_("lime_joystick_get_device_guid",90,59,1a,42)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_joystick_get_device_name,HX_("lime_joystick_get_device_name",52,ae,ab,46)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_joystick_get_num_axes,HX_("lime_joystick_get_num_axes",c0,e1,d4,a9)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_joystick_get_num_buttons,HX_("lime_joystick_get_num_buttons",86,9c,1a,05)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_joystick_get_num_hats,HX_("lime_joystick_get_num_hats",53,f9,63,ae)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_joystick_get_num_trackballs,HX_("lime_joystick_get_num_trackballs",04,66,ee,99)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_joystick_event_manager_register,HX_("lime_joystick_event_manager_register",b3,14,1d,14)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_jpeg_decode_bytes,HX_("lime_jpeg_decode_bytes",a7,ff,10,c9)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_jpeg_decode_file,HX_("lime_jpeg_decode_file",c0,92,ae,0c)},
{::hx::fsObject /* ::cpp::Function< float (float) > */ ,(void *) &NativeCFFI_obj::lime_key_code_from_scan_code,HX_("lime_key_code_from_scan_code",e2,69,76,bc)},
{::hx::fsObject /* ::cpp::Function< float (float) > */ ,(void *) &NativeCFFI_obj::lime_key_code_to_scan_code,HX_("lime_key_code_to_scan_code",33,c7,96,30)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_key_event_manager_register,HX_("lime_key_event_manager_register",c4,10,76,37)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_lzma_compress,HX_("lime_lzma_compress",75,e7,f2,95)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_lzma_decompress,HX_("lime_lzma_decompress",b6,02,4e,98)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_mouse_event_manager_register,HX_("lime_mouse_event_manager_register",7e,33,83,ea)},
{::hx::fsObject /* ::cpp::Function< void (::String) > */ ,(void *) &NativeCFFI_obj::lime_neko_execute,HX_("lime_neko_execute",fb,62,24,05)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_png_decode_bytes,HX_("lime_png_decode_bytes",9a,13,98,26)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_png_decode_file,HX_("lime_png_decode_file",2d,7e,35,25)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_render_event_manager_register,HX_("lime_render_event_manager_register",d9,6b,ed,ee)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_sensor_event_manager_register,HX_("lime_sensor_event_manager_register",75,01,d7,10)},
{::hx::fsObject /* ::cpp::Function< bool () > */ ,(void *) &NativeCFFI_obj::lime_system_get_allow_screen_timeout,HX_("lime_system_get_allow_screen_timeout",73,89,73,7a)},
{::hx::fsObject /* ::cpp::Function< bool (bool) > */ ,(void *) &NativeCFFI_obj::lime_system_set_allow_screen_timeout,HX_("lime_system_set_allow_screen_timeout",e7,0a,4e,8d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_system_get_device_model,HX_("lime_system_get_device_model",af,7c,01,19)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_system_get_device_vendor,HX_("lime_system_get_device_vendor",c2,71,1b,a6)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_system_get_directory,HX_("lime_system_get_directory",5e,9e,04,7c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_system_get_display,HX_("lime_system_get_display",f3,47,82,d2)},
{::hx::fsObject /* ::cpp::Function< bool () > */ ,(void *) &NativeCFFI_obj::lime_system_get_ios_tablet,HX_("lime_system_get_ios_tablet",07,23,ac,cd)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_system_get_num_displays,HX_("lime_system_get_num_displays",f9,90,37,4f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_system_get_platform_label,HX_("lime_system_get_platform_label",97,fa,f9,96)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_system_get_platform_name,HX_("lime_system_get_platform_name",08,2b,96,25)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_system_get_platform_version,HX_("lime_system_get_platform_version",7b,82,4b,3e)},
{::hx::fsObject /* ::cpp::Function< Float () > */ ,(void *) &NativeCFFI_obj::lime_system_get_timer,HX_("lime_system_get_timer",36,5f,72,67)},
{::hx::fsObject /* ::cpp::Function< void (::String) > */ ,(void *) &NativeCFFI_obj::lime_system_open_file,HX_("lime_system_open_file",6b,2d,58,ea)},
{::hx::fsObject /* ::cpp::Function< void (::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_system_open_url,HX_("lime_system_open_url",60,3f,2e,b4)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_text_event_manager_register,HX_("lime_text_event_manager_register",e2,83,68,5d)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_touch_event_manager_register,HX_("lime_touch_event_manager_register",24,25,f4,f5)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,::String,::String) > */ ,(void *) &NativeCFFI_obj::lime_window_alert,HX_("lime_window_alert",37,b9,e2,c1)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_close,HX_("lime_window_close",93,79,b7,e8)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_context_flip,HX_("lime_window_context_flip",c2,15,98,c7)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_context_lock,HX_("lime_window_context_lock",00,9f,91,cb)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_context_make_current,HX_("lime_window_context_make_current",bd,6d,a5,80)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_context_unlock,HX_("lime_window_context_unlock",19,55,3d,16)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int,::String) > */ ,(void *) &NativeCFFI_obj::lime_window_create,HX_("lime_window_create",c1,a4,90,25)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_focus,HX_("lime_window_focus",b3,c1,dd,a4)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_context,HX_("lime_window_get_context",21,ae,a1,6b)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_context_type,HX_("lime_window_get_context_type",d8,88,68,17)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_display,HX_("lime_window_get_display",74,42,74,0d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_display_mode,HX_("lime_window_get_display_mode",4e,48,b4,98)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_height,HX_("lime_window_get_height",f5,7b,27,d0)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_id,HX_("lime_window_get_id",e9,30,b1,4c)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_mouse_lock,HX_("lime_window_get_mouse_lock",93,ce,a9,67)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_scale,HX_("lime_window_get_scale",3c,16,d2,0d)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_text_input_enabled,HX_("lime_window_get_text_input_enabled",c8,3e,fd,3e)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_width,HX_("lime_window_get_width",b8,fd,65,5f)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_x,HX_("lime_window_get_x",2a,07,b5,31)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_get_y,HX_("lime_window_get_y",2b,07,b5,31)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_window_move,HX_("lime_window_move",96,b5,64,4b)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_read_pixels,HX_("lime_window_read_pixels",51,24,eb,4c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_window_resize,HX_("lime_window_resize",b9,97,fc,b1)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_borderless,HX_("lime_window_set_borderless",c7,c1,d2,19)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_window_set_cursor,HX_("lime_window_set_cursor",58,a1,41,10)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_set_display_mode,HX_("lime_window_set_display_mode",c2,35,f6,ee)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_fullscreen,HX_("lime_window_set_fullscreen",bd,b5,15,fc)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_set_icon,HX_("lime_window_set_icon",7b,f5,6a,6e)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_maximized,HX_("lime_window_set_maximized",d6,f8,ec,06)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_minimized,HX_("lime_window_set_minimized",44,e6,a9,30)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_mouse_lock,HX_("lime_window_set_mouse_lock",07,b7,c9,87)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_resizable,HX_("lime_window_set_resizable",29,22,5c,b1)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,bool) > */ ,(void *) &NativeCFFI_obj::lime_window_set_text_input_enabled,HX_("lime_window_set_text_input_enabled",3c,bb,a8,72)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > */ ,(void *) &NativeCFFI_obj::lime_window_set_title,HX_("lime_window_set_title",56,49,8f,88)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_window_warp_mouse,HX_("lime_window_warp_mouse",f3,a9,91,df)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_window_event_manager_register,HX_("lime_window_event_manager_register",7f,16,8e,0d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_zlib_compress,HX_("lime_zlib_compress",ac,90,d2,8a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_zlib_decompress,HX_("lime_zlib_decompress",ad,a7,53,43)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_buffer_data,HX_("lime_al_buffer_data",9f,3d,30,e4)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_al_buffer3f,HX_("lime_al_buffer3f",7d,e7,92,da)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_buffer3i,HX_("lime_al_buffer3i",80,e7,92,da)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float) > */ ,(void *) &NativeCFFI_obj::lime_al_bufferf,HX_("lime_al_bufferf",fc,c8,9c,ee)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_bufferfv,HX_("lime_al_bufferfv",fa,13,93,da)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_bufferi,HX_("lime_al_bufferi",ff,c8,9c,ee)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_bufferiv,HX_("lime_al_bufferiv",97,16,93,da)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_al_cleanup,HX_("lime_al_cleanup",ba,31,4e,e8)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_delete_buffer,HX_("lime_al_delete_buffer",ea,b3,0d,56)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_delete_buffers,HX_("lime_al_delete_buffers",49,b9,ef,f5)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_delete_source,HX_("lime_al_delete_source",c5,a7,aa,b7)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_delete_sources,HX_("lime_al_delete_sources",0e,25,a8,fd)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_al_disable,HX_("lime_al_disable",7e,8f,64,ee)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_al_distance_model,HX_("lime_al_distance_model",09,2d,9c,2e)},
{::hx::fsObject /* ::cpp::Function< void (float) > */ ,(void *) &NativeCFFI_obj::lime_al_doppler_factor,HX_("lime_al_doppler_factor",ea,b2,5f,1d)},
{::hx::fsObject /* ::cpp::Function< void (float) > */ ,(void *) &NativeCFFI_obj::lime_al_doppler_velocity,HX_("lime_al_doppler_velocity",f8,18,9f,e4)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_al_enable,HX_("lime_al_enable",ad,cd,b6,64)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_al_gen_source,HX_("lime_al_gen_source",14,70,09,16)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_al_gen_sources,HX_("lime_al_gen_sources",df,a1,38,32)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_boolean,HX_("lime_al_get_boolean",55,f3,96,e8)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_booleanv,HX_("lime_al_get_booleanv",81,f7,7d,9b)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_al_gen_buffer,HX_("lime_al_gen_buffer",39,7c,6c,b4)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_al_gen_buffers,HX_("lime_al_gen_buffers",1a,36,80,2a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_buffer3f,HX_("lime_al_get_buffer3f",86,b8,6d,87)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_buffer3i,HX_("lime_al_get_buffer3i",89,b8,6d,87)},
{::hx::fsObject /* ::cpp::Function< float ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_bufferf,HX_("lime_al_get_bufferf",13,ac,28,1c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_bufferfv,HX_("lime_al_get_bufferfv",03,e5,6d,87)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_bufferi,HX_("lime_al_get_bufferi",16,ac,28,1c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_bufferiv,HX_("lime_al_get_bufferiv",a0,e7,6d,87)},
{::hx::fsObject /* ::cpp::Function< Float (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_double,HX_("lime_al_get_double",04,97,d1,6d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_doublev,HX_("lime_al_get_doublev",f2,8c,92,a9)},
{::hx::fsObject /* ::cpp::Function< int (::String) > */ ,(void *) &NativeCFFI_obj::lime_al_get_enum_value,HX_("lime_al_get_enum_value",e6,c9,e4,87)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_al_get_error,HX_("lime_al_get_error",35,5f,64,6b)},
{::hx::fsObject /* ::cpp::Function< float (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_float,HX_("lime_al_get_float",09,59,d1,fa)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_floatv,HX_("lime_al_get_floatv",4d,8f,5c,7c)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_integer,HX_("lime_al_get_integer",6b,c6,b3,81)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_integerv,HX_("lime_al_get_integerv",ab,d7,99,fb)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_listener3f,HX_("lime_al_get_listener3f",ba,13,81,29)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_listener3i,HX_("lime_al_get_listener3i",bd,13,81,29)},
{::hx::fsObject /* ::cpp::Function< float (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_listenerf,HX_("lime_al_get_listenerf",5f,b3,bb,3a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_listenerfv,HX_("lime_al_get_listenerfv",37,40,81,29)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_listeneri,HX_("lime_al_get_listeneri",62,b3,bb,3a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_listeneriv,HX_("lime_al_get_listeneriv",d4,42,81,29)},
{::hx::fsObject /* ::cpp::Function< Float (::String) > */ ,(void *) &NativeCFFI_obj::lime_al_get_proc_address,HX_("lime_al_get_proc_address",fe,7c,3d,26)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_source3f,HX_("lime_al_get_source3f",21,99,13,41)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_source3i,HX_("lime_al_get_source3i",24,99,13,41)},
{::hx::fsObject /* ::cpp::Function< float ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_sourcef,HX_("lime_al_get_sourcef",d8,17,e1,23)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_sourcefv,HX_("lime_al_get_sourcefv",9e,c5,13,41)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_sourcei,HX_("lime_al_get_sourcei",db,17,e1,23)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_sourceiv,HX_("lime_al_get_sourceiv",3b,c8,13,41)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_string,HX_("lime_al_get_string",c4,94,36,4c)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_is_buffer,HX_("lime_al_is_buffer",0b,5b,4a,2a)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_al_is_enabled,HX_("lime_al_is_enabled",16,b0,65,a3)},
{::hx::fsObject /* ::cpp::Function< bool (::String) > */ ,(void *) &NativeCFFI_obj::lime_al_is_extension_present,HX_("lime_al_is_extension_present",d0,16,00,ef)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_is_source,HX_("lime_al_is_source",e6,4e,e7,8b)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_al_listener3f,HX_("lime_al_listener3f",71,2e,89,73)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_listener3i,HX_("lime_al_listener3i",74,2e,89,73)},
{::hx::fsObject /* ::cpp::Function< void (int,float) > */ ,(void *) &NativeCFFI_obj::lime_al_listenerf,HX_("lime_al_listenerf",88,9c,1f,a8)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_listenerfv,HX_("lime_al_listenerfv",ee,5a,89,73)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_listeneri,HX_("lime_al_listeneri",8b,9c,1f,a8)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_listeneriv,HX_("lime_al_listeneriv",8b,5d,89,73)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_pause,HX_("lime_al_source_pause",fc,3f,07,a0)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_pausev,HX_("lime_al_source_pausev",fa,bc,50,66)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_play,HX_("lime_al_source_play",ae,47,e1,7d)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_playv,HX_("lime_al_source_playv",08,71,3d,a7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_queue_buffers,HX_("lime_al_source_queue_buffers",8b,e2,2d,54)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_rewind,HX_("lime_al_source_rewind",35,a6,ec,81)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_rewindv,HX_("lime_al_source_rewindv",a1,c8,24,2d)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_stop,HX_("lime_al_source_stop",bc,09,e3,7f)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_source_stopv,HX_("lime_al_source_stopv",3a,7b,c5,66)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_source_unqueue_buffers,HX_("lime_al_source_unqueue_buffers",12,06,e2,64)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_al_source3f,HX_("lime_al_source3f",18,c8,38,94)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_source3i,HX_("lime_al_source3i",1b,c8,38,94)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float) > */ ,(void *) &NativeCFFI_obj::lime_al_sourcef,HX_("lime_al_sourcef",c1,34,55,f6)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_sourcefv,HX_("lime_al_sourcefv",95,f4,38,94)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_sourcei,HX_("lime_al_sourcei",c4,34,55,f6)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_sourceiv,HX_("lime_al_sourceiv",32,f7,38,94)},
{::hx::fsObject /* ::cpp::Function< void (float) > */ ,(void *) &NativeCFFI_obj::lime_al_speed_of_sound,HX_("lime_al_speed_of_sound",89,b0,a8,8a)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_close_device,HX_("lime_alc_close_device",ee,17,5c,d1)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_create_context,HX_("lime_alc_create_context",1d,4b,86,d8)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_destroy_context,HX_("lime_alc_destroy_context",99,a8,9a,12)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_get_contexts_device,HX_("lime_alc_get_contexts_device",d7,e3,ae,e6)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_alc_get_current_context,HX_("lime_alc_get_current_context",6f,01,f1,48)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_get_error,HX_("lime_alc_get_error",0e,4d,6e,60)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_alc_get_integerv,HX_("lime_alc_get_integerv",72,57,31,49)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_alc_get_string,HX_("lime_alc_get_string",cb,c4,dc,bf)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_make_context_current,HX_("lime_alc_make_context_current",89,fe,9c,ca)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String) > */ ,(void *) &NativeCFFI_obj::lime_alc_open_device,HX_("lime_alc_open_device",5a,d6,40,50)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_pause_device,HX_("lime_alc_pause_device",70,dc,44,20)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_process_context,HX_("lime_alc_process_context",0e,1b,b1,00)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_resume_device,HX_("lime_alc_resume_device",97,8c,92,24)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_alc_suspend_context,HX_("lime_alc_suspend_context",1b,fd,cc,57)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_al_gen_filter,HX_("lime_al_gen_filter",f1,de,0c,69)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_filteri,HX_("lime_al_filteri",47,c7,52,46)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float) > */ ,(void *) &NativeCFFI_obj::lime_al_filterf,HX_("lime_al_filterf",44,c7,52,46)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_remove_direct_filter,HX_("lime_al_remove_direct_filter",7d,1d,1f,9c)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_is_filter,HX_("lime_al_is_filter",c3,bd,ea,de)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_get_filteri,HX_("lime_al_get_filteri",5e,aa,de,73)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_al_gen_effect,HX_("lime_al_gen_effect",ca,19,7b,44)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float) > */ ,(void *) &NativeCFFI_obj::lime_al_effectf,HX_("lime_al_effectf",4b,0a,58,6b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_effectfv,HX_("lime_al_effectfv",cb,f7,b0,81)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_al_effecti,HX_("lime_al_effecti",4e,0a,58,6b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_effectiv,HX_("lime_al_effectiv",68,fa,b0,81)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_is_effect,HX_("lime_al_is_effect",9c,f8,58,ba)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_al_gen_aux,HX_("lime_al_gen_aux",2b,74,63,ef)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,float) > */ ,(void *) &NativeCFFI_obj::lime_al_auxf,HX_("lime_al_auxf",8c,03,5d,ce)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_auxfv,HX_("lime_al_auxfv",6a,17,06,c3)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_auxi,HX_("lime_al_auxi",8f,03,5d,ce)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_auxiv,HX_("lime_al_auxiv",07,1a,06,c3)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_al_is_aux,HX_("lime_al_is_aux",19,fe,d1,dd)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_al_remove_send,HX_("lime_al_remove_send",f9,be,05,4f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_arc,HX_("lime_cairo_arc",f1,76,fc,f9)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_arc_negative,HX_("lime_cairo_arc_negative",c3,c0,b7,d8)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_clip,HX_("lime_cairo_clip",51,81,39,c4)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_clip_preserve,HX_("lime_cairo_clip_preserve",ba,af,0e,79)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_clip_extents,HX_("lime_cairo_clip_extents",1b,ef,99,33)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_close_path,HX_("lime_cairo_close_path",0d,58,78,e1)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_copy_page,HX_("lime_cairo_copy_page",38,e4,e1,1e)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_create,HX_("lime_cairo_create",bd,db,50,d8)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_curve_to,HX_("lime_cairo_curve_to",4c,ed,ec,ef)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_fill,HX_("lime_cairo_fill",04,e1,32,c6)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_fill_extents,HX_("lime_cairo_fill_extents",ce,b9,56,6b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_fill_preserve,HX_("lime_cairo_fill_preserve",a7,41,83,06)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_antialias,HX_("lime_cairo_get_antialias",e4,bf,ea,4f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_current_point,HX_("lime_cairo_get_current_point",c0,c4,0b,c0)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_dash,HX_("lime_cairo_get_dash",dc,f7,36,c9)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_dash_count,HX_("lime_cairo_get_dash_count",ec,d0,06,ce)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_fill_rule,HX_("lime_cairo_get_fill_rule",ae,34,3f,14)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_font_face,HX_("lime_cairo_get_font_face",83,ed,75,e9)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_font_options,HX_("lime_cairo_get_font_options",38,0e,38,ee)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_group_target,HX_("lime_cairo_get_group_target",1b,04,8e,27)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_line_cap,HX_("lime_cairo_get_line_cap",91,8a,ff,dc)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_line_join,HX_("lime_cairo_get_line_join",8b,cc,44,87)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_line_width,HX_("lime_cairo_get_line_width",45,aa,28,4d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_matrix,HX_("lime_cairo_get_matrix",4b,0f,b1,58)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_miter_limit,HX_("lime_cairo_get_miter_limit",f7,da,f6,e3)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_operator,HX_("lime_cairo_get_operator",2e,cb,0b,90)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_source,HX_("lime_cairo_get_source",e5,89,1a,cf)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_target,HX_("lime_cairo_get_target",5b,cc,d5,23)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_get_tolerance,HX_("lime_cairo_get_tolerance",43,26,7d,0d)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_has_current_point,HX_("lime_cairo_has_current_point",84,52,43,91)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_identity_matrix,HX_("lime_cairo_identity_matrix",81,b1,fe,41)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_in_clip,HX_("lime_cairo_in_clip",c9,a4,67,5b)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_in_fill,HX_("lime_cairo_in_fill",7c,04,61,5d)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_in_stroke,HX_("lime_cairo_in_stroke",f1,19,0e,c7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_line_to,HX_("lime_cairo_line_to",45,88,aa,7c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_mask,HX_("lime_cairo_mask",6d,53,cd,ca)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_mask_surface,HX_("lime_cairo_mask_surface",1b,c8,a3,8c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_move_to,HX_("lime_cairo_move_to",48,cd,98,a7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_new_path,HX_("lime_cairo_new_path",25,bc,98,94)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_paint,HX_("lime_cairo_paint",fd,d5,07,63)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_paint_with_alpha,HX_("lime_cairo_paint_with_alpha",67,1b,fb,63)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pop_group,HX_("lime_cairo_pop_group",b0,94,6e,0c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pop_group_to_source,HX_("lime_cairo_pop_group_to_source",d0,9e,67,af)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_push_group,HX_("lime_cairo_push_group",1b,55,88,61)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_push_group_with_content,HX_("lime_cairo_push_group_with_content",a4,bb,13,d3)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_rectangle,HX_("lime_cairo_rectangle",0e,0e,2e,48)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_rel_curve_to,HX_("lime_cairo_rel_curve_to",b2,ac,52,05)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_rel_line_to,HX_("lime_cairo_rel_line_to",9f,37,7e,c0)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_rel_move_to,HX_("lime_cairo_rel_move_to",a2,7c,6c,eb)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_reset_clip,HX_("lime_cairo_reset_clip",c1,bb,a3,f6)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_restore,HX_("lime_cairo_restore",6d,1b,b5,c7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_rotate,HX_("lime_cairo_rotate",1c,bb,61,27)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_save,HX_("lime_cairo_save",be,9d,c4,ce)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_scale,HX_("lime_cairo_scale",e9,ec,87,1e)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_antialias,HX_("lime_cairo_set_antialias",f0,a1,f0,94)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_dash,HX_("lime_cairo_set_dash",50,51,94,77)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_fill_rule,HX_("lime_cairo_set_fill_rule",ba,16,45,59)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_font_face,HX_("lime_cairo_set_font_face",8f,cf,7b,2e)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_font_options,HX_("lime_cairo_set_font_options",ac,fb,79,44)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_font_size,HX_("lime_cairo_set_font_size",b3,bb,19,37)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_line_cap,HX_("lime_cairo_set_line_cap",05,ae,f8,f1)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_line_join,HX_("lime_cairo_set_line_join",97,ae,4a,cc)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_line_width,HX_("lime_cairo_set_line_width",b9,92,48,6d)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_matrix,HX_("lime_cairo_set_matrix",bf,ad,2e,5c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_miter_limit,HX_("lime_cairo_set_miter_limit",03,58,c2,df)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_operator,HX_("lime_cairo_set_operator",a2,ee,04,a5)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_source,HX_("lime_cairo_set_source",59,28,98,d2)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_source_rgb,HX_("lime_cairo_set_source_rgb",e7,e8,97,83)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_source_rgba,HX_("lime_cairo_set_source_rgba",9a,e1,53,a1)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_source_surface,HX_("lime_cairo_set_source_surface",07,69,ef,cf)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_set_tolerance,HX_("lime_cairo_set_tolerance",4f,08,83,52)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_show_glyphs,HX_("lime_cairo_show_glyphs",28,2f,f5,54)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_show_page,HX_("lime_cairo_show_page",f0,25,4b,c7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,::String) > */ ,(void *) &NativeCFFI_obj::lime_cairo_show_text,HX_("lime_cairo_show_text",4e,18,f3,c9)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_status,HX_("lime_cairo_status",f3,5b,3d,62)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_stroke,HX_("lime_cairo_stroke",79,28,76,6d)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_stroke_extents,HX_("lime_cairo_stroke_extents",43,fe,0d,ea)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_stroke_preserve,HX_("lime_cairo_stroke_preserve",92,e3,27,68)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,::String) > */ ,(void *) &NativeCFFI_obj::lime_cairo_text_path,HX_("lime_cairo_text_path",96,5b,d4,31)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_transform,HX_("lime_cairo_transform",4b,67,44,74)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_translate,HX_("lime_cairo_translate",2d,11,31,78)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_cairo_version,HX_("lime_cairo_version",37,9b,f6,d9)},
{::hx::fsObject /* ::cpp::Function< ::String () > */ ,(void *) &NativeCFFI_obj::lime_cairo_version_string,HX_("lime_cairo_version_string",19,84,60,45)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_face_status,HX_("lime_cairo_font_face_status",25,18,5c,f3)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_create,HX_("lime_cairo_font_options_create",4c,3f,9e,9d)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_get_antialias,HX_("lime_cairo_font_options_get_antialias",35,7c,8d,f3)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_get_hint_metrics,HX_("lime_cairo_font_options_get_hint_metrics",24,e1,9b,00)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_get_hint_style,HX_("lime_cairo_font_options_get_hint_style",d2,b9,3d,00)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_get_subpixel_order,HX_("lime_cairo_font_options_get_subpixel_order",6e,5e,52,fe)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_set_antialias,HX_("lime_cairo_font_options_set_antialias",41,5e,93,38)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_set_hint_metrics,HX_("lime_cairo_font_options_set_hint_metrics",98,ce,dd,56)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_set_hint_style,HX_("lime_cairo_font_options_set_hint_style",46,a2,5d,20)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_font_options_set_subpixel_order,HX_("lime_cairo_font_options_set_subpixel_order",e2,90,01,db)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_ft_font_face_create,HX_("lime_cairo_ft_font_face_create",de,6b,31,70)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_create,HX_("lime_cairo_image_surface_create",33,6e,fc,ce)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_create_for_data,HX_("lime_cairo_image_surface_create_for_data",2c,35,7d,63)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_get_data,HX_("lime_cairo_image_surface_get_data",aa,94,c4,6f)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_get_format,HX_("lime_cairo_image_surface_get_format",b7,6d,9c,34)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_get_height,HX_("lime_cairo_image_surface_get_height",67,e6,59,39)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_get_stride,HX_("lime_cairo_image_surface_get_stride",99,fe,3d,48)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_image_surface_get_width,HX_("lime_cairo_image_surface_get_width",86,27,18,52)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgb,HX_("lime_cairo_pattern_add_color_stop_rgb",5a,49,3d,bb)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgba,HX_("lime_cairo_pattern_add_color_stop_rgba",c7,e5,62,1a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_create_for_surface,HX_("lime_cairo_pattern_create_for_surface",c4,41,ff,a6)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_create_linear,HX_("lime_cairo_pattern_create_linear",f8,82,42,cf)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,Float,Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_create_radial,HX_("lime_cairo_pattern_create_radial",f2,ef,98,93)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_create_rgb,HX_("lime_cairo_pattern_create_rgb",1a,90,6b,ce)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_create_rgba,HX_("lime_cairo_pattern_create_rgba",07,87,b2,cf)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_get_color_stop_count,HX_("lime_cairo_pattern_get_color_stop_count",47,7e,23,f0)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_get_extend,HX_("lime_cairo_pattern_get_extend",b3,1c,37,1f)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_get_filter,HX_("lime_cairo_pattern_get_filter",91,6a,51,dd)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_get_matrix,HX_("lime_cairo_pattern_get_matrix",1a,81,e4,13)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_set_extend,HX_("lime_cairo_pattern_set_extend",27,bb,b4,22)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_set_filter,HX_("lime_cairo_pattern_set_filter",05,09,cf,e0)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_pattern_set_matrix,HX_("lime_cairo_pattern_set_matrix",8e,1f,62,17)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_cairo_surface_flush,HX_("lime_cairo_surface_flush",51,85,bf,ed)},
{::hx::fsObject /* ::cpp::Function< Float (::String,Float) > */ ,(void *) &NativeCFFI_obj::lime_curl_getdate,HX_("lime_curl_getdate",db,3c,06,67)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_curl_global_cleanup,HX_("lime_curl_global_cleanup",d1,6f,f2,40)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_curl_global_init,HX_("lime_curl_global_init",43,79,fb,d4)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_curl_version,HX_("lime_curl_version",2f,4a,eb,b9)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_curl_version_info,HX_("lime_curl_version_info",be,bf,7a,9e)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_cleanup,HX_("lime_curl_easy_cleanup",30,cd,aa,62)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_duphandle,HX_("lime_curl_easy_duphandle",b3,c0,a0,67)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_escape,HX_("lime_curl_easy_escape",f5,67,b1,5f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_flush,HX_("lime_curl_easy_flush",d0,88,a5,06)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_getinfo,HX_("lime_curl_easy_getinfo",10,7d,cd,e4)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_init,HX_("lime_curl_easy_init",84,9a,e4,65)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_pause,HX_("lime_curl_easy_pause",02,fd,61,c1)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_perform,HX_("lime_curl_easy_perform",ad,a9,46,32)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_recv,HX_("lime_curl_easy_recv",9a,ac,d0,6b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_reset,HX_("lime_curl_easy_reset",db,6f,d2,ea)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_send,HX_("lime_curl_easy_send",bc,ec,79,6c)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_setopt,HX_("lime_curl_easy_setopt",45,96,5b,f4)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_strerror,HX_("lime_curl_easy_strerror",eb,2a,7c,55)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_easy_unescape,HX_("lime_curl_easy_unescape",0e,9c,61,a1)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_init,HX_("lime_curl_multi_init",1f,9b,4b,19)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_add_handle,HX_("lime_curl_multi_add_handle",95,ee,87,1c)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_get_running_handles,HX_("lime_curl_multi_get_running_handles",33,e6,dc,58)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_info_read,HX_("lime_curl_multi_info_read",98,e9,01,8f)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_perform,HX_("lime_curl_multi_perform",f2,bb,b3,bf)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_remove_handle,HX_("lime_curl_multi_remove_handle",94,6f,9e,9d)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_setopt,HX_("lime_curl_multi_setopt",a0,33,f8,8f)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_curl_multi_wait,HX_("lime_curl_multi_wait",84,ba,82,22)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_active_texture,HX_("lime_gl_active_texture",52,df,77,b3)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_attach_shader,HX_("lime_gl_attach_shader",6f,78,09,06)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_begin_query,HX_("lime_gl_begin_query",02,de,10,34)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_begin_transform_feedback,HX_("lime_gl_begin_transform_feedback",be,35,71,43)},
{::hx::fsObject /* ::cpp::Function< void (int,int,::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_attrib_location,HX_("lime_gl_bind_attrib_location",78,d0,23,1a)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_buffer,HX_("lime_gl_bind_buffer",52,57,d9,e2)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_buffer_base,HX_("lime_gl_bind_buffer_base",5e,e3,50,f4)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,Float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_buffer_range,HX_("lime_gl_bind_buffer_range",d0,8d,db,08)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_framebuffer,HX_("lime_gl_bind_framebuffer",5b,d1,58,70)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_renderbuffer,HX_("lime_gl_bind_renderbuffer",a8,70,ea,63)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_sampler,HX_("lime_gl_bind_sampler",76,32,8c,6d)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_texture,HX_("lime_gl_bind_texture",49,36,a3,88)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_transform_feedback,HX_("lime_gl_bind_transform_feedback",4a,2a,cb,62)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_bind_vertex_array,HX_("lime_gl_bind_vertex_array",10,57,8b,e5)},
{::hx::fsObject /* ::cpp::Function< void (float,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_blend_color,HX_("lime_gl_blend_color",85,d0,ce,3a)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_blend_equation,HX_("lime_gl_blend_equation",aa,fd,08,1f)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_blend_equation_separate,HX_("lime_gl_blend_equation_separate",d8,13,95,58)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_blend_func,HX_("lime_gl_blend_func",62,46,02,e9)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_blend_func_separate,HX_("lime_gl_blend_func_separate",20,f4,b8,2e)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_blit_framebuffer,HX_("lime_gl_blit_framebuffer",d3,e7,f0,bd)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_buffer_data,HX_("lime_gl_buffer_data",d9,31,40,74)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_buffer_sub_data,HX_("lime_gl_buffer_sub_data",b8,37,6c,ab)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_check_framebuffer_status,HX_("lime_gl_check_framebuffer_status",0b,35,e1,ea)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear,HX_("lime_gl_clear",5d,92,00,3b)},
{::hx::fsObject /* ::cpp::Function< void (int,int,float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_bufferfi,HX_("lime_gl_clear_bufferfi",a5,07,ff,ac)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_bufferfv,HX_("lime_gl_clear_bufferfv",b2,07,ff,ac)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_bufferiv,HX_("lime_gl_clear_bufferiv",4f,0a,ff,ac)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_bufferuiv,HX_("lime_gl_clear_bufferuiv",00,0b,33,b2)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_client_wait_sync,HX_("lime_gl_client_wait_sync",a1,96,ad,b8)},
{::hx::fsObject /* ::cpp::Function< void (float,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_color,HX_("lime_gl_clear_color",c1,ee,49,1a)},
{::hx::fsObject /* ::cpp::Function< void (float) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_depthf,HX_("lime_gl_clear_depthf",e5,26,69,8d)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_clear_stencil,HX_("lime_gl_clear_stencil",da,ce,51,44)},
{::hx::fsObject /* ::cpp::Function< void (bool,bool,bool,bool) > */ ,(void *) &NativeCFFI_obj::lime_gl_color_mask,HX_("lime_gl_color_mask",b8,f1,a7,79)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_compile_shader,HX_("lime_gl_compile_shader",e1,d4,68,7c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_compressed_tex_image_2d,HX_("lime_gl_compressed_tex_image_2d",bc,70,b8,76)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_compressed_tex_image_3d,HX_("lime_gl_compressed_tex_image_3d",9b,71,b8,76)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_compressed_tex_sub_image_2d,HX_("lime_gl_compressed_tex_sub_image_2d",9b,19,2d,07)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_compressed_tex_sub_image_3d,HX_("lime_gl_compressed_tex_sub_image_3d",7a,1a,2d,07)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float,Float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_copy_buffer_sub_data,HX_("lime_gl_copy_buffer_sub_data",4e,b4,15,e7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_copy_tex_image_2d,HX_("lime_gl_copy_tex_image_2d",08,15,17,3a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_copy_tex_sub_image_2d,HX_("lime_gl_copy_tex_sub_image_2d",e7,d3,21,4b)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_copy_tex_sub_image_3d,HX_("lime_gl_copy_tex_sub_image_3d",c6,d4,21,4b)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_buffer,HX_("lime_gl_create_buffer",f3,ef,e7,8a)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_framebuffer,HX_("lime_gl_create_framebuffer",1a,51,d8,73)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_program,HX_("lime_gl_create_program",31,ac,72,42)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_query,HX_("lime_gl_create_query",75,37,ce,ea)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_renderbuffer,HX_("lime_gl_create_renderbuffer",09,b8,fa,6f)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_sampler,HX_("lime_gl_create_sampler",b5,26,43,d2)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_create_shader,HX_("lime_gl_create_shader",18,f2,73,d7)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_texture,HX_("lime_gl_create_texture",88,2a,5a,ed)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_transform_feedback,HX_("lime_gl_create_transform_feedback",6b,b0,6c,10)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_create_vertex_array,HX_("lime_gl_create_vertex_array",71,9e,9b,f1)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_cull_face,HX_("lime_gl_cull_face",5a,6e,d7,a6)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_buffer,HX_("lime_gl_delete_buffer",a4,aa,2e,01)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_framebuffer,HX_("lime_gl_delete_framebuffer",c9,34,1a,a6)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_program,HX_("lime_gl_delete_program",60,4c,0f,4a)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_query,HX_("lime_gl_delete_query",e4,1d,11,2f)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_renderbuffer,HX_("lime_gl_delete_renderbuffer",7a,0d,60,37)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_sampler,HX_("lime_gl_delete_sampler",e4,c6,df,d9)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_shader,HX_("lime_gl_delete_shader",c9,ac,ba,4d)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_sync,HX_("lime_gl_delete_sync",ff,36,e6,70)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_texture,HX_("lime_gl_delete_texture",b7,ca,f6,f4)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_transform_feedback,HX_("lime_gl_delete_transform_feedback",9c,30,f9,ec)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_delete_vertex_array,HX_("lime_gl_delete_vertex_array",e2,f3,00,b9)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_depth_func,HX_("lime_gl_depth_func",70,78,16,ad)},
{::hx::fsObject /* ::cpp::Function< void (bool) > */ ,(void *) &NativeCFFI_obj::lime_gl_depth_mask,HX_("lime_gl_depth_mask",18,ce,a7,b1)},
{::hx::fsObject /* ::cpp::Function< void (float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_depth_rangef,HX_("lime_gl_depth_rangef",35,90,41,42)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_detach_shader,HX_("lime_gl_detach_shader",a1,84,13,fd)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_disable,HX_("lime_gl_disable",b8,5e,23,70)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_disable_vertex_attrib_array,HX_("lime_gl_disable_vertex_attrib_array",58,ba,8e,0a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_draw_arrays,HX_("lime_gl_draw_arrays",a5,43,0c,17)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_draw_arrays_instanced,HX_("lime_gl_draw_arrays_instanced",d5,22,36,ca)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_draw_buffers,HX_("lime_gl_draw_buffers",28,66,c6,8a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_draw_elements,HX_("lime_gl_draw_elements",e2,d1,98,b9)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,Float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_draw_elements_instanced,HX_("lime_gl_draw_elements_instanced",52,bf,3f,a8)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_draw_range_elements,HX_("lime_gl_draw_range_elements",24,96,29,74)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_enable,HX_("lime_gl_enable",b3,43,5f,56)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_enable_vertex_attrib_array,HX_("lime_gl_enable_vertex_attrib_array",d3,1e,a2,ea)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_end_query,HX_("lime_gl_end_query",34,75,2d,a4)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_gl_end_transform_feedback,HX_("lime_gl_end_transform_feedback",4c,87,dc,33)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_fence_sync,HX_("lime_gl_fence_sync",19,5b,e2,cd)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_gl_finish,HX_("lime_gl_finish",83,d5,56,e4)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_gl_flush,HX_("lime_gl_flush",94,83,40,f5)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_framebuffer_renderbuffer,HX_("lime_gl_framebuffer_renderbuffer",d8,1b,4b,9a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_framebuffer_texture2D,HX_("lime_gl_framebuffer_texture2D",2b,bd,7d,0a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_framebuffer_texture_layer,HX_("lime_gl_framebuffer_texture_layer",eb,7a,6b,51)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_front_face,HX_("lime_gl_front_face",63,a0,73,7d)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_generate_mipmap,HX_("lime_gl_generate_mipmap",62,a5,38,e6)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_active_attrib,HX_("lime_gl_get_active_attrib",0a,40,b7,d1)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_active_uniform,HX_("lime_gl_get_active_uniform",74,90,d7,2a)},
{::hx::fsObject /* ::cpp::Function< int (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_active_uniform_blocki,HX_("lime_gl_get_active_uniform_blocki",27,66,77,4f)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_active_uniform_blockiv,HX_("lime_gl_get_active_uniform_blockiv",6f,fc,01,39)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_active_uniform_block_name,HX_("lime_gl_get_active_uniform_block_name",e8,aa,c0,b1)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_active_uniformsiv,HX_("lime_gl_get_active_uniformsiv",2c,cf,46,71)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_attached_shaders,HX_("lime_gl_get_attached_shaders",cc,1c,b8,0d)},
{::hx::fsObject /* ::cpp::Function< int (int,::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_attrib_location,HX_("lime_gl_get_attrib_location",f1,00,cb,a5)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_boolean,HX_("lime_gl_get_boolean",8f,e7,a6,78)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_booleanv,HX_("lime_gl_get_booleanv",07,b6,63,19)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_buffer_parameteri,HX_("lime_gl_get_buffer_parameteri",66,b2,90,b3)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_buffer_parameteri64v,HX_("lime_gl_get_buffer_parameteri64v",d2,78,ff,d1)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_buffer_parameteriv,HX_("lime_gl_get_buffer_parameteriv",50,67,0b,6b)},
{::hx::fsObject /* ::cpp::Function< Float (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_buffer_pointerv,HX_("lime_gl_get_buffer_pointerv",5f,3b,42,e0)},
{::hx::fsObject /* ::cpp::Function< void (int,Float,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_buffer_sub_data,HX_("lime_gl_get_buffer_sub_data",cf,ae,41,0b)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_gl_get_context_attributes,HX_("lime_gl_get_context_attributes",e0,c6,c6,3e)},
{::hx::fsObject /* ::cpp::Function< int () > */ ,(void *) &NativeCFFI_obj::lime_gl_get_error,HX_("lime_gl_get_error",ef,f0,e0,f5)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_extension,HX_("lime_gl_get_extension",26,d8,5e,d7)},
{::hx::fsObject /* ::cpp::Function< float (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_float,HX_("lime_gl_get_float",c3,ea,4d,85)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_floatv,HX_("lime_gl_get_floatv",53,80,df,1e)},
{::hx::fsObject /* ::cpp::Function< int (int,::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_frag_data_location,HX_("lime_gl_get_frag_data_location",96,e5,26,70)},
{::hx::fsObject /* ::cpp::Function< int (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteri,HX_("lime_gl_get_framebuffer_attachment_parameteri",51,62,ed,59)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteriv,HX_("lime_gl_get_framebuffer_attachment_parameteriv",05,a5,c8,55)},
{::hx::fsObject /* ::cpp::Function< int (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_integer,HX_("lime_gl_get_integer",a5,ba,c3,11)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_integer64v,HX_("lime_gl_get_integer64v",f3,e1,05,89)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_integer64i_v,HX_("lime_gl_get_integer64i_v",9d,fa,ae,3f)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_integerv,HX_("lime_gl_get_integerv",31,96,7f,79)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_integeri_v,HX_("lime_gl_get_integeri_v",5b,ba,2c,89)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_internalformativ,HX_("lime_gl_get_internalformativ",5a,81,a0,26)},
{::hx::fsObject /* ::cpp::Function< void (int,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_program_binary,HX_("lime_gl_get_program_binary",95,19,be,d8)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_program_info_log,HX_("lime_gl_get_program_info_log",87,8b,1c,48)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_programi,HX_("lime_gl_get_programi",9e,36,7d,de)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_programiv,HX_("lime_gl_get_programiv",18,94,12,cf)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_queryi,HX_("lime_gl_get_queryi",5a,79,d8,ac)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_queryiv,HX_("lime_gl_get_queryiv",dc,b5,91,90)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_query_objectui,HX_("lime_gl_get_query_objectui",23,9c,16,ce)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_query_objectuiv,HX_("lime_gl_get_query_objectuiv",f3,02,b2,85)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_renderbuffer_parameteri,HX_("lime_gl_get_renderbuffer_parameteri",90,dd,65,bc)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_renderbuffer_parameteriv,HX_("lime_gl_get_renderbuffer_parameteriv",e6,00,bc,1c)},
{::hx::fsObject /* ::cpp::Function< float (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_sampler_parameterf,HX_("lime_gl_get_sampler_parameterf",2d,c2,93,7c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_sampler_parameterfv,HX_("lime_gl_get_sampler_parameterfv",a9,25,b6,84)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_sampler_parameteri,HX_("lime_gl_get_sampler_parameteri",30,c2,93,7c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_sampler_parameteriv,HX_("lime_gl_get_sampler_parameteriv",46,28,b6,84)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_shader_info_log,HX_("lime_gl_get_shader_info_log",74,08,6b,9a)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_shaderi,HX_("lime_gl_get_shaderi",8b,7e,2e,5a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_shaderiv,HX_("lime_gl_get_shaderiv",8b,3b,80,8e)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_shader_precision_format,HX_("lime_gl_get_shader_precision_format",d9,5f,b1,89)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_shader_source,HX_("lime_gl_get_shader_source",1c,86,a3,e7)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_string,HX_("lime_gl_get_string",ca,85,b9,ee)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_stringi,HX_("lime_gl_get_stringi",5f,8b,9b,f3)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_sync_parameteri,HX_("lime_gl_get_sync_parameteri",2b,c5,94,ef)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_sync_parameteriv,HX_("lime_gl_get_sync_parameteriv",eb,c0,97,b2)},
{::hx::fsObject /* ::cpp::Function< float (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_tex_parameterf,HX_("lime_gl_get_tex_parameterf",2e,b7,53,ae)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_tex_parameterfv,HX_("lime_gl_get_tex_parameterfv",88,91,ec,da)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_tex_parameteri,HX_("lime_gl_get_tex_parameteri",31,b7,53,ae)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_tex_parameteriv,HX_("lime_gl_get_tex_parameteriv",25,94,ec,da)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_transform_feedback_varying,HX_("lime_gl_get_transform_feedback_varying",62,3a,c3,2b)},
{::hx::fsObject /* ::cpp::Function< float (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniformf,HX_("lime_gl_get_uniformf",eb,19,aa,5a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniformfv,HX_("lime_gl_get_uniformfv",2b,94,2c,fa)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniformi,HX_("lime_gl_get_uniformi",ee,19,aa,5a)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniformiv,HX_("lime_gl_get_uniformiv",c8,96,2c,fa)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniformui,HX_("lime_gl_get_uniformui",2f,a1,2c,fa)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniformuiv,HX_("lime_gl_get_uniformuiv",67,68,e0,ec)},
{::hx::fsObject /* ::cpp::Function< int (int,::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniform_block_index,HX_("lime_gl_get_uniform_block_index",fc,f7,fa,16)},
{::hx::fsObject /* ::cpp::Function< int (int,::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_uniform_location,HX_("lime_gl_get_uniform_location",19,0c,33,6c)},
{::hx::fsObject /* ::cpp::Function< float (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribf,HX_("lime_gl_get_vertex_attribf",ba,30,62,1b)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribfv,HX_("lime_gl_get_vertex_attribfv",7c,72,88,da)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribi,HX_("lime_gl_get_vertex_attribi",bd,30,62,1b)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribiv,HX_("lime_gl_get_vertex_attribiv",19,75,88,da)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribii,HX_("lime_gl_get_vertex_attribii",0c,75,88,da)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribiiv,HX_("lime_gl_get_vertex_attribiiv",ea,f5,dd,5c)},
{::hx::fsObject /* ::cpp::Function< int (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribiui,HX_("lime_gl_get_vertex_attribiui",51,00,de,5c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attribiuiv,HX_("lime_gl_get_vertex_attribiuiv",05,47,62,e5)},
{::hx::fsObject /* ::cpp::Function< Float (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_get_vertex_attrib_pointerv,HX_("lime_gl_get_vertex_attrib_pointerv",cc,80,45,bc)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_hint,HX_("lime_gl_hint",b7,26,75,cc)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_invalidate_framebuffer,HX_("lime_gl_invalidate_framebuffer",19,9e,02,01)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_invalidate_sub_framebuffer,HX_("lime_gl_invalidate_sub_framebuffer",9a,3b,16,21)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_buffer,HX_("lime_gl_is_buffer",c5,ec,c6,b4)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_enabled,HX_("lime_gl_is_enabled",1c,a1,e8,45)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_framebuffer,HX_("lime_gl_is_framebuffer",08,9b,19,ab)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_program,HX_("lime_gl_is_program",1f,e7,b0,bb)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_query,HX_("lime_gl_is_query",e3,3a,72,b0)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_renderbuffer,HX_("lime_gl_is_renderbuffer",5b,1e,da,91)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_sampler,HX_("lime_gl_is_sampler",a3,61,81,4b)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_shader,HX_("lime_gl_is_shader",ea,ee,52,01)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_sync,HX_("lime_gl_is_sync",e0,fe,93,c7)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_texture,HX_("lime_gl_is_texture",76,65,98,66)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_transform_feedback,HX_("lime_gl_is_transform_feedback",3d,a0,bc,42)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_is_vertex_array,HX_("lime_gl_is_vertex_array",c3,04,7b,13)},
{::hx::fsObject /* ::cpp::Function< void (float) > */ ,(void *) &NativeCFFI_obj::lime_gl_line_width,HX_("lime_gl_line_width",6b,71,5f,53)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_link_program,HX_("lime_gl_link_program",2f,df,cf,33)},
{::hx::fsObject /* ::cpp::Function< Float (int,Float,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_map_buffer_range,HX_("lime_gl_map_buffer_range",f1,71,1b,50)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_object_deregister,HX_("lime_gl_object_deregister",74,d8,a1,d6)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_object_from_id,HX_("lime_gl_object_from_id",40,ff,06,4e)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int,int, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_gl_object_register,HX_("lime_gl_object_register",f3,13,aa,16)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_gl_pause_transform_feedback,HX_("lime_gl_pause_transform_feedback",11,9d,6a,c1)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_pixel_storei,HX_("lime_gl_pixel_storei",71,b2,56,3d)},
{::hx::fsObject /* ::cpp::Function< void (float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_polygon_offset,HX_("lime_gl_polygon_offset",28,8f,6c,e3)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_program_binary,HX_("lime_gl_program_binary",cc,e0,e1,77)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_program_parameteri,HX_("lime_gl_program_parameteri",eb,a4,8e,4e)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_read_buffer,HX_("lime_gl_read_buffer",d9,d6,53,39)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_read_pixels,HX_("lime_gl_read_pixels",06,09,69,f5)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_gl_release_shader_compiler,HX_("lime_gl_release_shader_compiler",51,e6,f6,c0)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_renderbuffer_storage,HX_("lime_gl_renderbuffer_storage",c2,94,f1,7b)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_renderbuffer_storage_multisample,HX_("lime_gl_renderbuffer_storage_multisample",26,e9,f0,80)},
{::hx::fsObject /* ::cpp::Function< void () > */ ,(void *) &NativeCFFI_obj::lime_gl_resume_transform_feedback,HX_("lime_gl_resume_transform_feedback",5a,c0,f6,d5)},
{::hx::fsObject /* ::cpp::Function< void (float,bool) > */ ,(void *) &NativeCFFI_obj::lime_gl_sample_coverage,HX_("lime_gl_sample_coverage",ad,98,c5,86)},
{::hx::fsObject /* ::cpp::Function< void (int,int,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_sampler_parameterf,HX_("lime_gl_sampler_parameterf",e4,f0,b0,51)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_sampler_parameteri,HX_("lime_gl_sampler_parameteri",e7,f0,b0,51)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_scissor,HX_("lime_gl_scissor",ec,1c,b2,c3)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,Float,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_shader_binary,HX_("lime_gl_shader_binary",eb,dd,bc,3a)},
{::hx::fsObject /* ::cpp::Function< void (int,::String) > */ ,(void *) &NativeCFFI_obj::lime_gl_shader_source,HX_("lime_gl_shader_source",c5,d2,e2,7f)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_stencil_func,HX_("lime_gl_stencil_func",d7,b0,4f,64)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_stencil_func_separate,HX_("lime_gl_stencil_func_separate",0b,13,77,19)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_stencil_mask,HX_("lime_gl_stencil_mask",7f,06,e1,68)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_stencil_mask_separate,HX_("lime_gl_stencil_mask_separate",63,c8,71,65)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_stencil_op,HX_("lime_gl_stencil_op",f4,8b,0c,a5)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_stencil_op_separate,HX_("lime_gl_stencil_op_separate",4e,6c,36,5e)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_image_2d,HX_("lime_gl_tex_image_2d",5e,ab,7a,34)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_image_3d,HX_("lime_gl_tex_image_3d",3d,ac,7a,34)},
{::hx::fsObject /* ::cpp::Function< void (int,int,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_parameterf,HX_("lime_gl_tex_parameterf",65,7e,77,4d)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_parameteri,HX_("lime_gl_tex_parameteri",68,7e,77,4d)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_storage_2d,HX_("lime_gl_tex_storage_2d",7e,19,2d,9e)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_storage_3d,HX_("lime_gl_tex_storage_3d",5d,1a,2d,9e)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_sub_image_2d,HX_("lime_gl_tex_sub_image_2d",3d,4d,7e,52)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_tex_sub_image_3d,HX_("lime_gl_tex_sub_image_3d",1c,4e,7e,52)},
{::hx::fsObject /* ::cpp::Function< void (int, ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_transform_feedback_varyings,HX_("lime_gl_transform_feedback_varyings",3a,9e,18,15)},
{::hx::fsObject /* ::cpp::Function< void (int,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform1f,HX_("lime_gl_uniform1f",19,ea,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform1fv,HX_("lime_gl_uniform1fv",3d,ec,80,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform1i,HX_("lime_gl_uniform1i",1c,ea,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform1iv,HX_("lime_gl_uniform1iv",da,ee,80,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform1ui,HX_("lime_gl_uniform1ui",41,f9,80,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform1uiv,HX_("lime_gl_uniform1uiv",15,20,59,c9)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform2f,HX_("lime_gl_uniform2f",f8,ea,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform2fv,HX_("lime_gl_uniform2fv",7e,ae,81,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform2i,HX_("lime_gl_uniform2i",fb,ea,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform2iv,HX_("lime_gl_uniform2iv",1b,b1,81,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform2ui,HX_("lime_gl_uniform2ui",82,bb,81,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform2uiv,HX_("lime_gl_uniform2uiv",b4,56,02,ca)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform3f,HX_("lime_gl_uniform3f",d7,eb,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform3fv,HX_("lime_gl_uniform3fv",bf,70,82,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform3i,HX_("lime_gl_uniform3i",da,eb,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform3iv,HX_("lime_gl_uniform3iv",5c,73,82,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform3ui,HX_("lime_gl_uniform3ui",c3,7d,82,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform3uiv,HX_("lime_gl_uniform3uiv",53,8d,ab,ca)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform4f,HX_("lime_gl_uniform4f",b6,ec,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform4fv,HX_("lime_gl_uniform4fv",00,33,83,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform4i,HX_("lime_gl_uniform4i",b9,ec,eb,46)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform4iv,HX_("lime_gl_uniform4iv",9d,35,83,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform4ui,HX_("lime_gl_uniform4ui",04,40,83,c7)},
{::hx::fsObject /* ::cpp::Function< void (int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform4uiv,HX_("lime_gl_uniform4uiv",f2,c3,54,cb)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_block_binding,HX_("lime_gl_uniform_block_binding",58,14,de,ff)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix2fv,HX_("lime_gl_uniform_matrix2fv",26,91,85,1c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix2x3fv,HX_("lime_gl_uniform_matrix2x3fv",21,00,9c,81)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix2x4fv,HX_("lime_gl_uniform_matrix2x4fv",62,c2,9c,81)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix3fv,HX_("lime_gl_uniform_matrix3fv",67,53,86,1c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix3x2fv,HX_("lime_gl_uniform_matrix3x2fv",61,d2,01,15)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix3x4fv,HX_("lime_gl_uniform_matrix3x4fv",e3,56,03,15)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix4fv,HX_("lime_gl_uniform_matrix4fv",a8,15,87,1c)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix4x2fv,HX_("lime_gl_uniform_matrix4x2fv",e2,66,68,a8)},
{::hx::fsObject /* ::cpp::Function< void (int,int,bool,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_uniform_matrix4x3fv,HX_("lime_gl_uniform_matrix4x3fv",23,29,69,a8)},
{::hx::fsObject /* ::cpp::Function< bool (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_unmap_buffer,HX_("lime_gl_unmap_buffer",4c,58,96,21)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_use_program,HX_("lime_gl_use_program",1c,8c,b8,22)},
{::hx::fsObject /* ::cpp::Function< void (int) > */ ,(void *) &NativeCFFI_obj::lime_gl_validate_program,HX_("lime_gl_validate_program",cb,eb,10,5b)},
{::hx::fsObject /* ::cpp::Function< void (int,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib1f,HX_("lime_gl_vertex_attrib1f",2a,cd,b2,7a)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib1fv,HX_("lime_gl_vertex_attrib1fv",0c,b8,c0,e1)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib2f,HX_("lime_gl_vertex_attrib2f",09,ce,b2,7a)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib2fv,HX_("lime_gl_vertex_attrib2fv",4d,7a,c1,e1)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib3f,HX_("lime_gl_vertex_attrib3f",e8,ce,b2,7a)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib3fv,HX_("lime_gl_vertex_attrib3fv",8e,3c,c2,e1)},
{::hx::fsObject /* ::cpp::Function< void (int,float,float,float,float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib4f,HX_("lime_gl_vertex_attrib4f",c7,cf,b2,7a)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib4fv,HX_("lime_gl_vertex_attrib4fv",cf,fe,c2,e1)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attribi4i,HX_("lime_gl_vertex_attribi4i",a9,0a,eb,e1)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attribi4iv,HX_("lime_gl_vertex_attribi4iv",ad,49,be,cb)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attribi4ui,HX_("lime_gl_vertex_attribi4ui",14,54,be,cb)},
{::hx::fsObject /* ::cpp::Function< void (int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attribi4uiv,HX_("lime_gl_vertex_attribi4uiv",e2,3d,cb,7a)},
{::hx::fsObject /* ::cpp::Function< void (int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib_divisor,HX_("lime_gl_vertex_attrib_divisor",b4,fe,35,35)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib_ipointer,HX_("lime_gl_vertex_attrib_ipointer",5e,81,51,cb)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,bool,int,Float) > */ ,(void *) &NativeCFFI_obj::lime_gl_vertex_attrib_pointer,HX_("lime_gl_vertex_attrib_pointer",13,fa,74,15)},
{::hx::fsObject /* ::cpp::Function< void (int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_viewport,HX_("lime_gl_viewport",96,8d,70,cf)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_gl_wait_sync,HX_("lime_gl_wait_sync",75,3c,87,68)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (Float,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_create,HX_("lime_hb_blob_create",03,5a,e8,38)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_create_sub_blob,HX_("lime_hb_blob_create_sub_blob",b8,04,ce,f6)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_get_data,HX_("lime_hb_blob_get_data",7a,14,5f,1d)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_get_data_writable,HX_("lime_hb_blob_get_data_writable",05,0d,90,9c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_get_empty,HX_("lime_hb_blob_get_empty",3d,02,25,31)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_get_length,HX_("lime_hb_blob_get_length",36,87,2b,ff)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_is_immutable,HX_("lime_hb_blob_is_immutable",b4,3a,7f,8f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_blob_make_immutable,HX_("lime_hb_blob_make_immutable",78,a5,06,a7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_add,HX_("lime_hb_buffer_add",9d,96,94,46)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_add_codepoints,HX_("lime_hb_buffer_add_codepoints",b2,94,6a,b3)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,::String,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_add_utf8,HX_("lime_hb_buffer_add_utf8",53,c1,d2,af)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_add_utf16,HX_("lime_hb_buffer_add_utf16",6a,61,96,28)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_add_utf32,HX_("lime_hb_buffer_add_utf32",24,63,96,28)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_allocation_successful,HX_("lime_hb_buffer_allocation_successful",d5,f0,c9,3f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_clear_contents,HX_("lime_hb_buffer_clear_contents",50,66,d5,37)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_create,HX_("lime_hb_buffer_create",00,b8,f9,78)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_cluster_level,HX_("lime_hb_buffer_get_cluster_level",12,90,e4,6c)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_content_type,HX_("lime_hb_buffer_get_content_type",4d,1d,ed,c0)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_direction,HX_("lime_hb_buffer_get_direction",92,cd,df,80)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_empty,HX_("lime_hb_buffer_get_empty",60,c0,c6,b1)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_flags,HX_("lime_hb_buffer_get_flags",1a,b1,78,44)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_glyph_infos,HX_("lime_hb_buffer_get_glyph_infos",45,1c,99,b9)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_glyph_positions,HX_("lime_hb_buffer_get_glyph_positions",aa,e7,5e,7a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_language,HX_("lime_hb_buffer_get_language",65,20,7e,a8)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_length,HX_("lime_hb_buffer_get_length",b3,27,10,0c)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_replacement_codepoint,HX_("lime_hb_buffer_get_replacement_codepoint",e9,29,d2,8e)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_script,HX_("lime_hb_buffer_get_script",d8,e0,68,b4)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_get_segment_properties,HX_("lime_hb_buffer_get_segment_properties",8c,12,c8,c1)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_guess_segment_properties,HX_("lime_hb_buffer_guess_segment_properties",eb,a9,b5,02)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_normalize_glyphs,HX_("lime_hb_buffer_normalize_glyphs",fd,cc,6f,57)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_preallocate,HX_("lime_hb_buffer_preallocate",5c,0e,1f,41)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_reset,HX_("lime_hb_buffer_reset",4b,05,62,50)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_reverse,HX_("lime_hb_buffer_reverse",9e,cb,18,6b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_reverse_clusters,HX_("lime_hb_buffer_reverse_clusters",3a,b8,e1,69)},
{::hx::fsObject /* ::cpp::Function< int (::String) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_serialize_format_from_string,HX_("lime_hb_buffer_serialize_format_from_string",41,b0,64,0e)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_serialize_format_to_string,HX_("lime_hb_buffer_serialize_format_to_string",90,7f,d4,ee)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_serialize_list_formats,HX_("lime_hb_buffer_serialize_list_formats",3e,67,15,57)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_cluster_level,HX_("lime_hb_buffer_set_cluster_level",1e,68,52,90)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_content_type,HX_("lime_hb_buffer_set_content_type",c1,0a,2f,17)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_direction,HX_("lime_hb_buffer_set_direction",9e,af,e5,c5)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_flags,HX_("lime_hb_buffer_set_flags",26,9d,c9,27)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_language,HX_("lime_hb_buffer_set_language",d9,43,77,bd)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_length,HX_("lime_hb_buffer_set_length",27,c6,8d,0f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_replacement_codepoint,HX_("lime_hb_buffer_set_replacement_codepoint",f5,ed,28,fb)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_script,HX_("lime_hb_buffer_set_script",4c,7f,e6,b7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_buffer_set_segment_properties,HX_("lime_hb_buffer_set_segment_properties",00,8f,73,f5)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_create,HX_("lime_hb_face_create",c3,4a,75,c1)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_face_get_empty,HX_("lime_hb_face_get_empty",7d,09,37,aa)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_get_glyph_count,HX_("lime_hb_face_get_glyph_count",ac,b5,21,87)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_get_index,HX_("lime_hb_face_get_index",02,6a,71,f8)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_get_upem,HX_("lime_hb_face_get_upem",93,aa,e1,a2)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_is_immutable,HX_("lime_hb_face_is_immutable",74,3b,79,58)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_make_immutable,HX_("lime_hb_face_make_immutable",38,56,12,23)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_reference_blob,HX_("lime_hb_face_reference_blob",58,b4,67,d5)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_reference_table,HX_("lime_hb_face_reference_table",b3,5c,3d,3b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_set_glyph_count,HX_("lime_hb_face_set_glyph_count",b8,32,ed,82)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_set_index,HX_("lime_hb_face_set_index",0e,56,c2,db)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_face_set_upem,HX_("lime_hb_face_set_upem",07,04,3f,51)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String) > */ ,(void *) &NativeCFFI_obj::lime_hb_feature_from_string,HX_("lime_hb_feature_from_string",22,86,04,60)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_feature_to_string,HX_("lime_hb_feature_to_string",31,6b,a9,70)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_add_glyph_origin_for_direction,HX_("lime_hb_font_add_glyph_origin_for_direction",16,f4,0e,0c)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_create,HX_("lime_hb_font_create",d1,0b,dc,af)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_create_sub_font,HX_("lime_hb_font_create_sub_font",9c,c9,ef,c4)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_empty,HX_("lime_hb_font_get_empty",2f,e5,ff,da)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_face,HX_("lime_hb_font_get_face",3b,b4,4f,ff)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_glyph_advance_for_direction,HX_("lime_hb_font_get_glyph_advance_for_direction",9b,ae,b3,f7)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_glyph_kerning_for_direction,HX_("lime_hb_font_get_glyph_kerning_for_direction",65,0e,ef,53)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_glyph_origin_for_direction,HX_("lime_hb_font_get_glyph_origin_for_direction",c1,85,39,23)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_parent,HX_("lime_hb_font_get_parent",48,a8,4d,43)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_ppem,HX_("lime_hb_font_get_ppem",06,3a,f7,05)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_get_scale,HX_("lime_hb_font_get_scale",2c,79,f4,e3)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,::String) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_glyph_from_string,HX_("lime_hb_font_glyph_from_string",3e,05,35,b4)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_glyph_to_string,HX_("lime_hb_font_glyph_to_string",4d,ab,74,0b)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_is_immutable,HX_("lime_hb_font_is_immutable",02,3b,13,0c)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_make_immutable,HX_("lime_hb_font_make_immutable",46,d5,d5,70)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_set_ppem,HX_("lime_hb_font_set_ppem",7a,93,54,b4)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_set_scale,HX_("lime_hb_font_set_scale",38,65,45,c7)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_font_subtract_glyph_origin_for_direction,HX_("lime_hb_font_subtract_glyph_origin_for_direction",39,ae,0b,45)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_ft_font_create,HX_("lime_hb_ft_font_create",f6,42,a2,1b)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_ft_font_create_referenced,HX_("lime_hb_ft_font_create_referenced",22,ec,ff,8f)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_ft_font_get_load_flags,HX_("lime_hb_ft_font_get_load_flags",71,1b,26,fb)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_ft_font_set_load_flags,HX_("lime_hb_ft_font_set_load_flags",e5,03,46,1b)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String) > */ ,(void *) &NativeCFFI_obj::lime_hb_language_from_string,HX_("lime_hb_language_from_string",da,f2,80,39)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_language_get_default,HX_("lime_hb_language_get_default",6c,b5,a8,10)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_language_to_string,HX_("lime_hb_language_to_string",e9,b9,2a,6c)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_segment_properties_equal,HX_("lime_hb_segment_properties_equal",2f,b4,9f,75)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_segment_properties_hash,HX_("lime_hb_segment_properties_hash",b3,b3,9e,c5)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_add,HX_("lime_hb_set_add",69,9e,67,5b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_add_range,HX_("lime_hb_set_add_range",27,c0,46,90)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_allocation_successful,HX_("lime_hb_set_allocation_successful",a1,db,56,67)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_clear,HX_("lime_hb_set_clear",d5,bf,72,e7)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_set_create,HX_("lime_hb_set_create",b4,97,5c,11)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_del,HX_("lime_hb_set_del",13,e6,69,5b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *,int,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_del_range,HX_("lime_hb_set_del_range",51,23,f9,8e)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * () > */ ,(void *) &NativeCFFI_obj::lime_hb_set_get_empty,HX_("lime_hb_set_get_empty",2c,a9,33,e0)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_get_max,HX_("lime_hb_set_get_max",83,43,05,35)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_get_min,HX_("lime_hb_set_get_min",71,4a,05,35)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_get_population,HX_("lime_hb_set_get_population",8e,68,7e,75)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_has,HX_("lime_hb_set_has",a2,eb,6c,5b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_intersect,HX_("lime_hb_set_intersect",27,13,25,6f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_invert,HX_("lime_hb_set_invert",ce,17,26,35)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_is_empty,HX_("lime_hb_set_is_empty",f0,77,1b,f7)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_is_equal,HX_("lime_hb_set_is_equal",17,0d,c4,f9)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_next,HX_("lime_hb_set_next",ab,97,db,a7)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_next_range,HX_("lime_hb_set_next_range",e9,16,04,4e)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_set,HX_("lime_hb_set_set",ea,47,75,5b)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_subtract,HX_("lime_hb_set_subtract",cc,43,96,5f)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_symmetric_difference,HX_("lime_hb_set_symmetric_difference",bd,ac,e7,88)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_set_union,HX_("lime_hb_set_union",57,b3,fe,45)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_hb_shape,HX_("lime_hb_shape",86,d2,1d,08)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_bitrate,HX_("lime_vorbis_file_bitrate",6c,c8,60,d8)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_bitrate_instant,HX_("lime_vorbis_file_bitrate_instant",ce,44,94,97)},
{::hx::fsObject /* ::cpp::Function< void ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_clear,HX_("lime_vorbis_file_clear",0c,e6,c6,1a)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_comment,HX_("lime_vorbis_file_comment",9e,4c,01,5d)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_crosslap,HX_("lime_vorbis_file_crosslap",bc,bd,3f,cb)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_from_bytes,HX_("lime_vorbis_file_from_bytes",b7,bf,11,7f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * (::String) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_from_file,HX_("lime_vorbis_file_from_file",b0,84,41,97)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_info,HX_("lime_vorbis_file_info",cf,18,14,61)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_pcm_seek,HX_("lime_vorbis_file_pcm_seek",de,f4,4d,f2)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_pcm_seek_lap,HX_("lime_vorbis_file_pcm_seek_lap",3a,49,6a,74)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_pcm_seek_page,HX_("lime_vorbis_file_pcm_seek_page",90,9c,3a,6b)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_pcm_seek_page_lap,HX_("lime_vorbis_file_pcm_seek_page_lap",ec,b1,89,3b)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_raw_seek,HX_("lime_vorbis_file_raw_seek",50,87,19,11)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_raw_seek_lap,HX_("lime_vorbis_file_raw_seek_lap",ac,fc,14,79)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_pcm_tell,HX_("lime_vorbis_file_pcm_tell",97,31,f7,f2)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_pcm_total,HX_("lime_vorbis_file_pcm_total",9e,5d,f6,ab)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_raw_tell,HX_("lime_vorbis_file_raw_tell",09,c4,c2,11)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_raw_total,HX_("lime_vorbis_file_raw_total",ec,ee,4a,7f)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int,int,bool,int,bool) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_read,HX_("lime_vorbis_file_read",b7,2b,00,67)},
{::hx::fsObject /* ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_read_float,HX_("lime_vorbis_file_read_float",d4,5b,48,7a)},
{::hx::fsObject /* ::cpp::Function< bool ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_seekable,HX_("lime_vorbis_file_seekable",f3,33,1c,9b)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_serial_number,HX_("lime_vorbis_file_serial_number",73,a0,0a,65)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_streams,HX_("lime_vorbis_file_streams",32,ae,d5,d1)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_time_seek,HX_("lime_vorbis_file_time_seek",29,26,3e,a0)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_time_seek_lap,HX_("lime_vorbis_file_time_seek_lap",05,7c,d4,ab)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_time_seek_page,HX_("lime_vorbis_file_time_seek_page",65,db,bc,b0)},
{::hx::fsObject /* ::cpp::Function< int ( ::hx::Object *,Float) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_time_seek_page_lap,HX_("lime_vorbis_file_time_seek_page_lap",41,7f,5c,e6)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_time_tell,HX_("lime_vorbis_file_time_tell",e2,62,e7,a0)},
{::hx::fsObject /* ::cpp::Function< Float ( ::hx::Object *,int) > */ ,(void *) &NativeCFFI_obj::lime_vorbis_file_time_total,HX_("lime_vorbis_file_time_total",f3,4d,31,30)},
{ ::hx::fsUnknown, 0, null()}
};
#endif
static void NativeCFFI_obj_sMarkStatics(HX_MARK_PARAMS) {
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_create,"lime_application_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_event_manager_register,"lime_application_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_exec,"lime_application_exec");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_init,"lime_application_init");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_quit,"lime_application_quit");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_set_frame_rate,"lime_application_set_frame_rate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_application_update,"lime_application_update");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_audio_load,"lime_audio_load");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_audio_load_bytes,"lime_audio_load_bytes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_audio_load_file,"lime_audio_load_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_bytes_from_data_pointer,"lime_bytes_from_data_pointer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_bytes_get_data_pointer,"lime_bytes_get_data_pointer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_bytes_get_data_pointer_offset,"lime_bytes_get_data_pointer_offset");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_bytes_read_file,"lime_bytes_read_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cffi_get_native_pointer,"lime_cffi_get_native_pointer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_clipboard_event_manager_register,"lime_clipboard_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_clipboard_get_text,"lime_clipboard_get_text");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_clipboard_set_text,"lime_clipboard_set_text");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_data_pointer_offset,"lime_data_pointer_offset");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_deflate_compress,"lime_deflate_compress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_deflate_decompress,"lime_deflate_decompress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_drop_event_manager_register,"lime_drop_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_open_directory,"lime_file_dialog_open_directory");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_open_file,"lime_file_dialog_open_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_open_files,"lime_file_dialog_open_files");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_save_file,"lime_file_dialog_save_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_create,"lime_file_watcher_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_add_directory,"lime_file_watcher_add_directory");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_remove_directory,"lime_file_watcher_remove_directory");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_update,"lime_file_watcher_update");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_ascender,"lime_font_get_ascender");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_descender,"lime_font_get_descender");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_family_name,"lime_font_get_family_name");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_glyph_index,"lime_font_get_glyph_index");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_glyph_indices,"lime_font_get_glyph_indices");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_glyph_metrics,"lime_font_get_glyph_metrics");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_height,"lime_font_get_height");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_num_glyphs,"lime_font_get_num_glyphs");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_underline_position,"lime_font_get_underline_position");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_underline_thickness,"lime_font_get_underline_thickness");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_get_units_per_em,"lime_font_get_units_per_em");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_load,"lime_font_load");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_load_bytes,"lime_font_load_bytes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_load_file,"lime_font_load_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_outline_decompose,"lime_font_outline_decompose");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_render_glyph,"lime_font_render_glyph");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_render_glyphs,"lime_font_render_glyphs");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_font_set_size,"lime_font_set_size");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_add_mappings,"lime_gamepad_add_mappings");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_get_device_guid,"lime_gamepad_get_device_guid");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_get_device_name,"lime_gamepad_get_device_name");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_event_manager_register,"lime_gamepad_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gzip_compress,"lime_gzip_compress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gzip_decompress,"lime_gzip_decompress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_haptic_vibrate,"lime_haptic_vibrate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_encode,"lime_image_encode");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_load,"lime_image_load");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_load_bytes,"lime_image_load_bytes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_load_file,"lime_image_load_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_color_transform,"lime_image_data_util_color_transform");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_copy_channel,"lime_image_data_util_copy_channel");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_copy_pixels,"lime_image_data_util_copy_pixels");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_fill_rect,"lime_image_data_util_fill_rect");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_flood_fill,"lime_image_data_util_flood_fill");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_get_pixels,"lime_image_data_util_get_pixels");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_merge,"lime_image_data_util_merge");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_multiply_alpha,"lime_image_data_util_multiply_alpha");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_resize,"lime_image_data_util_resize");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_set_format,"lime_image_data_util_set_format");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_set_pixels,"lime_image_data_util_set_pixels");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_threshold,"lime_image_data_util_threshold");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_unmultiply_alpha,"lime_image_data_util_unmultiply_alpha");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_device_guid,"lime_joystick_get_device_guid");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_device_name,"lime_joystick_get_device_name");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_axes,"lime_joystick_get_num_axes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_buttons,"lime_joystick_get_num_buttons");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_hats,"lime_joystick_get_num_hats");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_trackballs,"lime_joystick_get_num_trackballs");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_joystick_event_manager_register,"lime_joystick_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_jpeg_decode_bytes,"lime_jpeg_decode_bytes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_jpeg_decode_file,"lime_jpeg_decode_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_key_code_from_scan_code,"lime_key_code_from_scan_code");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_key_code_to_scan_code,"lime_key_code_to_scan_code");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_key_event_manager_register,"lime_key_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_lzma_compress,"lime_lzma_compress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_lzma_decompress,"lime_lzma_decompress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_mouse_event_manager_register,"lime_mouse_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_neko_execute,"lime_neko_execute");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_png_decode_bytes,"lime_png_decode_bytes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_png_decode_file,"lime_png_decode_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_render_event_manager_register,"lime_render_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_sensor_event_manager_register,"lime_sensor_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_allow_screen_timeout,"lime_system_get_allow_screen_timeout");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_set_allow_screen_timeout,"lime_system_set_allow_screen_timeout");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_device_model,"lime_system_get_device_model");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_device_vendor,"lime_system_get_device_vendor");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_directory,"lime_system_get_directory");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_display,"lime_system_get_display");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_ios_tablet,"lime_system_get_ios_tablet");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_num_displays,"lime_system_get_num_displays");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_platform_label,"lime_system_get_platform_label");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_platform_name,"lime_system_get_platform_name");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_platform_version,"lime_system_get_platform_version");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_get_timer,"lime_system_get_timer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_open_file,"lime_system_open_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_system_open_url,"lime_system_open_url");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_text_event_manager_register,"lime_text_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_touch_event_manager_register,"lime_touch_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_alert,"lime_window_alert");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_close,"lime_window_close");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_context_flip,"lime_window_context_flip");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_context_lock,"lime_window_context_lock");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_context_make_current,"lime_window_context_make_current");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_context_unlock,"lime_window_context_unlock");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_create,"lime_window_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_focus,"lime_window_focus");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_context,"lime_window_get_context");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_context_type,"lime_window_get_context_type");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_display,"lime_window_get_display");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_display_mode,"lime_window_get_display_mode");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_height,"lime_window_get_height");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_id,"lime_window_get_id");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_mouse_lock,"lime_window_get_mouse_lock");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_scale,"lime_window_get_scale");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_text_input_enabled,"lime_window_get_text_input_enabled");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_width,"lime_window_get_width");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_x,"lime_window_get_x");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_get_y,"lime_window_get_y");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_move,"lime_window_move");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_read_pixels,"lime_window_read_pixels");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_resize,"lime_window_resize");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_borderless,"lime_window_set_borderless");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_cursor,"lime_window_set_cursor");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_display_mode,"lime_window_set_display_mode");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_fullscreen,"lime_window_set_fullscreen");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_icon,"lime_window_set_icon");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_maximized,"lime_window_set_maximized");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_minimized,"lime_window_set_minimized");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_mouse_lock,"lime_window_set_mouse_lock");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_resizable,"lime_window_set_resizable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_text_input_enabled,"lime_window_set_text_input_enabled");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_set_title,"lime_window_set_title");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_warp_mouse,"lime_window_warp_mouse");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_window_event_manager_register,"lime_window_event_manager_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_zlib_compress,"lime_zlib_compress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_zlib_decompress,"lime_zlib_decompress");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_buffer_data,"lime_al_buffer_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_buffer3f,"lime_al_buffer3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_buffer3i,"lime_al_buffer3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferf,"lime_al_bufferf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferfv,"lime_al_bufferfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferi,"lime_al_bufferi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferiv,"lime_al_bufferiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_cleanup,"lime_al_cleanup");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_buffer,"lime_al_delete_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_buffers,"lime_al_delete_buffers");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_source,"lime_al_delete_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_sources,"lime_al_delete_sources");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_disable,"lime_al_disable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_distance_model,"lime_al_distance_model");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_doppler_factor,"lime_al_doppler_factor");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_doppler_velocity,"lime_al_doppler_velocity");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_enable,"lime_al_enable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_source,"lime_al_gen_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_sources,"lime_al_gen_sources");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_boolean,"lime_al_get_boolean");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_booleanv,"lime_al_get_booleanv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_buffer,"lime_al_gen_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_buffers,"lime_al_gen_buffers");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_buffer3f,"lime_al_get_buffer3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_buffer3i,"lime_al_get_buffer3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferf,"lime_al_get_bufferf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferfv,"lime_al_get_bufferfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferi,"lime_al_get_bufferi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferiv,"lime_al_get_bufferiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_double,"lime_al_get_double");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_doublev,"lime_al_get_doublev");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_enum_value,"lime_al_get_enum_value");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_error,"lime_al_get_error");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_float,"lime_al_get_float");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_floatv,"lime_al_get_floatv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_integer,"lime_al_get_integer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_integerv,"lime_al_get_integerv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listener3f,"lime_al_get_listener3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listener3i,"lime_al_get_listener3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listenerf,"lime_al_get_listenerf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listenerfv,"lime_al_get_listenerfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listeneri,"lime_al_get_listeneri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listeneriv,"lime_al_get_listeneriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_proc_address,"lime_al_get_proc_address");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_source3f,"lime_al_get_source3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_source3i,"lime_al_get_source3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourcef,"lime_al_get_sourcef");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourcefv,"lime_al_get_sourcefv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourcei,"lime_al_get_sourcei");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourceiv,"lime_al_get_sourceiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_string,"lime_al_get_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_buffer,"lime_al_is_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_enabled,"lime_al_is_enabled");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_extension_present,"lime_al_is_extension_present");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_source,"lime_al_is_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_listener3f,"lime_al_listener3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_listener3i,"lime_al_listener3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_listenerf,"lime_al_listenerf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_listenerfv,"lime_al_listenerfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_listeneri,"lime_al_listeneri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_listeneriv,"lime_al_listeneriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_pause,"lime_al_source_pause");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_pausev,"lime_al_source_pausev");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_play,"lime_al_source_play");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_playv,"lime_al_source_playv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_queue_buffers,"lime_al_source_queue_buffers");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_rewind,"lime_al_source_rewind");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_rewindv,"lime_al_source_rewindv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_stop,"lime_al_source_stop");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_stopv,"lime_al_source_stopv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source_unqueue_buffers,"lime_al_source_unqueue_buffers");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source3f,"lime_al_source3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_source3i,"lime_al_source3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_sourcef,"lime_al_sourcef");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_sourcefv,"lime_al_sourcefv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_sourcei,"lime_al_sourcei");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_sourceiv,"lime_al_sourceiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_speed_of_sound,"lime_al_speed_of_sound");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_close_device,"lime_alc_close_device");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_create_context,"lime_alc_create_context");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_destroy_context,"lime_alc_destroy_context");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_contexts_device,"lime_alc_get_contexts_device");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_current_context,"lime_alc_get_current_context");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_error,"lime_alc_get_error");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_integerv,"lime_alc_get_integerv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_string,"lime_alc_get_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_make_context_current,"lime_alc_make_context_current");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_open_device,"lime_alc_open_device");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_pause_device,"lime_alc_pause_device");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_process_context,"lime_alc_process_context");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_resume_device,"lime_alc_resume_device");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_alc_suspend_context,"lime_alc_suspend_context");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_filter,"lime_al_gen_filter");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_filteri,"lime_al_filteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_filterf,"lime_al_filterf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_remove_direct_filter,"lime_al_remove_direct_filter");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_filter,"lime_al_is_filter");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_get_filteri,"lime_al_get_filteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_effect,"lime_al_gen_effect");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_effectf,"lime_al_effectf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_effectfv,"lime_al_effectfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_effecti,"lime_al_effecti");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_effectiv,"lime_al_effectiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_effect,"lime_al_is_effect");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_aux,"lime_al_gen_aux");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_auxf,"lime_al_auxf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_auxfv,"lime_al_auxfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_auxi,"lime_al_auxi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_auxiv,"lime_al_auxiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_is_aux,"lime_al_is_aux");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_al_remove_send,"lime_al_remove_send");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_arc,"lime_cairo_arc");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_arc_negative,"lime_cairo_arc_negative");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_clip,"lime_cairo_clip");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_clip_preserve,"lime_cairo_clip_preserve");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_clip_extents,"lime_cairo_clip_extents");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_close_path,"lime_cairo_close_path");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_copy_page,"lime_cairo_copy_page");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_create,"lime_cairo_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_curve_to,"lime_cairo_curve_to");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_fill,"lime_cairo_fill");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_fill_extents,"lime_cairo_fill_extents");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_fill_preserve,"lime_cairo_fill_preserve");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_antialias,"lime_cairo_get_antialias");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_current_point,"lime_cairo_get_current_point");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_dash,"lime_cairo_get_dash");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_dash_count,"lime_cairo_get_dash_count");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_fill_rule,"lime_cairo_get_fill_rule");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_font_face,"lime_cairo_get_font_face");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_font_options,"lime_cairo_get_font_options");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_group_target,"lime_cairo_get_group_target");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_line_cap,"lime_cairo_get_line_cap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_line_join,"lime_cairo_get_line_join");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_line_width,"lime_cairo_get_line_width");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_matrix,"lime_cairo_get_matrix");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_miter_limit,"lime_cairo_get_miter_limit");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_operator,"lime_cairo_get_operator");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_source,"lime_cairo_get_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_target,"lime_cairo_get_target");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_tolerance,"lime_cairo_get_tolerance");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_has_current_point,"lime_cairo_has_current_point");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_identity_matrix,"lime_cairo_identity_matrix");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_in_clip,"lime_cairo_in_clip");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_in_fill,"lime_cairo_in_fill");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_in_stroke,"lime_cairo_in_stroke");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_line_to,"lime_cairo_line_to");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_mask,"lime_cairo_mask");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_mask_surface,"lime_cairo_mask_surface");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_move_to,"lime_cairo_move_to");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_new_path,"lime_cairo_new_path");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_paint,"lime_cairo_paint");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_paint_with_alpha,"lime_cairo_paint_with_alpha");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pop_group,"lime_cairo_pop_group");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pop_group_to_source,"lime_cairo_pop_group_to_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_push_group,"lime_cairo_push_group");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_push_group_with_content,"lime_cairo_push_group_with_content");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rectangle,"lime_cairo_rectangle");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rel_curve_to,"lime_cairo_rel_curve_to");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rel_line_to,"lime_cairo_rel_line_to");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rel_move_to,"lime_cairo_rel_move_to");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_reset_clip,"lime_cairo_reset_clip");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_restore,"lime_cairo_restore");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rotate,"lime_cairo_rotate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_save,"lime_cairo_save");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_scale,"lime_cairo_scale");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_antialias,"lime_cairo_set_antialias");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_dash,"lime_cairo_set_dash");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_fill_rule,"lime_cairo_set_fill_rule");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_font_face,"lime_cairo_set_font_face");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_font_options,"lime_cairo_set_font_options");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_font_size,"lime_cairo_set_font_size");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_line_cap,"lime_cairo_set_line_cap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_line_join,"lime_cairo_set_line_join");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_line_width,"lime_cairo_set_line_width");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_matrix,"lime_cairo_set_matrix");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_miter_limit,"lime_cairo_set_miter_limit");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_operator,"lime_cairo_set_operator");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source,"lime_cairo_set_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source_rgb,"lime_cairo_set_source_rgb");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source_rgba,"lime_cairo_set_source_rgba");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source_surface,"lime_cairo_set_source_surface");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_tolerance,"lime_cairo_set_tolerance");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_show_glyphs,"lime_cairo_show_glyphs");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_show_page,"lime_cairo_show_page");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_show_text,"lime_cairo_show_text");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_status,"lime_cairo_status");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_stroke,"lime_cairo_stroke");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_stroke_extents,"lime_cairo_stroke_extents");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_stroke_preserve,"lime_cairo_stroke_preserve");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_text_path,"lime_cairo_text_path");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_transform,"lime_cairo_transform");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_translate,"lime_cairo_translate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_version,"lime_cairo_version");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_version_string,"lime_cairo_version_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_face_status,"lime_cairo_font_face_status");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_create,"lime_cairo_font_options_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_antialias,"lime_cairo_font_options_get_antialias");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_hint_metrics,"lime_cairo_font_options_get_hint_metrics");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_hint_style,"lime_cairo_font_options_get_hint_style");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_subpixel_order,"lime_cairo_font_options_get_subpixel_order");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_antialias,"lime_cairo_font_options_set_antialias");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_hint_metrics,"lime_cairo_font_options_set_hint_metrics");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_hint_style,"lime_cairo_font_options_set_hint_style");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_subpixel_order,"lime_cairo_font_options_set_subpixel_order");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_ft_font_face_create,"lime_cairo_ft_font_face_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_create,"lime_cairo_image_surface_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_create_for_data,"lime_cairo_image_surface_create_for_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_data,"lime_cairo_image_surface_get_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_format,"lime_cairo_image_surface_get_format");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_height,"lime_cairo_image_surface_get_height");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_stride,"lime_cairo_image_surface_get_stride");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_width,"lime_cairo_image_surface_get_width");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgb,"lime_cairo_pattern_add_color_stop_rgb");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgba,"lime_cairo_pattern_add_color_stop_rgba");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_for_surface,"lime_cairo_pattern_create_for_surface");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_linear,"lime_cairo_pattern_create_linear");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_radial,"lime_cairo_pattern_create_radial");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_rgb,"lime_cairo_pattern_create_rgb");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_rgba,"lime_cairo_pattern_create_rgba");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_color_stop_count,"lime_cairo_pattern_get_color_stop_count");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_extend,"lime_cairo_pattern_get_extend");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_filter,"lime_cairo_pattern_get_filter");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_matrix,"lime_cairo_pattern_get_matrix");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_set_extend,"lime_cairo_pattern_set_extend");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_set_filter,"lime_cairo_pattern_set_filter");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_set_matrix,"lime_cairo_pattern_set_matrix");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_cairo_surface_flush,"lime_cairo_surface_flush");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_getdate,"lime_curl_getdate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_global_cleanup,"lime_curl_global_cleanup");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_global_init,"lime_curl_global_init");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_version,"lime_curl_version");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_version_info,"lime_curl_version_info");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_cleanup,"lime_curl_easy_cleanup");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_duphandle,"lime_curl_easy_duphandle");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_escape,"lime_curl_easy_escape");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_flush,"lime_curl_easy_flush");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_getinfo,"lime_curl_easy_getinfo");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_init,"lime_curl_easy_init");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_pause,"lime_curl_easy_pause");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_perform,"lime_curl_easy_perform");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_recv,"lime_curl_easy_recv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_reset,"lime_curl_easy_reset");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_send,"lime_curl_easy_send");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_setopt,"lime_curl_easy_setopt");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_strerror,"lime_curl_easy_strerror");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_unescape,"lime_curl_easy_unescape");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_init,"lime_curl_multi_init");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_add_handle,"lime_curl_multi_add_handle");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_get_running_handles,"lime_curl_multi_get_running_handles");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_info_read,"lime_curl_multi_info_read");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_perform,"lime_curl_multi_perform");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_remove_handle,"lime_curl_multi_remove_handle");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_setopt,"lime_curl_multi_setopt");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_wait,"lime_curl_multi_wait");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_active_texture,"lime_gl_active_texture");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_attach_shader,"lime_gl_attach_shader");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_begin_query,"lime_gl_begin_query");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_begin_transform_feedback,"lime_gl_begin_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_attrib_location,"lime_gl_bind_attrib_location");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_buffer,"lime_gl_bind_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_buffer_base,"lime_gl_bind_buffer_base");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_buffer_range,"lime_gl_bind_buffer_range");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_framebuffer,"lime_gl_bind_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_renderbuffer,"lime_gl_bind_renderbuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_sampler,"lime_gl_bind_sampler");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_texture,"lime_gl_bind_texture");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_transform_feedback,"lime_gl_bind_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_vertex_array,"lime_gl_bind_vertex_array");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_color,"lime_gl_blend_color");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_equation,"lime_gl_blend_equation");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_equation_separate,"lime_gl_blend_equation_separate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_func,"lime_gl_blend_func");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_func_separate,"lime_gl_blend_func_separate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_blit_framebuffer,"lime_gl_blit_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_buffer_data,"lime_gl_buffer_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_buffer_sub_data,"lime_gl_buffer_sub_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_check_framebuffer_status,"lime_gl_check_framebuffer_status");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear,"lime_gl_clear");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferfi,"lime_gl_clear_bufferfi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferfv,"lime_gl_clear_bufferfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferiv,"lime_gl_clear_bufferiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferuiv,"lime_gl_clear_bufferuiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_client_wait_sync,"lime_gl_client_wait_sync");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_color,"lime_gl_clear_color");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_depthf,"lime_gl_clear_depthf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_stencil,"lime_gl_clear_stencil");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_color_mask,"lime_gl_color_mask");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_compile_shader,"lime_gl_compile_shader");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_image_2d,"lime_gl_compressed_tex_image_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_image_3d,"lime_gl_compressed_tex_image_3d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_sub_image_2d,"lime_gl_compressed_tex_sub_image_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_sub_image_3d,"lime_gl_compressed_tex_sub_image_3d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_buffer_sub_data,"lime_gl_copy_buffer_sub_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_tex_image_2d,"lime_gl_copy_tex_image_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_tex_sub_image_2d,"lime_gl_copy_tex_sub_image_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_tex_sub_image_3d,"lime_gl_copy_tex_sub_image_3d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_buffer,"lime_gl_create_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_framebuffer,"lime_gl_create_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_program,"lime_gl_create_program");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_query,"lime_gl_create_query");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_renderbuffer,"lime_gl_create_renderbuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_sampler,"lime_gl_create_sampler");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_shader,"lime_gl_create_shader");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_texture,"lime_gl_create_texture");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_transform_feedback,"lime_gl_create_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_vertex_array,"lime_gl_create_vertex_array");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_cull_face,"lime_gl_cull_face");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_buffer,"lime_gl_delete_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_framebuffer,"lime_gl_delete_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_program,"lime_gl_delete_program");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_query,"lime_gl_delete_query");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_renderbuffer,"lime_gl_delete_renderbuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_sampler,"lime_gl_delete_sampler");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_shader,"lime_gl_delete_shader");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_sync,"lime_gl_delete_sync");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_texture,"lime_gl_delete_texture");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_transform_feedback,"lime_gl_delete_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_vertex_array,"lime_gl_delete_vertex_array");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_depth_func,"lime_gl_depth_func");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_depth_mask,"lime_gl_depth_mask");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_depth_rangef,"lime_gl_depth_rangef");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_detach_shader,"lime_gl_detach_shader");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_disable,"lime_gl_disable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_disable_vertex_attrib_array,"lime_gl_disable_vertex_attrib_array");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_arrays,"lime_gl_draw_arrays");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_arrays_instanced,"lime_gl_draw_arrays_instanced");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_buffers,"lime_gl_draw_buffers");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_elements,"lime_gl_draw_elements");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_elements_instanced,"lime_gl_draw_elements_instanced");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_range_elements,"lime_gl_draw_range_elements");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_enable,"lime_gl_enable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_enable_vertex_attrib_array,"lime_gl_enable_vertex_attrib_array");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_end_query,"lime_gl_end_query");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_end_transform_feedback,"lime_gl_end_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_fence_sync,"lime_gl_fence_sync");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_finish,"lime_gl_finish");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_flush,"lime_gl_flush");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_framebuffer_renderbuffer,"lime_gl_framebuffer_renderbuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_framebuffer_texture2D,"lime_gl_framebuffer_texture2D");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_framebuffer_texture_layer,"lime_gl_framebuffer_texture_layer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_front_face,"lime_gl_front_face");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_generate_mipmap,"lime_gl_generate_mipmap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_attrib,"lime_gl_get_active_attrib");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform,"lime_gl_get_active_uniform");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform_blocki,"lime_gl_get_active_uniform_blocki");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform_blockiv,"lime_gl_get_active_uniform_blockiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform_block_name,"lime_gl_get_active_uniform_block_name");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniformsiv,"lime_gl_get_active_uniformsiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_attached_shaders,"lime_gl_get_attached_shaders");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_attrib_location,"lime_gl_get_attrib_location");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_boolean,"lime_gl_get_boolean");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_booleanv,"lime_gl_get_booleanv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_parameteri,"lime_gl_get_buffer_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_parameteri64v,"lime_gl_get_buffer_parameteri64v");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_parameteriv,"lime_gl_get_buffer_parameteriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_pointerv,"lime_gl_get_buffer_pointerv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_sub_data,"lime_gl_get_buffer_sub_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_context_attributes,"lime_gl_get_context_attributes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_error,"lime_gl_get_error");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_extension,"lime_gl_get_extension");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_float,"lime_gl_get_float");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_floatv,"lime_gl_get_floatv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_frag_data_location,"lime_gl_get_frag_data_location");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteri,"lime_gl_get_framebuffer_attachment_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteriv,"lime_gl_get_framebuffer_attachment_parameteriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integer,"lime_gl_get_integer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integer64v,"lime_gl_get_integer64v");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integer64i_v,"lime_gl_get_integer64i_v");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integerv,"lime_gl_get_integerv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integeri_v,"lime_gl_get_integeri_v");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_internalformativ,"lime_gl_get_internalformativ");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_program_binary,"lime_gl_get_program_binary");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_program_info_log,"lime_gl_get_program_info_log");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_programi,"lime_gl_get_programi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_programiv,"lime_gl_get_programiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_queryi,"lime_gl_get_queryi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_queryiv,"lime_gl_get_queryiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_query_objectui,"lime_gl_get_query_objectui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_query_objectuiv,"lime_gl_get_query_objectuiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_renderbuffer_parameteri,"lime_gl_get_renderbuffer_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_renderbuffer_parameteriv,"lime_gl_get_renderbuffer_parameteriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameterf,"lime_gl_get_sampler_parameterf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameterfv,"lime_gl_get_sampler_parameterfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameteri,"lime_gl_get_sampler_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameteriv,"lime_gl_get_sampler_parameteriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shader_info_log,"lime_gl_get_shader_info_log");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shaderi,"lime_gl_get_shaderi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shaderiv,"lime_gl_get_shaderiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shader_precision_format,"lime_gl_get_shader_precision_format");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shader_source,"lime_gl_get_shader_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_string,"lime_gl_get_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_stringi,"lime_gl_get_stringi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sync_parameteri,"lime_gl_get_sync_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sync_parameteriv,"lime_gl_get_sync_parameteriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameterf,"lime_gl_get_tex_parameterf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameterfv,"lime_gl_get_tex_parameterfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameteri,"lime_gl_get_tex_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameteriv,"lime_gl_get_tex_parameteriv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_transform_feedback_varying,"lime_gl_get_transform_feedback_varying");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformf,"lime_gl_get_uniformf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformfv,"lime_gl_get_uniformfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformi,"lime_gl_get_uniformi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformiv,"lime_gl_get_uniformiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformui,"lime_gl_get_uniformui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformuiv,"lime_gl_get_uniformuiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniform_block_index,"lime_gl_get_uniform_block_index");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniform_location,"lime_gl_get_uniform_location");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribf,"lime_gl_get_vertex_attribf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribfv,"lime_gl_get_vertex_attribfv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribi,"lime_gl_get_vertex_attribi");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiv,"lime_gl_get_vertex_attribiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribii,"lime_gl_get_vertex_attribii");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiiv,"lime_gl_get_vertex_attribiiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiui,"lime_gl_get_vertex_attribiui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiuiv,"lime_gl_get_vertex_attribiuiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attrib_pointerv,"lime_gl_get_vertex_attrib_pointerv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_hint,"lime_gl_hint");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_invalidate_framebuffer,"lime_gl_invalidate_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_invalidate_sub_framebuffer,"lime_gl_invalidate_sub_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_buffer,"lime_gl_is_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_enabled,"lime_gl_is_enabled");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_framebuffer,"lime_gl_is_framebuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_program,"lime_gl_is_program");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_query,"lime_gl_is_query");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_renderbuffer,"lime_gl_is_renderbuffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_sampler,"lime_gl_is_sampler");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_shader,"lime_gl_is_shader");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_sync,"lime_gl_is_sync");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_texture,"lime_gl_is_texture");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_transform_feedback,"lime_gl_is_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_vertex_array,"lime_gl_is_vertex_array");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_line_width,"lime_gl_line_width");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_link_program,"lime_gl_link_program");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_map_buffer_range,"lime_gl_map_buffer_range");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_object_deregister,"lime_gl_object_deregister");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_object_from_id,"lime_gl_object_from_id");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_object_register,"lime_gl_object_register");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_pause_transform_feedback,"lime_gl_pause_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_pixel_storei,"lime_gl_pixel_storei");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_polygon_offset,"lime_gl_polygon_offset");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_program_binary,"lime_gl_program_binary");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_program_parameteri,"lime_gl_program_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_read_buffer,"lime_gl_read_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_read_pixels,"lime_gl_read_pixels");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_release_shader_compiler,"lime_gl_release_shader_compiler");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_renderbuffer_storage,"lime_gl_renderbuffer_storage");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_renderbuffer_storage_multisample,"lime_gl_renderbuffer_storage_multisample");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_resume_transform_feedback,"lime_gl_resume_transform_feedback");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_sample_coverage,"lime_gl_sample_coverage");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_sampler_parameterf,"lime_gl_sampler_parameterf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_sampler_parameteri,"lime_gl_sampler_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_scissor,"lime_gl_scissor");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_shader_binary,"lime_gl_shader_binary");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_shader_source,"lime_gl_shader_source");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_func,"lime_gl_stencil_func");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_func_separate,"lime_gl_stencil_func_separate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_mask,"lime_gl_stencil_mask");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_mask_separate,"lime_gl_stencil_mask_separate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_op,"lime_gl_stencil_op");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_op_separate,"lime_gl_stencil_op_separate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_image_2d,"lime_gl_tex_image_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_image_3d,"lime_gl_tex_image_3d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_parameterf,"lime_gl_tex_parameterf");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_parameteri,"lime_gl_tex_parameteri");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_storage_2d,"lime_gl_tex_storage_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_storage_3d,"lime_gl_tex_storage_3d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_sub_image_2d,"lime_gl_tex_sub_image_2d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_sub_image_3d,"lime_gl_tex_sub_image_3d");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_transform_feedback_varyings,"lime_gl_transform_feedback_varyings");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1f,"lime_gl_uniform1f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1fv,"lime_gl_uniform1fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1i,"lime_gl_uniform1i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1iv,"lime_gl_uniform1iv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1ui,"lime_gl_uniform1ui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1uiv,"lime_gl_uniform1uiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2f,"lime_gl_uniform2f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2fv,"lime_gl_uniform2fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2i,"lime_gl_uniform2i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2iv,"lime_gl_uniform2iv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2ui,"lime_gl_uniform2ui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2uiv,"lime_gl_uniform2uiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3f,"lime_gl_uniform3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3fv,"lime_gl_uniform3fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3i,"lime_gl_uniform3i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3iv,"lime_gl_uniform3iv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3ui,"lime_gl_uniform3ui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3uiv,"lime_gl_uniform3uiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4f,"lime_gl_uniform4f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4fv,"lime_gl_uniform4fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4i,"lime_gl_uniform4i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4iv,"lime_gl_uniform4iv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4ui,"lime_gl_uniform4ui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4uiv,"lime_gl_uniform4uiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_block_binding,"lime_gl_uniform_block_binding");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix2fv,"lime_gl_uniform_matrix2fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix2x3fv,"lime_gl_uniform_matrix2x3fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix2x4fv,"lime_gl_uniform_matrix2x4fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix3fv,"lime_gl_uniform_matrix3fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix3x2fv,"lime_gl_uniform_matrix3x2fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix3x4fv,"lime_gl_uniform_matrix3x4fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix4fv,"lime_gl_uniform_matrix4fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix4x2fv,"lime_gl_uniform_matrix4x2fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix4x3fv,"lime_gl_uniform_matrix4x3fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_unmap_buffer,"lime_gl_unmap_buffer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_use_program,"lime_gl_use_program");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_validate_program,"lime_gl_validate_program");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib1f,"lime_gl_vertex_attrib1f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib1fv,"lime_gl_vertex_attrib1fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib2f,"lime_gl_vertex_attrib2f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib2fv,"lime_gl_vertex_attrib2fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib3f,"lime_gl_vertex_attrib3f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib3fv,"lime_gl_vertex_attrib3fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib4f,"lime_gl_vertex_attrib4f");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib4fv,"lime_gl_vertex_attrib4fv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4i,"lime_gl_vertex_attribi4i");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4iv,"lime_gl_vertex_attribi4iv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4ui,"lime_gl_vertex_attribi4ui");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4uiv,"lime_gl_vertex_attribi4uiv");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib_divisor,"lime_gl_vertex_attrib_divisor");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib_ipointer,"lime_gl_vertex_attrib_ipointer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib_pointer,"lime_gl_vertex_attrib_pointer");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_viewport,"lime_gl_viewport");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_gl_wait_sync,"lime_gl_wait_sync");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_create,"lime_hb_blob_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_create_sub_blob,"lime_hb_blob_create_sub_blob");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_data,"lime_hb_blob_get_data");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_data_writable,"lime_hb_blob_get_data_writable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_empty,"lime_hb_blob_get_empty");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_length,"lime_hb_blob_get_length");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_is_immutable,"lime_hb_blob_is_immutable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_make_immutable,"lime_hb_blob_make_immutable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add,"lime_hb_buffer_add");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_codepoints,"lime_hb_buffer_add_codepoints");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_utf8,"lime_hb_buffer_add_utf8");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_utf16,"lime_hb_buffer_add_utf16");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_utf32,"lime_hb_buffer_add_utf32");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_allocation_successful,"lime_hb_buffer_allocation_successful");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_clear_contents,"lime_hb_buffer_clear_contents");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_create,"lime_hb_buffer_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_cluster_level,"lime_hb_buffer_get_cluster_level");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_content_type,"lime_hb_buffer_get_content_type");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_direction,"lime_hb_buffer_get_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_empty,"lime_hb_buffer_get_empty");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_flags,"lime_hb_buffer_get_flags");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_glyph_infos,"lime_hb_buffer_get_glyph_infos");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_glyph_positions,"lime_hb_buffer_get_glyph_positions");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_language,"lime_hb_buffer_get_language");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_length,"lime_hb_buffer_get_length");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_replacement_codepoint,"lime_hb_buffer_get_replacement_codepoint");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_script,"lime_hb_buffer_get_script");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_segment_properties,"lime_hb_buffer_get_segment_properties");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_guess_segment_properties,"lime_hb_buffer_guess_segment_properties");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_normalize_glyphs,"lime_hb_buffer_normalize_glyphs");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_preallocate,"lime_hb_buffer_preallocate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_reset,"lime_hb_buffer_reset");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_reverse,"lime_hb_buffer_reverse");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_reverse_clusters,"lime_hb_buffer_reverse_clusters");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_serialize_format_from_string,"lime_hb_buffer_serialize_format_from_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_serialize_format_to_string,"lime_hb_buffer_serialize_format_to_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_serialize_list_formats,"lime_hb_buffer_serialize_list_formats");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_cluster_level,"lime_hb_buffer_set_cluster_level");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_content_type,"lime_hb_buffer_set_content_type");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_direction,"lime_hb_buffer_set_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_flags,"lime_hb_buffer_set_flags");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_language,"lime_hb_buffer_set_language");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_length,"lime_hb_buffer_set_length");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_replacement_codepoint,"lime_hb_buffer_set_replacement_codepoint");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_script,"lime_hb_buffer_set_script");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_segment_properties,"lime_hb_buffer_set_segment_properties");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_create,"lime_hb_face_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_empty,"lime_hb_face_get_empty");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_glyph_count,"lime_hb_face_get_glyph_count");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_index,"lime_hb_face_get_index");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_upem,"lime_hb_face_get_upem");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_is_immutable,"lime_hb_face_is_immutable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_make_immutable,"lime_hb_face_make_immutable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_reference_blob,"lime_hb_face_reference_blob");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_reference_table,"lime_hb_face_reference_table");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_set_glyph_count,"lime_hb_face_set_glyph_count");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_set_index,"lime_hb_face_set_index");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_set_upem,"lime_hb_face_set_upem");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_feature_from_string,"lime_hb_feature_from_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_feature_to_string,"lime_hb_feature_to_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_add_glyph_origin_for_direction,"lime_hb_font_add_glyph_origin_for_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_create,"lime_hb_font_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_create_sub_font,"lime_hb_font_create_sub_font");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_empty,"lime_hb_font_get_empty");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_face,"lime_hb_font_get_face");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_glyph_advance_for_direction,"lime_hb_font_get_glyph_advance_for_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_glyph_kerning_for_direction,"lime_hb_font_get_glyph_kerning_for_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_glyph_origin_for_direction,"lime_hb_font_get_glyph_origin_for_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_parent,"lime_hb_font_get_parent");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_ppem,"lime_hb_font_get_ppem");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_scale,"lime_hb_font_get_scale");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_glyph_from_string,"lime_hb_font_glyph_from_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_glyph_to_string,"lime_hb_font_glyph_to_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_is_immutable,"lime_hb_font_is_immutable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_make_immutable,"lime_hb_font_make_immutable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_set_ppem,"lime_hb_font_set_ppem");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_set_scale,"lime_hb_font_set_scale");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_subtract_glyph_origin_for_direction,"lime_hb_font_subtract_glyph_origin_for_direction");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_create,"lime_hb_ft_font_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_create_referenced,"lime_hb_ft_font_create_referenced");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_get_load_flags,"lime_hb_ft_font_get_load_flags");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_set_load_flags,"lime_hb_ft_font_set_load_flags");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_language_from_string,"lime_hb_language_from_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_language_get_default,"lime_hb_language_get_default");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_language_to_string,"lime_hb_language_to_string");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_segment_properties_equal,"lime_hb_segment_properties_equal");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_segment_properties_hash,"lime_hb_segment_properties_hash");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_add,"lime_hb_set_add");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_add_range,"lime_hb_set_add_range");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_allocation_successful,"lime_hb_set_allocation_successful");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_clear,"lime_hb_set_clear");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_create,"lime_hb_set_create");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_del,"lime_hb_set_del");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_del_range,"lime_hb_set_del_range");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_empty,"lime_hb_set_get_empty");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_max,"lime_hb_set_get_max");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_min,"lime_hb_set_get_min");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_population,"lime_hb_set_get_population");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_has,"lime_hb_set_has");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_intersect,"lime_hb_set_intersect");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_invert,"lime_hb_set_invert");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_is_empty,"lime_hb_set_is_empty");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_is_equal,"lime_hb_set_is_equal");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_next,"lime_hb_set_next");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_next_range,"lime_hb_set_next_range");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_set,"lime_hb_set_set");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_subtract,"lime_hb_set_subtract");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_symmetric_difference,"lime_hb_set_symmetric_difference");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_union,"lime_hb_set_union");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_hb_shape,"lime_hb_shape");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_bitrate,"lime_vorbis_file_bitrate");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_bitrate_instant,"lime_vorbis_file_bitrate_instant");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_clear,"lime_vorbis_file_clear");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_comment,"lime_vorbis_file_comment");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_crosslap,"lime_vorbis_file_crosslap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_from_bytes,"lime_vorbis_file_from_bytes");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_from_file,"lime_vorbis_file_from_file");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_info,"lime_vorbis_file_info");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek,"lime_vorbis_file_pcm_seek");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek_lap,"lime_vorbis_file_pcm_seek_lap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek_page,"lime_vorbis_file_pcm_seek_page");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek_page_lap,"lime_vorbis_file_pcm_seek_page_lap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_seek,"lime_vorbis_file_raw_seek");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_seek_lap,"lime_vorbis_file_raw_seek_lap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_tell,"lime_vorbis_file_pcm_tell");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_total,"lime_vorbis_file_pcm_total");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_tell,"lime_vorbis_file_raw_tell");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_total,"lime_vorbis_file_raw_total");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_read,"lime_vorbis_file_read");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_read_float,"lime_vorbis_file_read_float");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_seekable,"lime_vorbis_file_seekable");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_serial_number,"lime_vorbis_file_serial_number");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_streams,"lime_vorbis_file_streams");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek,"lime_vorbis_file_time_seek");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek_lap,"lime_vorbis_file_time_seek_lap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek_page,"lime_vorbis_file_time_seek_page");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek_page_lap,"lime_vorbis_file_time_seek_page_lap");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_tell,"lime_vorbis_file_time_tell");
HX_MARK_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_total,"lime_vorbis_file_time_total");
};
#ifdef HXCPP_VISIT_ALLOCS
static void NativeCFFI_obj_sVisitStatics(HX_VISIT_PARAMS) {
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_create,"lime_application_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_event_manager_register,"lime_application_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_exec,"lime_application_exec");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_init,"lime_application_init");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_quit,"lime_application_quit");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_set_frame_rate,"lime_application_set_frame_rate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_application_update,"lime_application_update");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_audio_load,"lime_audio_load");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_audio_load_bytes,"lime_audio_load_bytes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_audio_load_file,"lime_audio_load_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_bytes_from_data_pointer,"lime_bytes_from_data_pointer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_bytes_get_data_pointer,"lime_bytes_get_data_pointer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_bytes_get_data_pointer_offset,"lime_bytes_get_data_pointer_offset");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_bytes_read_file,"lime_bytes_read_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cffi_get_native_pointer,"lime_cffi_get_native_pointer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_clipboard_event_manager_register,"lime_clipboard_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_clipboard_get_text,"lime_clipboard_get_text");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_clipboard_set_text,"lime_clipboard_set_text");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_data_pointer_offset,"lime_data_pointer_offset");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_deflate_compress,"lime_deflate_compress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_deflate_decompress,"lime_deflate_decompress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_drop_event_manager_register,"lime_drop_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_open_directory,"lime_file_dialog_open_directory");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_open_file,"lime_file_dialog_open_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_open_files,"lime_file_dialog_open_files");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_dialog_save_file,"lime_file_dialog_save_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_create,"lime_file_watcher_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_add_directory,"lime_file_watcher_add_directory");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_remove_directory,"lime_file_watcher_remove_directory");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_file_watcher_update,"lime_file_watcher_update");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_ascender,"lime_font_get_ascender");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_descender,"lime_font_get_descender");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_family_name,"lime_font_get_family_name");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_glyph_index,"lime_font_get_glyph_index");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_glyph_indices,"lime_font_get_glyph_indices");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_glyph_metrics,"lime_font_get_glyph_metrics");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_height,"lime_font_get_height");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_num_glyphs,"lime_font_get_num_glyphs");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_underline_position,"lime_font_get_underline_position");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_underline_thickness,"lime_font_get_underline_thickness");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_get_units_per_em,"lime_font_get_units_per_em");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_load,"lime_font_load");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_load_bytes,"lime_font_load_bytes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_load_file,"lime_font_load_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_outline_decompose,"lime_font_outline_decompose");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_render_glyph,"lime_font_render_glyph");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_render_glyphs,"lime_font_render_glyphs");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_font_set_size,"lime_font_set_size");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_add_mappings,"lime_gamepad_add_mappings");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_get_device_guid,"lime_gamepad_get_device_guid");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_get_device_name,"lime_gamepad_get_device_name");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gamepad_event_manager_register,"lime_gamepad_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gzip_compress,"lime_gzip_compress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gzip_decompress,"lime_gzip_decompress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_haptic_vibrate,"lime_haptic_vibrate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_encode,"lime_image_encode");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_load,"lime_image_load");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_load_bytes,"lime_image_load_bytes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_load_file,"lime_image_load_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_color_transform,"lime_image_data_util_color_transform");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_copy_channel,"lime_image_data_util_copy_channel");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_copy_pixels,"lime_image_data_util_copy_pixels");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_fill_rect,"lime_image_data_util_fill_rect");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_flood_fill,"lime_image_data_util_flood_fill");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_get_pixels,"lime_image_data_util_get_pixels");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_merge,"lime_image_data_util_merge");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_multiply_alpha,"lime_image_data_util_multiply_alpha");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_resize,"lime_image_data_util_resize");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_set_format,"lime_image_data_util_set_format");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_set_pixels,"lime_image_data_util_set_pixels");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_threshold,"lime_image_data_util_threshold");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_image_data_util_unmultiply_alpha,"lime_image_data_util_unmultiply_alpha");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_device_guid,"lime_joystick_get_device_guid");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_device_name,"lime_joystick_get_device_name");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_axes,"lime_joystick_get_num_axes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_buttons,"lime_joystick_get_num_buttons");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_hats,"lime_joystick_get_num_hats");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_get_num_trackballs,"lime_joystick_get_num_trackballs");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_joystick_event_manager_register,"lime_joystick_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_jpeg_decode_bytes,"lime_jpeg_decode_bytes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_jpeg_decode_file,"lime_jpeg_decode_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_key_code_from_scan_code,"lime_key_code_from_scan_code");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_key_code_to_scan_code,"lime_key_code_to_scan_code");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_key_event_manager_register,"lime_key_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_lzma_compress,"lime_lzma_compress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_lzma_decompress,"lime_lzma_decompress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_mouse_event_manager_register,"lime_mouse_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_neko_execute,"lime_neko_execute");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_png_decode_bytes,"lime_png_decode_bytes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_png_decode_file,"lime_png_decode_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_render_event_manager_register,"lime_render_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_sensor_event_manager_register,"lime_sensor_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_allow_screen_timeout,"lime_system_get_allow_screen_timeout");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_set_allow_screen_timeout,"lime_system_set_allow_screen_timeout");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_device_model,"lime_system_get_device_model");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_device_vendor,"lime_system_get_device_vendor");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_directory,"lime_system_get_directory");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_display,"lime_system_get_display");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_ios_tablet,"lime_system_get_ios_tablet");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_num_displays,"lime_system_get_num_displays");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_platform_label,"lime_system_get_platform_label");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_platform_name,"lime_system_get_platform_name");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_platform_version,"lime_system_get_platform_version");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_get_timer,"lime_system_get_timer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_open_file,"lime_system_open_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_system_open_url,"lime_system_open_url");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_text_event_manager_register,"lime_text_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_touch_event_manager_register,"lime_touch_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_alert,"lime_window_alert");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_close,"lime_window_close");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_context_flip,"lime_window_context_flip");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_context_lock,"lime_window_context_lock");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_context_make_current,"lime_window_context_make_current");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_context_unlock,"lime_window_context_unlock");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_create,"lime_window_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_focus,"lime_window_focus");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_context,"lime_window_get_context");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_context_type,"lime_window_get_context_type");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_display,"lime_window_get_display");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_display_mode,"lime_window_get_display_mode");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_height,"lime_window_get_height");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_id,"lime_window_get_id");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_mouse_lock,"lime_window_get_mouse_lock");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_scale,"lime_window_get_scale");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_text_input_enabled,"lime_window_get_text_input_enabled");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_width,"lime_window_get_width");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_x,"lime_window_get_x");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_get_y,"lime_window_get_y");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_move,"lime_window_move");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_read_pixels,"lime_window_read_pixels");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_resize,"lime_window_resize");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_borderless,"lime_window_set_borderless");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_cursor,"lime_window_set_cursor");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_display_mode,"lime_window_set_display_mode");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_fullscreen,"lime_window_set_fullscreen");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_icon,"lime_window_set_icon");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_maximized,"lime_window_set_maximized");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_minimized,"lime_window_set_minimized");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_mouse_lock,"lime_window_set_mouse_lock");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_resizable,"lime_window_set_resizable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_text_input_enabled,"lime_window_set_text_input_enabled");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_set_title,"lime_window_set_title");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_warp_mouse,"lime_window_warp_mouse");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_window_event_manager_register,"lime_window_event_manager_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_zlib_compress,"lime_zlib_compress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_zlib_decompress,"lime_zlib_decompress");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_buffer_data,"lime_al_buffer_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_buffer3f,"lime_al_buffer3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_buffer3i,"lime_al_buffer3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferf,"lime_al_bufferf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferfv,"lime_al_bufferfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferi,"lime_al_bufferi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_bufferiv,"lime_al_bufferiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_cleanup,"lime_al_cleanup");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_buffer,"lime_al_delete_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_buffers,"lime_al_delete_buffers");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_source,"lime_al_delete_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_delete_sources,"lime_al_delete_sources");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_disable,"lime_al_disable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_distance_model,"lime_al_distance_model");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_doppler_factor,"lime_al_doppler_factor");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_doppler_velocity,"lime_al_doppler_velocity");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_enable,"lime_al_enable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_source,"lime_al_gen_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_sources,"lime_al_gen_sources");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_boolean,"lime_al_get_boolean");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_booleanv,"lime_al_get_booleanv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_buffer,"lime_al_gen_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_buffers,"lime_al_gen_buffers");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_buffer3f,"lime_al_get_buffer3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_buffer3i,"lime_al_get_buffer3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferf,"lime_al_get_bufferf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferfv,"lime_al_get_bufferfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferi,"lime_al_get_bufferi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_bufferiv,"lime_al_get_bufferiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_double,"lime_al_get_double");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_doublev,"lime_al_get_doublev");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_enum_value,"lime_al_get_enum_value");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_error,"lime_al_get_error");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_float,"lime_al_get_float");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_floatv,"lime_al_get_floatv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_integer,"lime_al_get_integer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_integerv,"lime_al_get_integerv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listener3f,"lime_al_get_listener3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listener3i,"lime_al_get_listener3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listenerf,"lime_al_get_listenerf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listenerfv,"lime_al_get_listenerfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listeneri,"lime_al_get_listeneri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_listeneriv,"lime_al_get_listeneriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_proc_address,"lime_al_get_proc_address");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_source3f,"lime_al_get_source3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_source3i,"lime_al_get_source3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourcef,"lime_al_get_sourcef");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourcefv,"lime_al_get_sourcefv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourcei,"lime_al_get_sourcei");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_sourceiv,"lime_al_get_sourceiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_string,"lime_al_get_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_buffer,"lime_al_is_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_enabled,"lime_al_is_enabled");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_extension_present,"lime_al_is_extension_present");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_source,"lime_al_is_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_listener3f,"lime_al_listener3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_listener3i,"lime_al_listener3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_listenerf,"lime_al_listenerf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_listenerfv,"lime_al_listenerfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_listeneri,"lime_al_listeneri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_listeneriv,"lime_al_listeneriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_pause,"lime_al_source_pause");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_pausev,"lime_al_source_pausev");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_play,"lime_al_source_play");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_playv,"lime_al_source_playv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_queue_buffers,"lime_al_source_queue_buffers");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_rewind,"lime_al_source_rewind");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_rewindv,"lime_al_source_rewindv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_stop,"lime_al_source_stop");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_stopv,"lime_al_source_stopv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source_unqueue_buffers,"lime_al_source_unqueue_buffers");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source3f,"lime_al_source3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_source3i,"lime_al_source3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_sourcef,"lime_al_sourcef");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_sourcefv,"lime_al_sourcefv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_sourcei,"lime_al_sourcei");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_sourceiv,"lime_al_sourceiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_speed_of_sound,"lime_al_speed_of_sound");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_close_device,"lime_alc_close_device");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_create_context,"lime_alc_create_context");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_destroy_context,"lime_alc_destroy_context");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_contexts_device,"lime_alc_get_contexts_device");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_current_context,"lime_alc_get_current_context");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_error,"lime_alc_get_error");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_integerv,"lime_alc_get_integerv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_get_string,"lime_alc_get_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_make_context_current,"lime_alc_make_context_current");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_open_device,"lime_alc_open_device");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_pause_device,"lime_alc_pause_device");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_process_context,"lime_alc_process_context");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_resume_device,"lime_alc_resume_device");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_alc_suspend_context,"lime_alc_suspend_context");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_filter,"lime_al_gen_filter");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_filteri,"lime_al_filteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_filterf,"lime_al_filterf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_remove_direct_filter,"lime_al_remove_direct_filter");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_filter,"lime_al_is_filter");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_get_filteri,"lime_al_get_filteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_effect,"lime_al_gen_effect");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_effectf,"lime_al_effectf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_effectfv,"lime_al_effectfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_effecti,"lime_al_effecti");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_effectiv,"lime_al_effectiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_effect,"lime_al_is_effect");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_gen_aux,"lime_al_gen_aux");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_auxf,"lime_al_auxf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_auxfv,"lime_al_auxfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_auxi,"lime_al_auxi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_auxiv,"lime_al_auxiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_is_aux,"lime_al_is_aux");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_al_remove_send,"lime_al_remove_send");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_arc,"lime_cairo_arc");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_arc_negative,"lime_cairo_arc_negative");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_clip,"lime_cairo_clip");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_clip_preserve,"lime_cairo_clip_preserve");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_clip_extents,"lime_cairo_clip_extents");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_close_path,"lime_cairo_close_path");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_copy_page,"lime_cairo_copy_page");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_create,"lime_cairo_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_curve_to,"lime_cairo_curve_to");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_fill,"lime_cairo_fill");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_fill_extents,"lime_cairo_fill_extents");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_fill_preserve,"lime_cairo_fill_preserve");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_antialias,"lime_cairo_get_antialias");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_current_point,"lime_cairo_get_current_point");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_dash,"lime_cairo_get_dash");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_dash_count,"lime_cairo_get_dash_count");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_fill_rule,"lime_cairo_get_fill_rule");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_font_face,"lime_cairo_get_font_face");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_font_options,"lime_cairo_get_font_options");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_group_target,"lime_cairo_get_group_target");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_line_cap,"lime_cairo_get_line_cap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_line_join,"lime_cairo_get_line_join");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_line_width,"lime_cairo_get_line_width");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_matrix,"lime_cairo_get_matrix");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_miter_limit,"lime_cairo_get_miter_limit");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_operator,"lime_cairo_get_operator");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_source,"lime_cairo_get_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_target,"lime_cairo_get_target");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_get_tolerance,"lime_cairo_get_tolerance");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_has_current_point,"lime_cairo_has_current_point");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_identity_matrix,"lime_cairo_identity_matrix");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_in_clip,"lime_cairo_in_clip");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_in_fill,"lime_cairo_in_fill");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_in_stroke,"lime_cairo_in_stroke");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_line_to,"lime_cairo_line_to");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_mask,"lime_cairo_mask");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_mask_surface,"lime_cairo_mask_surface");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_move_to,"lime_cairo_move_to");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_new_path,"lime_cairo_new_path");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_paint,"lime_cairo_paint");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_paint_with_alpha,"lime_cairo_paint_with_alpha");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pop_group,"lime_cairo_pop_group");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pop_group_to_source,"lime_cairo_pop_group_to_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_push_group,"lime_cairo_push_group");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_push_group_with_content,"lime_cairo_push_group_with_content");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rectangle,"lime_cairo_rectangle");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rel_curve_to,"lime_cairo_rel_curve_to");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rel_line_to,"lime_cairo_rel_line_to");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rel_move_to,"lime_cairo_rel_move_to");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_reset_clip,"lime_cairo_reset_clip");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_restore,"lime_cairo_restore");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_rotate,"lime_cairo_rotate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_save,"lime_cairo_save");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_scale,"lime_cairo_scale");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_antialias,"lime_cairo_set_antialias");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_dash,"lime_cairo_set_dash");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_fill_rule,"lime_cairo_set_fill_rule");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_font_face,"lime_cairo_set_font_face");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_font_options,"lime_cairo_set_font_options");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_font_size,"lime_cairo_set_font_size");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_line_cap,"lime_cairo_set_line_cap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_line_join,"lime_cairo_set_line_join");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_line_width,"lime_cairo_set_line_width");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_matrix,"lime_cairo_set_matrix");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_miter_limit,"lime_cairo_set_miter_limit");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_operator,"lime_cairo_set_operator");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source,"lime_cairo_set_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source_rgb,"lime_cairo_set_source_rgb");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source_rgba,"lime_cairo_set_source_rgba");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_source_surface,"lime_cairo_set_source_surface");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_set_tolerance,"lime_cairo_set_tolerance");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_show_glyphs,"lime_cairo_show_glyphs");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_show_page,"lime_cairo_show_page");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_show_text,"lime_cairo_show_text");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_status,"lime_cairo_status");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_stroke,"lime_cairo_stroke");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_stroke_extents,"lime_cairo_stroke_extents");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_stroke_preserve,"lime_cairo_stroke_preserve");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_text_path,"lime_cairo_text_path");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_transform,"lime_cairo_transform");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_translate,"lime_cairo_translate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_version,"lime_cairo_version");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_version_string,"lime_cairo_version_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_face_status,"lime_cairo_font_face_status");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_create,"lime_cairo_font_options_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_antialias,"lime_cairo_font_options_get_antialias");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_hint_metrics,"lime_cairo_font_options_get_hint_metrics");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_hint_style,"lime_cairo_font_options_get_hint_style");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_get_subpixel_order,"lime_cairo_font_options_get_subpixel_order");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_antialias,"lime_cairo_font_options_set_antialias");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_hint_metrics,"lime_cairo_font_options_set_hint_metrics");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_hint_style,"lime_cairo_font_options_set_hint_style");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_font_options_set_subpixel_order,"lime_cairo_font_options_set_subpixel_order");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_ft_font_face_create,"lime_cairo_ft_font_face_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_create,"lime_cairo_image_surface_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_create_for_data,"lime_cairo_image_surface_create_for_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_data,"lime_cairo_image_surface_get_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_format,"lime_cairo_image_surface_get_format");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_height,"lime_cairo_image_surface_get_height");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_stride,"lime_cairo_image_surface_get_stride");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_image_surface_get_width,"lime_cairo_image_surface_get_width");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgb,"lime_cairo_pattern_add_color_stop_rgb");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_add_color_stop_rgba,"lime_cairo_pattern_add_color_stop_rgba");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_for_surface,"lime_cairo_pattern_create_for_surface");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_linear,"lime_cairo_pattern_create_linear");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_radial,"lime_cairo_pattern_create_radial");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_rgb,"lime_cairo_pattern_create_rgb");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_create_rgba,"lime_cairo_pattern_create_rgba");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_color_stop_count,"lime_cairo_pattern_get_color_stop_count");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_extend,"lime_cairo_pattern_get_extend");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_filter,"lime_cairo_pattern_get_filter");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_get_matrix,"lime_cairo_pattern_get_matrix");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_set_extend,"lime_cairo_pattern_set_extend");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_set_filter,"lime_cairo_pattern_set_filter");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_pattern_set_matrix,"lime_cairo_pattern_set_matrix");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_cairo_surface_flush,"lime_cairo_surface_flush");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_getdate,"lime_curl_getdate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_global_cleanup,"lime_curl_global_cleanup");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_global_init,"lime_curl_global_init");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_version,"lime_curl_version");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_version_info,"lime_curl_version_info");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_cleanup,"lime_curl_easy_cleanup");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_duphandle,"lime_curl_easy_duphandle");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_escape,"lime_curl_easy_escape");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_flush,"lime_curl_easy_flush");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_getinfo,"lime_curl_easy_getinfo");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_init,"lime_curl_easy_init");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_pause,"lime_curl_easy_pause");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_perform,"lime_curl_easy_perform");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_recv,"lime_curl_easy_recv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_reset,"lime_curl_easy_reset");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_send,"lime_curl_easy_send");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_setopt,"lime_curl_easy_setopt");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_strerror,"lime_curl_easy_strerror");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_easy_unescape,"lime_curl_easy_unescape");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_init,"lime_curl_multi_init");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_add_handle,"lime_curl_multi_add_handle");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_get_running_handles,"lime_curl_multi_get_running_handles");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_info_read,"lime_curl_multi_info_read");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_perform,"lime_curl_multi_perform");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_remove_handle,"lime_curl_multi_remove_handle");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_setopt,"lime_curl_multi_setopt");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_curl_multi_wait,"lime_curl_multi_wait");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_active_texture,"lime_gl_active_texture");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_attach_shader,"lime_gl_attach_shader");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_begin_query,"lime_gl_begin_query");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_begin_transform_feedback,"lime_gl_begin_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_attrib_location,"lime_gl_bind_attrib_location");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_buffer,"lime_gl_bind_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_buffer_base,"lime_gl_bind_buffer_base");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_buffer_range,"lime_gl_bind_buffer_range");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_framebuffer,"lime_gl_bind_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_renderbuffer,"lime_gl_bind_renderbuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_sampler,"lime_gl_bind_sampler");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_texture,"lime_gl_bind_texture");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_transform_feedback,"lime_gl_bind_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_bind_vertex_array,"lime_gl_bind_vertex_array");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_color,"lime_gl_blend_color");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_equation,"lime_gl_blend_equation");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_equation_separate,"lime_gl_blend_equation_separate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_func,"lime_gl_blend_func");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_blend_func_separate,"lime_gl_blend_func_separate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_blit_framebuffer,"lime_gl_blit_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_buffer_data,"lime_gl_buffer_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_buffer_sub_data,"lime_gl_buffer_sub_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_check_framebuffer_status,"lime_gl_check_framebuffer_status");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear,"lime_gl_clear");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferfi,"lime_gl_clear_bufferfi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferfv,"lime_gl_clear_bufferfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferiv,"lime_gl_clear_bufferiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_bufferuiv,"lime_gl_clear_bufferuiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_client_wait_sync,"lime_gl_client_wait_sync");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_color,"lime_gl_clear_color");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_depthf,"lime_gl_clear_depthf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_clear_stencil,"lime_gl_clear_stencil");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_color_mask,"lime_gl_color_mask");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_compile_shader,"lime_gl_compile_shader");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_image_2d,"lime_gl_compressed_tex_image_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_image_3d,"lime_gl_compressed_tex_image_3d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_sub_image_2d,"lime_gl_compressed_tex_sub_image_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_compressed_tex_sub_image_3d,"lime_gl_compressed_tex_sub_image_3d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_buffer_sub_data,"lime_gl_copy_buffer_sub_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_tex_image_2d,"lime_gl_copy_tex_image_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_tex_sub_image_2d,"lime_gl_copy_tex_sub_image_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_copy_tex_sub_image_3d,"lime_gl_copy_tex_sub_image_3d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_buffer,"lime_gl_create_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_framebuffer,"lime_gl_create_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_program,"lime_gl_create_program");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_query,"lime_gl_create_query");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_renderbuffer,"lime_gl_create_renderbuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_sampler,"lime_gl_create_sampler");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_shader,"lime_gl_create_shader");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_texture,"lime_gl_create_texture");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_transform_feedback,"lime_gl_create_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_create_vertex_array,"lime_gl_create_vertex_array");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_cull_face,"lime_gl_cull_face");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_buffer,"lime_gl_delete_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_framebuffer,"lime_gl_delete_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_program,"lime_gl_delete_program");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_query,"lime_gl_delete_query");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_renderbuffer,"lime_gl_delete_renderbuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_sampler,"lime_gl_delete_sampler");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_shader,"lime_gl_delete_shader");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_sync,"lime_gl_delete_sync");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_texture,"lime_gl_delete_texture");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_transform_feedback,"lime_gl_delete_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_delete_vertex_array,"lime_gl_delete_vertex_array");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_depth_func,"lime_gl_depth_func");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_depth_mask,"lime_gl_depth_mask");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_depth_rangef,"lime_gl_depth_rangef");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_detach_shader,"lime_gl_detach_shader");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_disable,"lime_gl_disable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_disable_vertex_attrib_array,"lime_gl_disable_vertex_attrib_array");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_arrays,"lime_gl_draw_arrays");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_arrays_instanced,"lime_gl_draw_arrays_instanced");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_buffers,"lime_gl_draw_buffers");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_elements,"lime_gl_draw_elements");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_elements_instanced,"lime_gl_draw_elements_instanced");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_draw_range_elements,"lime_gl_draw_range_elements");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_enable,"lime_gl_enable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_enable_vertex_attrib_array,"lime_gl_enable_vertex_attrib_array");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_end_query,"lime_gl_end_query");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_end_transform_feedback,"lime_gl_end_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_fence_sync,"lime_gl_fence_sync");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_finish,"lime_gl_finish");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_flush,"lime_gl_flush");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_framebuffer_renderbuffer,"lime_gl_framebuffer_renderbuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_framebuffer_texture2D,"lime_gl_framebuffer_texture2D");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_framebuffer_texture_layer,"lime_gl_framebuffer_texture_layer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_front_face,"lime_gl_front_face");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_generate_mipmap,"lime_gl_generate_mipmap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_attrib,"lime_gl_get_active_attrib");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform,"lime_gl_get_active_uniform");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform_blocki,"lime_gl_get_active_uniform_blocki");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform_blockiv,"lime_gl_get_active_uniform_blockiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniform_block_name,"lime_gl_get_active_uniform_block_name");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_active_uniformsiv,"lime_gl_get_active_uniformsiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_attached_shaders,"lime_gl_get_attached_shaders");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_attrib_location,"lime_gl_get_attrib_location");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_boolean,"lime_gl_get_boolean");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_booleanv,"lime_gl_get_booleanv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_parameteri,"lime_gl_get_buffer_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_parameteri64v,"lime_gl_get_buffer_parameteri64v");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_parameteriv,"lime_gl_get_buffer_parameteriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_pointerv,"lime_gl_get_buffer_pointerv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_buffer_sub_data,"lime_gl_get_buffer_sub_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_context_attributes,"lime_gl_get_context_attributes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_error,"lime_gl_get_error");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_extension,"lime_gl_get_extension");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_float,"lime_gl_get_float");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_floatv,"lime_gl_get_floatv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_frag_data_location,"lime_gl_get_frag_data_location");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteri,"lime_gl_get_framebuffer_attachment_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_framebuffer_attachment_parameteriv,"lime_gl_get_framebuffer_attachment_parameteriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integer,"lime_gl_get_integer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integer64v,"lime_gl_get_integer64v");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integer64i_v,"lime_gl_get_integer64i_v");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integerv,"lime_gl_get_integerv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_integeri_v,"lime_gl_get_integeri_v");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_internalformativ,"lime_gl_get_internalformativ");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_program_binary,"lime_gl_get_program_binary");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_program_info_log,"lime_gl_get_program_info_log");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_programi,"lime_gl_get_programi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_programiv,"lime_gl_get_programiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_queryi,"lime_gl_get_queryi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_queryiv,"lime_gl_get_queryiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_query_objectui,"lime_gl_get_query_objectui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_query_objectuiv,"lime_gl_get_query_objectuiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_renderbuffer_parameteri,"lime_gl_get_renderbuffer_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_renderbuffer_parameteriv,"lime_gl_get_renderbuffer_parameteriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameterf,"lime_gl_get_sampler_parameterf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameterfv,"lime_gl_get_sampler_parameterfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameteri,"lime_gl_get_sampler_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sampler_parameteriv,"lime_gl_get_sampler_parameteriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shader_info_log,"lime_gl_get_shader_info_log");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shaderi,"lime_gl_get_shaderi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shaderiv,"lime_gl_get_shaderiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shader_precision_format,"lime_gl_get_shader_precision_format");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_shader_source,"lime_gl_get_shader_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_string,"lime_gl_get_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_stringi,"lime_gl_get_stringi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sync_parameteri,"lime_gl_get_sync_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_sync_parameteriv,"lime_gl_get_sync_parameteriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameterf,"lime_gl_get_tex_parameterf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameterfv,"lime_gl_get_tex_parameterfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameteri,"lime_gl_get_tex_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_tex_parameteriv,"lime_gl_get_tex_parameteriv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_transform_feedback_varying,"lime_gl_get_transform_feedback_varying");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformf,"lime_gl_get_uniformf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformfv,"lime_gl_get_uniformfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformi,"lime_gl_get_uniformi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformiv,"lime_gl_get_uniformiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformui,"lime_gl_get_uniformui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniformuiv,"lime_gl_get_uniformuiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniform_block_index,"lime_gl_get_uniform_block_index");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_uniform_location,"lime_gl_get_uniform_location");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribf,"lime_gl_get_vertex_attribf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribfv,"lime_gl_get_vertex_attribfv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribi,"lime_gl_get_vertex_attribi");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiv,"lime_gl_get_vertex_attribiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribii,"lime_gl_get_vertex_attribii");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiiv,"lime_gl_get_vertex_attribiiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiui,"lime_gl_get_vertex_attribiui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attribiuiv,"lime_gl_get_vertex_attribiuiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_get_vertex_attrib_pointerv,"lime_gl_get_vertex_attrib_pointerv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_hint,"lime_gl_hint");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_invalidate_framebuffer,"lime_gl_invalidate_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_invalidate_sub_framebuffer,"lime_gl_invalidate_sub_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_buffer,"lime_gl_is_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_enabled,"lime_gl_is_enabled");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_framebuffer,"lime_gl_is_framebuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_program,"lime_gl_is_program");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_query,"lime_gl_is_query");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_renderbuffer,"lime_gl_is_renderbuffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_sampler,"lime_gl_is_sampler");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_shader,"lime_gl_is_shader");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_sync,"lime_gl_is_sync");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_texture,"lime_gl_is_texture");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_transform_feedback,"lime_gl_is_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_is_vertex_array,"lime_gl_is_vertex_array");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_line_width,"lime_gl_line_width");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_link_program,"lime_gl_link_program");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_map_buffer_range,"lime_gl_map_buffer_range");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_object_deregister,"lime_gl_object_deregister");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_object_from_id,"lime_gl_object_from_id");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_object_register,"lime_gl_object_register");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_pause_transform_feedback,"lime_gl_pause_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_pixel_storei,"lime_gl_pixel_storei");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_polygon_offset,"lime_gl_polygon_offset");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_program_binary,"lime_gl_program_binary");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_program_parameteri,"lime_gl_program_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_read_buffer,"lime_gl_read_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_read_pixels,"lime_gl_read_pixels");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_release_shader_compiler,"lime_gl_release_shader_compiler");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_renderbuffer_storage,"lime_gl_renderbuffer_storage");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_renderbuffer_storage_multisample,"lime_gl_renderbuffer_storage_multisample");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_resume_transform_feedback,"lime_gl_resume_transform_feedback");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_sample_coverage,"lime_gl_sample_coverage");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_sampler_parameterf,"lime_gl_sampler_parameterf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_sampler_parameteri,"lime_gl_sampler_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_scissor,"lime_gl_scissor");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_shader_binary,"lime_gl_shader_binary");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_shader_source,"lime_gl_shader_source");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_func,"lime_gl_stencil_func");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_func_separate,"lime_gl_stencil_func_separate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_mask,"lime_gl_stencil_mask");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_mask_separate,"lime_gl_stencil_mask_separate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_op,"lime_gl_stencil_op");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_stencil_op_separate,"lime_gl_stencil_op_separate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_image_2d,"lime_gl_tex_image_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_image_3d,"lime_gl_tex_image_3d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_parameterf,"lime_gl_tex_parameterf");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_parameteri,"lime_gl_tex_parameteri");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_storage_2d,"lime_gl_tex_storage_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_storage_3d,"lime_gl_tex_storage_3d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_sub_image_2d,"lime_gl_tex_sub_image_2d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_tex_sub_image_3d,"lime_gl_tex_sub_image_3d");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_transform_feedback_varyings,"lime_gl_transform_feedback_varyings");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1f,"lime_gl_uniform1f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1fv,"lime_gl_uniform1fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1i,"lime_gl_uniform1i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1iv,"lime_gl_uniform1iv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1ui,"lime_gl_uniform1ui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform1uiv,"lime_gl_uniform1uiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2f,"lime_gl_uniform2f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2fv,"lime_gl_uniform2fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2i,"lime_gl_uniform2i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2iv,"lime_gl_uniform2iv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2ui,"lime_gl_uniform2ui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform2uiv,"lime_gl_uniform2uiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3f,"lime_gl_uniform3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3fv,"lime_gl_uniform3fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3i,"lime_gl_uniform3i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3iv,"lime_gl_uniform3iv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3ui,"lime_gl_uniform3ui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform3uiv,"lime_gl_uniform3uiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4f,"lime_gl_uniform4f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4fv,"lime_gl_uniform4fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4i,"lime_gl_uniform4i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4iv,"lime_gl_uniform4iv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4ui,"lime_gl_uniform4ui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform4uiv,"lime_gl_uniform4uiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_block_binding,"lime_gl_uniform_block_binding");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix2fv,"lime_gl_uniform_matrix2fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix2x3fv,"lime_gl_uniform_matrix2x3fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix2x4fv,"lime_gl_uniform_matrix2x4fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix3fv,"lime_gl_uniform_matrix3fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix3x2fv,"lime_gl_uniform_matrix3x2fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix3x4fv,"lime_gl_uniform_matrix3x4fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix4fv,"lime_gl_uniform_matrix4fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix4x2fv,"lime_gl_uniform_matrix4x2fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_uniform_matrix4x3fv,"lime_gl_uniform_matrix4x3fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_unmap_buffer,"lime_gl_unmap_buffer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_use_program,"lime_gl_use_program");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_validate_program,"lime_gl_validate_program");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib1f,"lime_gl_vertex_attrib1f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib1fv,"lime_gl_vertex_attrib1fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib2f,"lime_gl_vertex_attrib2f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib2fv,"lime_gl_vertex_attrib2fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib3f,"lime_gl_vertex_attrib3f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib3fv,"lime_gl_vertex_attrib3fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib4f,"lime_gl_vertex_attrib4f");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib4fv,"lime_gl_vertex_attrib4fv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4i,"lime_gl_vertex_attribi4i");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4iv,"lime_gl_vertex_attribi4iv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4ui,"lime_gl_vertex_attribi4ui");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attribi4uiv,"lime_gl_vertex_attribi4uiv");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib_divisor,"lime_gl_vertex_attrib_divisor");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib_ipointer,"lime_gl_vertex_attrib_ipointer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_vertex_attrib_pointer,"lime_gl_vertex_attrib_pointer");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_viewport,"lime_gl_viewport");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_gl_wait_sync,"lime_gl_wait_sync");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_create,"lime_hb_blob_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_create_sub_blob,"lime_hb_blob_create_sub_blob");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_data,"lime_hb_blob_get_data");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_data_writable,"lime_hb_blob_get_data_writable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_empty,"lime_hb_blob_get_empty");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_get_length,"lime_hb_blob_get_length");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_is_immutable,"lime_hb_blob_is_immutable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_blob_make_immutable,"lime_hb_blob_make_immutable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add,"lime_hb_buffer_add");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_codepoints,"lime_hb_buffer_add_codepoints");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_utf8,"lime_hb_buffer_add_utf8");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_utf16,"lime_hb_buffer_add_utf16");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_add_utf32,"lime_hb_buffer_add_utf32");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_allocation_successful,"lime_hb_buffer_allocation_successful");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_clear_contents,"lime_hb_buffer_clear_contents");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_create,"lime_hb_buffer_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_cluster_level,"lime_hb_buffer_get_cluster_level");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_content_type,"lime_hb_buffer_get_content_type");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_direction,"lime_hb_buffer_get_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_empty,"lime_hb_buffer_get_empty");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_flags,"lime_hb_buffer_get_flags");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_glyph_infos,"lime_hb_buffer_get_glyph_infos");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_glyph_positions,"lime_hb_buffer_get_glyph_positions");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_language,"lime_hb_buffer_get_language");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_length,"lime_hb_buffer_get_length");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_replacement_codepoint,"lime_hb_buffer_get_replacement_codepoint");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_script,"lime_hb_buffer_get_script");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_get_segment_properties,"lime_hb_buffer_get_segment_properties");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_guess_segment_properties,"lime_hb_buffer_guess_segment_properties");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_normalize_glyphs,"lime_hb_buffer_normalize_glyphs");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_preallocate,"lime_hb_buffer_preallocate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_reset,"lime_hb_buffer_reset");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_reverse,"lime_hb_buffer_reverse");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_reverse_clusters,"lime_hb_buffer_reverse_clusters");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_serialize_format_from_string,"lime_hb_buffer_serialize_format_from_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_serialize_format_to_string,"lime_hb_buffer_serialize_format_to_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_serialize_list_formats,"lime_hb_buffer_serialize_list_formats");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_cluster_level,"lime_hb_buffer_set_cluster_level");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_content_type,"lime_hb_buffer_set_content_type");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_direction,"lime_hb_buffer_set_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_flags,"lime_hb_buffer_set_flags");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_language,"lime_hb_buffer_set_language");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_length,"lime_hb_buffer_set_length");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_replacement_codepoint,"lime_hb_buffer_set_replacement_codepoint");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_script,"lime_hb_buffer_set_script");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_buffer_set_segment_properties,"lime_hb_buffer_set_segment_properties");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_create,"lime_hb_face_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_empty,"lime_hb_face_get_empty");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_glyph_count,"lime_hb_face_get_glyph_count");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_index,"lime_hb_face_get_index");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_get_upem,"lime_hb_face_get_upem");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_is_immutable,"lime_hb_face_is_immutable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_make_immutable,"lime_hb_face_make_immutable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_reference_blob,"lime_hb_face_reference_blob");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_reference_table,"lime_hb_face_reference_table");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_set_glyph_count,"lime_hb_face_set_glyph_count");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_set_index,"lime_hb_face_set_index");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_face_set_upem,"lime_hb_face_set_upem");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_feature_from_string,"lime_hb_feature_from_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_feature_to_string,"lime_hb_feature_to_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_add_glyph_origin_for_direction,"lime_hb_font_add_glyph_origin_for_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_create,"lime_hb_font_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_create_sub_font,"lime_hb_font_create_sub_font");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_empty,"lime_hb_font_get_empty");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_face,"lime_hb_font_get_face");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_glyph_advance_for_direction,"lime_hb_font_get_glyph_advance_for_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_glyph_kerning_for_direction,"lime_hb_font_get_glyph_kerning_for_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_glyph_origin_for_direction,"lime_hb_font_get_glyph_origin_for_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_parent,"lime_hb_font_get_parent");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_ppem,"lime_hb_font_get_ppem");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_get_scale,"lime_hb_font_get_scale");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_glyph_from_string,"lime_hb_font_glyph_from_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_glyph_to_string,"lime_hb_font_glyph_to_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_is_immutable,"lime_hb_font_is_immutable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_make_immutable,"lime_hb_font_make_immutable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_set_ppem,"lime_hb_font_set_ppem");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_set_scale,"lime_hb_font_set_scale");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_font_subtract_glyph_origin_for_direction,"lime_hb_font_subtract_glyph_origin_for_direction");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_create,"lime_hb_ft_font_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_create_referenced,"lime_hb_ft_font_create_referenced");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_get_load_flags,"lime_hb_ft_font_get_load_flags");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_ft_font_set_load_flags,"lime_hb_ft_font_set_load_flags");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_language_from_string,"lime_hb_language_from_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_language_get_default,"lime_hb_language_get_default");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_language_to_string,"lime_hb_language_to_string");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_segment_properties_equal,"lime_hb_segment_properties_equal");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_segment_properties_hash,"lime_hb_segment_properties_hash");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_add,"lime_hb_set_add");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_add_range,"lime_hb_set_add_range");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_allocation_successful,"lime_hb_set_allocation_successful");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_clear,"lime_hb_set_clear");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_create,"lime_hb_set_create");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_del,"lime_hb_set_del");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_del_range,"lime_hb_set_del_range");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_empty,"lime_hb_set_get_empty");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_max,"lime_hb_set_get_max");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_min,"lime_hb_set_get_min");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_get_population,"lime_hb_set_get_population");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_has,"lime_hb_set_has");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_intersect,"lime_hb_set_intersect");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_invert,"lime_hb_set_invert");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_is_empty,"lime_hb_set_is_empty");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_is_equal,"lime_hb_set_is_equal");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_next,"lime_hb_set_next");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_next_range,"lime_hb_set_next_range");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_set,"lime_hb_set_set");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_subtract,"lime_hb_set_subtract");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_symmetric_difference,"lime_hb_set_symmetric_difference");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_set_union,"lime_hb_set_union");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_hb_shape,"lime_hb_shape");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_bitrate,"lime_vorbis_file_bitrate");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_bitrate_instant,"lime_vorbis_file_bitrate_instant");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_clear,"lime_vorbis_file_clear");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_comment,"lime_vorbis_file_comment");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_crosslap,"lime_vorbis_file_crosslap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_from_bytes,"lime_vorbis_file_from_bytes");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_from_file,"lime_vorbis_file_from_file");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_info,"lime_vorbis_file_info");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek,"lime_vorbis_file_pcm_seek");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek_lap,"lime_vorbis_file_pcm_seek_lap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek_page,"lime_vorbis_file_pcm_seek_page");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_seek_page_lap,"lime_vorbis_file_pcm_seek_page_lap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_seek,"lime_vorbis_file_raw_seek");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_seek_lap,"lime_vorbis_file_raw_seek_lap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_tell,"lime_vorbis_file_pcm_tell");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_pcm_total,"lime_vorbis_file_pcm_total");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_tell,"lime_vorbis_file_raw_tell");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_raw_total,"lime_vorbis_file_raw_total");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_read,"lime_vorbis_file_read");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_read_float,"lime_vorbis_file_read_float");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_seekable,"lime_vorbis_file_seekable");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_serial_number,"lime_vorbis_file_serial_number");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_streams,"lime_vorbis_file_streams");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek,"lime_vorbis_file_time_seek");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek_lap,"lime_vorbis_file_time_seek_lap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek_page,"lime_vorbis_file_time_seek_page");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_seek_page_lap,"lime_vorbis_file_time_seek_page_lap");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_tell,"lime_vorbis_file_time_tell");
HX_VISIT_MEMBER_NAME(NativeCFFI_obj::lime_vorbis_file_time_total,"lime_vorbis_file_time_total");
};
#endif
::hx::Class NativeCFFI_obj::__mClass;
static ::String NativeCFFI_obj_sStaticFields[] = {
HX_("lime_application_create",75,25,1a,bb),
HX_("lime_application_event_manager_register",33,3f,87,01),
HX_("lime_application_exec",ca,f1,81,e2),
HX_("lime_application_init",49,39,1f,e5),
HX_("lime_application_quit",08,3e,6e,ea),
HX_("lime_application_set_frame_rate",a8,03,d7,1d),
HX_("lime_application_update",82,44,10,c6),
HX_("lime_audio_load",99,89,38,30),
HX_("lime_audio_load_bytes",05,92,98,ba),
HX_("lime_audio_load_file",22,f6,9d,0c),
HX_("lime_bytes_from_data_pointer",1f,3b,02,90),
HX_("lime_bytes_get_data_pointer",af,ff,82,7b),
HX_("lime_bytes_get_data_pointer_offset",63,8d,9d,00),
HX_("lime_bytes_read_file",c7,b2,82,ba),
HX_("lime_cffi_get_native_pointer",6d,f2,d7,07),
HX_("lime_clipboard_event_manager_register",ed,56,db,9a),
HX_("lime_clipboard_get_text",29,fd,31,04),
HX_("lime_clipboard_set_text",9d,56,8f,b2),
HX_("lime_data_pointer_offset",60,b2,70,59),
HX_("lime_deflate_compress",e0,7d,72,7f),
HX_("lime_deflate_decompress",e1,49,b0,91),
HX_("lime_drop_event_manager_register",a0,48,49,3f),
HX_("lime_file_dialog_open_directory",36,64,09,e2),
HX_("lime_file_dialog_open_file",53,b1,fe,c0),
HX_("lime_file_dialog_open_files",c0,77,dc,1d),
HX_("lime_file_dialog_save_file",00,49,86,dc),
HX_("lime_file_watcher_create",d8,1b,00,e0),
HX_("lime_file_watcher_add_directory",33,92,27,79),
HX_("lime_file_watcher_remove_directory",4e,67,5d,01),
HX_("lime_file_watcher_update",e5,3a,f6,ea),
HX_("lime_font_get_ascender",06,f1,b5,57),
HX_("lime_font_get_descender",68,c1,2f,64),
HX_("lime_font_get_family_name",97,ce,b2,b4),
HX_("lime_font_get_glyph_index",90,3b,dd,a2),
HX_("lime_font_get_glyph_indices",25,83,e4,03),
HX_("lime_font_get_glyph_metrics",41,de,64,4d),
HX_("lime_font_get_height",f6,3e,aa,fc),
HX_("lime_font_get_num_glyphs",ef,8b,e7,ad),
HX_("lime_font_get_underline_position",0b,93,8e,28),
HX_("lime_font_get_underline_thickness",d2,14,47,de),
HX_("lime_font_get_units_per_em",29,72,55,dc),
HX_("lime_font_load",ec,08,6e,02),
HX_("lime_font_load_bytes",98,d1,ec,43),
HX_("lime_font_load_file",ef,09,bb,9c),
HX_("lime_font_outline_decompose",ee,da,88,55),
HX_("lime_font_render_glyph",89,79,39,0f),
HX_("lime_font_render_glyphs",ca,de,10,43),
HX_("lime_font_set_size",84,ff,47,dd),
HX_("lime_gamepad_add_mappings",0b,39,a9,d8),
HX_("lime_gamepad_get_device_guid",61,03,1f,2d),
HX_("lime_gamepad_get_device_name",23,58,b0,31),
HX_("lime_gamepad_event_manager_register",02,b7,1e,51),
HX_("lime_gzip_compress",fd,cc,13,7a),
HX_("lime_gzip_decompress",3e,5a,99,72),
HX_("lime_haptic_vibrate",31,58,7a,85),
HX_("lime_image_encode",64,48,63,9c),
HX_("lime_image_load",f4,20,ad,9c),
HX_("lime_image_load_bytes",a0,9f,39,e7),
HX_("lime_image_load_file",e7,d4,9f,41),
HX_("lime_image_data_util_color_transform",ba,cc,96,40),
HX_("lime_image_data_util_copy_channel",4f,54,36,a5),
HX_("lime_image_data_util_copy_pixels",21,51,7b,ab),
HX_("lime_image_data_util_fill_rect",8a,8c,a4,8e),
HX_("lime_image_data_util_flood_fill",ba,e7,5b,f2),
HX_("lime_image_data_util_get_pixels",cc,3e,de,0c),
HX_("lime_image_data_util_merge",a2,d2,b1,f7),
HX_("lime_image_data_util_multiply_alpha",99,86,ad,5d),
HX_("lime_image_data_util_resize",ca,16,5a,c4),
HX_("lime_image_data_util_set_format",4a,7d,40,81),
HX_("lime_image_data_util_set_pixels",40,dd,5b,10),
HX_("lime_image_data_util_threshold",95,30,16,89),
HX_("lime_image_data_util_unmultiply_alpha",32,d8,15,90),
HX_("lime_joystick_get_device_guid",90,59,1a,42),
HX_("lime_joystick_get_device_name",52,ae,ab,46),
HX_("lime_joystick_get_num_axes",c0,e1,d4,a9),
HX_("lime_joystick_get_num_buttons",86,9c,1a,05),
HX_("lime_joystick_get_num_hats",53,f9,63,ae),
HX_("lime_joystick_get_num_trackballs",04,66,ee,99),
HX_("lime_joystick_event_manager_register",b3,14,1d,14),
HX_("lime_jpeg_decode_bytes",a7,ff,10,c9),
HX_("lime_jpeg_decode_file",c0,92,ae,0c),
HX_("lime_key_code_from_scan_code",e2,69,76,bc),
HX_("lime_key_code_to_scan_code",33,c7,96,30),
HX_("lime_key_event_manager_register",c4,10,76,37),
HX_("lime_lzma_compress",75,e7,f2,95),
HX_("lime_lzma_decompress",b6,02,4e,98),
HX_("lime_mouse_event_manager_register",7e,33,83,ea),
HX_("lime_neko_execute",fb,62,24,05),
HX_("lime_png_decode_bytes",9a,13,98,26),
HX_("lime_png_decode_file",2d,7e,35,25),
HX_("lime_render_event_manager_register",d9,6b,ed,ee),
HX_("lime_sensor_event_manager_register",75,01,d7,10),
HX_("lime_system_get_allow_screen_timeout",73,89,73,7a),
HX_("lime_system_set_allow_screen_timeout",e7,0a,4e,8d),
HX_("lime_system_get_device_model",af,7c,01,19),
HX_("lime_system_get_device_vendor",c2,71,1b,a6),
HX_("lime_system_get_directory",5e,9e,04,7c),
HX_("lime_system_get_display",f3,47,82,d2),
HX_("lime_system_get_ios_tablet",07,23,ac,cd),
HX_("lime_system_get_num_displays",f9,90,37,4f),
HX_("lime_system_get_platform_label",97,fa,f9,96),
HX_("lime_system_get_platform_name",08,2b,96,25),
HX_("lime_system_get_platform_version",7b,82,4b,3e),
HX_("lime_system_get_timer",36,5f,72,67),
HX_("lime_system_open_file",6b,2d,58,ea),
HX_("lime_system_open_url",60,3f,2e,b4),
HX_("lime_text_event_manager_register",e2,83,68,5d),
HX_("lime_touch_event_manager_register",24,25,f4,f5),
HX_("lime_window_alert",37,b9,e2,c1),
HX_("lime_window_close",93,79,b7,e8),
HX_("lime_window_context_flip",c2,15,98,c7),
HX_("lime_window_context_lock",00,9f,91,cb),
HX_("lime_window_context_make_current",bd,6d,a5,80),
HX_("lime_window_context_unlock",19,55,3d,16),
HX_("lime_window_create",c1,a4,90,25),
HX_("lime_window_focus",b3,c1,dd,a4),
HX_("lime_window_get_context",21,ae,a1,6b),
HX_("lime_window_get_context_type",d8,88,68,17),
HX_("lime_window_get_display",74,42,74,0d),
HX_("lime_window_get_display_mode",4e,48,b4,98),
HX_("lime_window_get_height",f5,7b,27,d0),
HX_("lime_window_get_id",e9,30,b1,4c),
HX_("lime_window_get_mouse_lock",93,ce,a9,67),
HX_("lime_window_get_scale",3c,16,d2,0d),
HX_("lime_window_get_text_input_enabled",c8,3e,fd,3e),
HX_("lime_window_get_width",b8,fd,65,5f),
HX_("lime_window_get_x",2a,07,b5,31),
HX_("lime_window_get_y",2b,07,b5,31),
HX_("lime_window_move",96,b5,64,4b),
HX_("lime_window_read_pixels",51,24,eb,4c),
HX_("lime_window_resize",b9,97,fc,b1),
HX_("lime_window_set_borderless",c7,c1,d2,19),
HX_("lime_window_set_cursor",58,a1,41,10),
HX_("lime_window_set_display_mode",c2,35,f6,ee),
HX_("lime_window_set_fullscreen",bd,b5,15,fc),
HX_("lime_window_set_icon",7b,f5,6a,6e),
HX_("lime_window_set_maximized",d6,f8,ec,06),
HX_("lime_window_set_minimized",44,e6,a9,30),
HX_("lime_window_set_mouse_lock",07,b7,c9,87),
HX_("lime_window_set_resizable",29,22,5c,b1),
HX_("lime_window_set_text_input_enabled",3c,bb,a8,72),
HX_("lime_window_set_title",56,49,8f,88),
HX_("lime_window_warp_mouse",f3,a9,91,df),
HX_("lime_window_event_manager_register",7f,16,8e,0d),
HX_("lime_zlib_compress",ac,90,d2,8a),
HX_("lime_zlib_decompress",ad,a7,53,43),
HX_("lime_al_buffer_data",9f,3d,30,e4),
HX_("lime_al_buffer3f",7d,e7,92,da),
HX_("lime_al_buffer3i",80,e7,92,da),
HX_("lime_al_bufferf",fc,c8,9c,ee),
HX_("lime_al_bufferfv",fa,13,93,da),
HX_("lime_al_bufferi",ff,c8,9c,ee),
HX_("lime_al_bufferiv",97,16,93,da),
HX_("lime_al_cleanup",ba,31,4e,e8),
HX_("lime_al_delete_buffer",ea,b3,0d,56),
HX_("lime_al_delete_buffers",49,b9,ef,f5),
HX_("lime_al_delete_source",c5,a7,aa,b7),
HX_("lime_al_delete_sources",0e,25,a8,fd),
HX_("lime_al_disable",7e,8f,64,ee),
HX_("lime_al_distance_model",09,2d,9c,2e),
HX_("lime_al_doppler_factor",ea,b2,5f,1d),
HX_("lime_al_doppler_velocity",f8,18,9f,e4),
HX_("lime_al_enable",ad,cd,b6,64),
HX_("lime_al_gen_source",14,70,09,16),
HX_("lime_al_gen_sources",df,a1,38,32),
HX_("lime_al_get_boolean",55,f3,96,e8),
HX_("lime_al_get_booleanv",81,f7,7d,9b),
HX_("lime_al_gen_buffer",39,7c,6c,b4),
HX_("lime_al_gen_buffers",1a,36,80,2a),
HX_("lime_al_get_buffer3f",86,b8,6d,87),
HX_("lime_al_get_buffer3i",89,b8,6d,87),
HX_("lime_al_get_bufferf",13,ac,28,1c),
HX_("lime_al_get_bufferfv",03,e5,6d,87),
HX_("lime_al_get_bufferi",16,ac,28,1c),
HX_("lime_al_get_bufferiv",a0,e7,6d,87),
HX_("lime_al_get_double",04,97,d1,6d),
HX_("lime_al_get_doublev",f2,8c,92,a9),
HX_("lime_al_get_enum_value",e6,c9,e4,87),
HX_("lime_al_get_error",35,5f,64,6b),
HX_("lime_al_get_float",09,59,d1,fa),
HX_("lime_al_get_floatv",4d,8f,5c,7c),
HX_("lime_al_get_integer",6b,c6,b3,81),
HX_("lime_al_get_integerv",ab,d7,99,fb),
HX_("lime_al_get_listener3f",ba,13,81,29),
HX_("lime_al_get_listener3i",bd,13,81,29),
HX_("lime_al_get_listenerf",5f,b3,bb,3a),
HX_("lime_al_get_listenerfv",37,40,81,29),
HX_("lime_al_get_listeneri",62,b3,bb,3a),
HX_("lime_al_get_listeneriv",d4,42,81,29),
HX_("lime_al_get_proc_address",fe,7c,3d,26),
HX_("lime_al_get_source3f",21,99,13,41),
HX_("lime_al_get_source3i",24,99,13,41),
HX_("lime_al_get_sourcef",d8,17,e1,23),
HX_("lime_al_get_sourcefv",9e,c5,13,41),
HX_("lime_al_get_sourcei",db,17,e1,23),
HX_("lime_al_get_sourceiv",3b,c8,13,41),
HX_("lime_al_get_string",c4,94,36,4c),
HX_("lime_al_is_buffer",0b,5b,4a,2a),
HX_("lime_al_is_enabled",16,b0,65,a3),
HX_("lime_al_is_extension_present",d0,16,00,ef),
HX_("lime_al_is_source",e6,4e,e7,8b),
HX_("lime_al_listener3f",71,2e,89,73),
HX_("lime_al_listener3i",74,2e,89,73),
HX_("lime_al_listenerf",88,9c,1f,a8),
HX_("lime_al_listenerfv",ee,5a,89,73),
HX_("lime_al_listeneri",8b,9c,1f,a8),
HX_("lime_al_listeneriv",8b,5d,89,73),
HX_("lime_al_source_pause",fc,3f,07,a0),
HX_("lime_al_source_pausev",fa,bc,50,66),
HX_("lime_al_source_play",ae,47,e1,7d),
HX_("lime_al_source_playv",08,71,3d,a7),
HX_("lime_al_source_queue_buffers",8b,e2,2d,54),
HX_("lime_al_source_rewind",35,a6,ec,81),
HX_("lime_al_source_rewindv",a1,c8,24,2d),
HX_("lime_al_source_stop",bc,09,e3,7f),
HX_("lime_al_source_stopv",3a,7b,c5,66),
HX_("lime_al_source_unqueue_buffers",12,06,e2,64),
HX_("lime_al_source3f",18,c8,38,94),
HX_("lime_al_source3i",1b,c8,38,94),
HX_("lime_al_sourcef",c1,34,55,f6),
HX_("lime_al_sourcefv",95,f4,38,94),
HX_("lime_al_sourcei",c4,34,55,f6),
HX_("lime_al_sourceiv",32,f7,38,94),
HX_("lime_al_speed_of_sound",89,b0,a8,8a),
HX_("lime_alc_close_device",ee,17,5c,d1),
HX_("lime_alc_create_context",1d,4b,86,d8),
HX_("lime_alc_destroy_context",99,a8,9a,12),
HX_("lime_alc_get_contexts_device",d7,e3,ae,e6),
HX_("lime_alc_get_current_context",6f,01,f1,48),
HX_("lime_alc_get_error",0e,4d,6e,60),
HX_("lime_alc_get_integerv",72,57,31,49),
HX_("lime_alc_get_string",cb,c4,dc,bf),
HX_("lime_alc_make_context_current",89,fe,9c,ca),
HX_("lime_alc_open_device",5a,d6,40,50),
HX_("lime_alc_pause_device",70,dc,44,20),
HX_("lime_alc_process_context",0e,1b,b1,00),
HX_("lime_alc_resume_device",97,8c,92,24),
HX_("lime_alc_suspend_context",1b,fd,cc,57),
HX_("lime_al_gen_filter",f1,de,0c,69),
HX_("lime_al_filteri",47,c7,52,46),
HX_("lime_al_filterf",44,c7,52,46),
HX_("lime_al_remove_direct_filter",7d,1d,1f,9c),
HX_("lime_al_is_filter",c3,bd,ea,de),
HX_("lime_al_get_filteri",5e,aa,de,73),
HX_("lime_al_gen_effect",ca,19,7b,44),
HX_("lime_al_effectf",4b,0a,58,6b),
HX_("lime_al_effectfv",cb,f7,b0,81),
HX_("lime_al_effecti",4e,0a,58,6b),
HX_("lime_al_effectiv",68,fa,b0,81),
HX_("lime_al_is_effect",9c,f8,58,ba),
HX_("lime_al_gen_aux",2b,74,63,ef),
HX_("lime_al_auxf",8c,03,5d,ce),
HX_("lime_al_auxfv",6a,17,06,c3),
HX_("lime_al_auxi",8f,03,5d,ce),
HX_("lime_al_auxiv",07,1a,06,c3),
HX_("lime_al_is_aux",19,fe,d1,dd),
HX_("lime_al_remove_send",f9,be,05,4f),
HX_("lime_cairo_arc",f1,76,fc,f9),
HX_("lime_cairo_arc_negative",c3,c0,b7,d8),
HX_("lime_cairo_clip",51,81,39,c4),
HX_("lime_cairo_clip_preserve",ba,af,0e,79),
HX_("lime_cairo_clip_extents",1b,ef,99,33),
HX_("lime_cairo_close_path",0d,58,78,e1),
HX_("lime_cairo_copy_page",38,e4,e1,1e),
HX_("lime_cairo_create",bd,db,50,d8),
HX_("lime_cairo_curve_to",4c,ed,ec,ef),
HX_("lime_cairo_fill",04,e1,32,c6),
HX_("lime_cairo_fill_extents",ce,b9,56,6b),
HX_("lime_cairo_fill_preserve",a7,41,83,06),
HX_("lime_cairo_get_antialias",e4,bf,ea,4f),
HX_("lime_cairo_get_current_point",c0,c4,0b,c0),
HX_("lime_cairo_get_dash",dc,f7,36,c9),
HX_("lime_cairo_get_dash_count",ec,d0,06,ce),
HX_("lime_cairo_get_fill_rule",ae,34,3f,14),
HX_("lime_cairo_get_font_face",83,ed,75,e9),
HX_("lime_cairo_get_font_options",38,0e,38,ee),
HX_("lime_cairo_get_group_target",1b,04,8e,27),
HX_("lime_cairo_get_line_cap",91,8a,ff,dc),
HX_("lime_cairo_get_line_join",8b,cc,44,87),
HX_("lime_cairo_get_line_width",45,aa,28,4d),
HX_("lime_cairo_get_matrix",4b,0f,b1,58),
HX_("lime_cairo_get_miter_limit",f7,da,f6,e3),
HX_("lime_cairo_get_operator",2e,cb,0b,90),
HX_("lime_cairo_get_source",e5,89,1a,cf),
HX_("lime_cairo_get_target",5b,cc,d5,23),
HX_("lime_cairo_get_tolerance",43,26,7d,0d),
HX_("lime_cairo_has_current_point",84,52,43,91),
HX_("lime_cairo_identity_matrix",81,b1,fe,41),
HX_("lime_cairo_in_clip",c9,a4,67,5b),
HX_("lime_cairo_in_fill",7c,04,61,5d),
HX_("lime_cairo_in_stroke",f1,19,0e,c7),
HX_("lime_cairo_line_to",45,88,aa,7c),
HX_("lime_cairo_mask",6d,53,cd,ca),
HX_("lime_cairo_mask_surface",1b,c8,a3,8c),
HX_("lime_cairo_move_to",48,cd,98,a7),
HX_("lime_cairo_new_path",25,bc,98,94),
HX_("lime_cairo_paint",fd,d5,07,63),
HX_("lime_cairo_paint_with_alpha",67,1b,fb,63),
HX_("lime_cairo_pop_group",b0,94,6e,0c),
HX_("lime_cairo_pop_group_to_source",d0,9e,67,af),
HX_("lime_cairo_push_group",1b,55,88,61),
HX_("lime_cairo_push_group_with_content",a4,bb,13,d3),
HX_("lime_cairo_rectangle",0e,0e,2e,48),
HX_("lime_cairo_rel_curve_to",b2,ac,52,05),
HX_("lime_cairo_rel_line_to",9f,37,7e,c0),
HX_("lime_cairo_rel_move_to",a2,7c,6c,eb),
HX_("lime_cairo_reset_clip",c1,bb,a3,f6),
HX_("lime_cairo_restore",6d,1b,b5,c7),
HX_("lime_cairo_rotate",1c,bb,61,27),
HX_("lime_cairo_save",be,9d,c4,ce),
HX_("lime_cairo_scale",e9,ec,87,1e),
HX_("lime_cairo_set_antialias",f0,a1,f0,94),
HX_("lime_cairo_set_dash",50,51,94,77),
HX_("lime_cairo_set_fill_rule",ba,16,45,59),
HX_("lime_cairo_set_font_face",8f,cf,7b,2e),
HX_("lime_cairo_set_font_options",ac,fb,79,44),
HX_("lime_cairo_set_font_size",b3,bb,19,37),
HX_("lime_cairo_set_line_cap",05,ae,f8,f1),
HX_("lime_cairo_set_line_join",97,ae,4a,cc),
HX_("lime_cairo_set_line_width",b9,92,48,6d),
HX_("lime_cairo_set_matrix",bf,ad,2e,5c),
HX_("lime_cairo_set_miter_limit",03,58,c2,df),
HX_("lime_cairo_set_operator",a2,ee,04,a5),
HX_("lime_cairo_set_source",59,28,98,d2),
HX_("lime_cairo_set_source_rgb",e7,e8,97,83),
HX_("lime_cairo_set_source_rgba",9a,e1,53,a1),
HX_("lime_cairo_set_source_surface",07,69,ef,cf),
HX_("lime_cairo_set_tolerance",4f,08,83,52),
HX_("lime_cairo_show_glyphs",28,2f,f5,54),
HX_("lime_cairo_show_page",f0,25,4b,c7),
HX_("lime_cairo_show_text",4e,18,f3,c9),
HX_("lime_cairo_status",f3,5b,3d,62),
HX_("lime_cairo_stroke",79,28,76,6d),
HX_("lime_cairo_stroke_extents",43,fe,0d,ea),
HX_("lime_cairo_stroke_preserve",92,e3,27,68),
HX_("lime_cairo_text_path",96,5b,d4,31),
HX_("lime_cairo_transform",4b,67,44,74),
HX_("lime_cairo_translate",2d,11,31,78),
HX_("lime_cairo_version",37,9b,f6,d9),
HX_("lime_cairo_version_string",19,84,60,45),
HX_("lime_cairo_font_face_status",25,18,5c,f3),
HX_("lime_cairo_font_options_create",4c,3f,9e,9d),
HX_("lime_cairo_font_options_get_antialias",35,7c,8d,f3),
HX_("lime_cairo_font_options_get_hint_metrics",24,e1,9b,00),
HX_("lime_cairo_font_options_get_hint_style",d2,b9,3d,00),
HX_("lime_cairo_font_options_get_subpixel_order",6e,5e,52,fe),
HX_("lime_cairo_font_options_set_antialias",41,5e,93,38),
HX_("lime_cairo_font_options_set_hint_metrics",98,ce,dd,56),
HX_("lime_cairo_font_options_set_hint_style",46,a2,5d,20),
HX_("lime_cairo_font_options_set_subpixel_order",e2,90,01,db),
HX_("lime_cairo_ft_font_face_create",de,6b,31,70),
HX_("lime_cairo_image_surface_create",33,6e,fc,ce),
HX_("lime_cairo_image_surface_create_for_data",2c,35,7d,63),
HX_("lime_cairo_image_surface_get_data",aa,94,c4,6f),
HX_("lime_cairo_image_surface_get_format",b7,6d,9c,34),
HX_("lime_cairo_image_surface_get_height",67,e6,59,39),
HX_("lime_cairo_image_surface_get_stride",99,fe,3d,48),
HX_("lime_cairo_image_surface_get_width",86,27,18,52),
HX_("lime_cairo_pattern_add_color_stop_rgb",5a,49,3d,bb),
HX_("lime_cairo_pattern_add_color_stop_rgba",c7,e5,62,1a),
HX_("lime_cairo_pattern_create_for_surface",c4,41,ff,a6),
HX_("lime_cairo_pattern_create_linear",f8,82,42,cf),
HX_("lime_cairo_pattern_create_radial",f2,ef,98,93),
HX_("lime_cairo_pattern_create_rgb",1a,90,6b,ce),
HX_("lime_cairo_pattern_create_rgba",07,87,b2,cf),
HX_("lime_cairo_pattern_get_color_stop_count",47,7e,23,f0),
HX_("lime_cairo_pattern_get_extend",b3,1c,37,1f),
HX_("lime_cairo_pattern_get_filter",91,6a,51,dd),
HX_("lime_cairo_pattern_get_matrix",1a,81,e4,13),
HX_("lime_cairo_pattern_set_extend",27,bb,b4,22),
HX_("lime_cairo_pattern_set_filter",05,09,cf,e0),
HX_("lime_cairo_pattern_set_matrix",8e,1f,62,17),
HX_("lime_cairo_surface_flush",51,85,bf,ed),
HX_("lime_curl_getdate",db,3c,06,67),
HX_("lime_curl_global_cleanup",d1,6f,f2,40),
HX_("lime_curl_global_init",43,79,fb,d4),
HX_("lime_curl_version",2f,4a,eb,b9),
HX_("lime_curl_version_info",be,bf,7a,9e),
HX_("lime_curl_easy_cleanup",30,cd,aa,62),
HX_("lime_curl_easy_duphandle",b3,c0,a0,67),
HX_("lime_curl_easy_escape",f5,67,b1,5f),
HX_("lime_curl_easy_flush",d0,88,a5,06),
HX_("lime_curl_easy_getinfo",10,7d,cd,e4),
HX_("lime_curl_easy_init",84,9a,e4,65),
HX_("lime_curl_easy_pause",02,fd,61,c1),
HX_("lime_curl_easy_perform",ad,a9,46,32),
HX_("lime_curl_easy_recv",9a,ac,d0,6b),
HX_("lime_curl_easy_reset",db,6f,d2,ea),
HX_("lime_curl_easy_send",bc,ec,79,6c),
HX_("lime_curl_easy_setopt",45,96,5b,f4),
HX_("lime_curl_easy_strerror",eb,2a,7c,55),
HX_("lime_curl_easy_unescape",0e,9c,61,a1),
HX_("lime_curl_multi_init",1f,9b,4b,19),
HX_("lime_curl_multi_add_handle",95,ee,87,1c),
HX_("lime_curl_multi_get_running_handles",33,e6,dc,58),
HX_("lime_curl_multi_info_read",98,e9,01,8f),
HX_("lime_curl_multi_perform",f2,bb,b3,bf),
HX_("lime_curl_multi_remove_handle",94,6f,9e,9d),
HX_("lime_curl_multi_setopt",a0,33,f8,8f),
HX_("lime_curl_multi_wait",84,ba,82,22),
HX_("lime_gl_active_texture",52,df,77,b3),
HX_("lime_gl_attach_shader",6f,78,09,06),
HX_("lime_gl_begin_query",02,de,10,34),
HX_("lime_gl_begin_transform_feedback",be,35,71,43),
HX_("lime_gl_bind_attrib_location",78,d0,23,1a),
HX_("lime_gl_bind_buffer",52,57,d9,e2),
HX_("lime_gl_bind_buffer_base",5e,e3,50,f4),
HX_("lime_gl_bind_buffer_range",d0,8d,db,08),
HX_("lime_gl_bind_framebuffer",5b,d1,58,70),
HX_("lime_gl_bind_renderbuffer",a8,70,ea,63),
HX_("lime_gl_bind_sampler",76,32,8c,6d),
HX_("lime_gl_bind_texture",49,36,a3,88),
HX_("lime_gl_bind_transform_feedback",4a,2a,cb,62),
HX_("lime_gl_bind_vertex_array",10,57,8b,e5),
HX_("lime_gl_blend_color",85,d0,ce,3a),
HX_("lime_gl_blend_equation",aa,fd,08,1f),
HX_("lime_gl_blend_equation_separate",d8,13,95,58),
HX_("lime_gl_blend_func",62,46,02,e9),
HX_("lime_gl_blend_func_separate",20,f4,b8,2e),
HX_("lime_gl_blit_framebuffer",d3,e7,f0,bd),
HX_("lime_gl_buffer_data",d9,31,40,74),
HX_("lime_gl_buffer_sub_data",b8,37,6c,ab),
HX_("lime_gl_check_framebuffer_status",0b,35,e1,ea),
HX_("lime_gl_clear",5d,92,00,3b),
HX_("lime_gl_clear_bufferfi",a5,07,ff,ac),
HX_("lime_gl_clear_bufferfv",b2,07,ff,ac),
HX_("lime_gl_clear_bufferiv",4f,0a,ff,ac),
HX_("lime_gl_clear_bufferuiv",00,0b,33,b2),
HX_("lime_gl_client_wait_sync",a1,96,ad,b8),
HX_("lime_gl_clear_color",c1,ee,49,1a),
HX_("lime_gl_clear_depthf",e5,26,69,8d),
HX_("lime_gl_clear_stencil",da,ce,51,44),
HX_("lime_gl_color_mask",b8,f1,a7,79),
HX_("lime_gl_compile_shader",e1,d4,68,7c),
HX_("lime_gl_compressed_tex_image_2d",bc,70,b8,76),
HX_("lime_gl_compressed_tex_image_3d",9b,71,b8,76),
HX_("lime_gl_compressed_tex_sub_image_2d",9b,19,2d,07),
HX_("lime_gl_compressed_tex_sub_image_3d",7a,1a,2d,07),
HX_("lime_gl_copy_buffer_sub_data",4e,b4,15,e7),
HX_("lime_gl_copy_tex_image_2d",08,15,17,3a),
HX_("lime_gl_copy_tex_sub_image_2d",e7,d3,21,4b),
HX_("lime_gl_copy_tex_sub_image_3d",c6,d4,21,4b),
HX_("lime_gl_create_buffer",f3,ef,e7,8a),
HX_("lime_gl_create_framebuffer",1a,51,d8,73),
HX_("lime_gl_create_program",31,ac,72,42),
HX_("lime_gl_create_query",75,37,ce,ea),
HX_("lime_gl_create_renderbuffer",09,b8,fa,6f),
HX_("lime_gl_create_sampler",b5,26,43,d2),
HX_("lime_gl_create_shader",18,f2,73,d7),
HX_("lime_gl_create_texture",88,2a,5a,ed),
HX_("lime_gl_create_transform_feedback",6b,b0,6c,10),
HX_("lime_gl_create_vertex_array",71,9e,9b,f1),
HX_("lime_gl_cull_face",5a,6e,d7,a6),
HX_("lime_gl_delete_buffer",a4,aa,2e,01),
HX_("lime_gl_delete_framebuffer",c9,34,1a,a6),
HX_("lime_gl_delete_program",60,4c,0f,4a),
HX_("lime_gl_delete_query",e4,1d,11,2f),
HX_("lime_gl_delete_renderbuffer",7a,0d,60,37),
HX_("lime_gl_delete_sampler",e4,c6,df,d9),
HX_("lime_gl_delete_shader",c9,ac,ba,4d),
HX_("lime_gl_delete_sync",ff,36,e6,70),
HX_("lime_gl_delete_texture",b7,ca,f6,f4),
HX_("lime_gl_delete_transform_feedback",9c,30,f9,ec),
HX_("lime_gl_delete_vertex_array",e2,f3,00,b9),
HX_("lime_gl_depth_func",70,78,16,ad),
HX_("lime_gl_depth_mask",18,ce,a7,b1),
HX_("lime_gl_depth_rangef",35,90,41,42),
HX_("lime_gl_detach_shader",a1,84,13,fd),
HX_("lime_gl_disable",b8,5e,23,70),
HX_("lime_gl_disable_vertex_attrib_array",58,ba,8e,0a),
HX_("lime_gl_draw_arrays",a5,43,0c,17),
HX_("lime_gl_draw_arrays_instanced",d5,22,36,ca),
HX_("lime_gl_draw_buffers",28,66,c6,8a),
HX_("lime_gl_draw_elements",e2,d1,98,b9),
HX_("lime_gl_draw_elements_instanced",52,bf,3f,a8),
HX_("lime_gl_draw_range_elements",24,96,29,74),
HX_("lime_gl_enable",b3,43,5f,56),
HX_("lime_gl_enable_vertex_attrib_array",d3,1e,a2,ea),
HX_("lime_gl_end_query",34,75,2d,a4),
HX_("lime_gl_end_transform_feedback",4c,87,dc,33),
HX_("lime_gl_fence_sync",19,5b,e2,cd),
HX_("lime_gl_finish",83,d5,56,e4),
HX_("lime_gl_flush",94,83,40,f5),
HX_("lime_gl_framebuffer_renderbuffer",d8,1b,4b,9a),
HX_("lime_gl_framebuffer_texture2D",2b,bd,7d,0a),
HX_("lime_gl_framebuffer_texture_layer",eb,7a,6b,51),
HX_("lime_gl_front_face",63,a0,73,7d),
HX_("lime_gl_generate_mipmap",62,a5,38,e6),
HX_("lime_gl_get_active_attrib",0a,40,b7,d1),
HX_("lime_gl_get_active_uniform",74,90,d7,2a),
HX_("lime_gl_get_active_uniform_blocki",27,66,77,4f),
HX_("lime_gl_get_active_uniform_blockiv",6f,fc,01,39),
HX_("lime_gl_get_active_uniform_block_name",e8,aa,c0,b1),
HX_("lime_gl_get_active_uniformsiv",2c,cf,46,71),
HX_("lime_gl_get_attached_shaders",cc,1c,b8,0d),
HX_("lime_gl_get_attrib_location",f1,00,cb,a5),
HX_("lime_gl_get_boolean",8f,e7,a6,78),
HX_("lime_gl_get_booleanv",07,b6,63,19),
HX_("lime_gl_get_buffer_parameteri",66,b2,90,b3),
HX_("lime_gl_get_buffer_parameteri64v",d2,78,ff,d1),
HX_("lime_gl_get_buffer_parameteriv",50,67,0b,6b),
HX_("lime_gl_get_buffer_pointerv",5f,3b,42,e0),
HX_("lime_gl_get_buffer_sub_data",cf,ae,41,0b),
HX_("lime_gl_get_context_attributes",e0,c6,c6,3e),
HX_("lime_gl_get_error",ef,f0,e0,f5),
HX_("lime_gl_get_extension",26,d8,5e,d7),
HX_("lime_gl_get_float",c3,ea,4d,85),
HX_("lime_gl_get_floatv",53,80,df,1e),
HX_("lime_gl_get_frag_data_location",96,e5,26,70),
HX_("lime_gl_get_framebuffer_attachment_parameteri",51,62,ed,59),
HX_("lime_gl_get_framebuffer_attachment_parameteriv",05,a5,c8,55),
HX_("lime_gl_get_integer",a5,ba,c3,11),
HX_("lime_gl_get_integer64v",f3,e1,05,89),
HX_("lime_gl_get_integer64i_v",9d,fa,ae,3f),
HX_("lime_gl_get_integerv",31,96,7f,79),
HX_("lime_gl_get_integeri_v",5b,ba,2c,89),
HX_("lime_gl_get_internalformativ",5a,81,a0,26),
HX_("lime_gl_get_program_binary",95,19,be,d8),
HX_("lime_gl_get_program_info_log",87,8b,1c,48),
HX_("lime_gl_get_programi",9e,36,7d,de),
HX_("lime_gl_get_programiv",18,94,12,cf),
HX_("lime_gl_get_queryi",5a,79,d8,ac),
HX_("lime_gl_get_queryiv",dc,b5,91,90),
HX_("lime_gl_get_query_objectui",23,9c,16,ce),
HX_("lime_gl_get_query_objectuiv",f3,02,b2,85),
HX_("lime_gl_get_renderbuffer_parameteri",90,dd,65,bc),
HX_("lime_gl_get_renderbuffer_parameteriv",e6,00,bc,1c),
HX_("lime_gl_get_sampler_parameterf",2d,c2,93,7c),
HX_("lime_gl_get_sampler_parameterfv",a9,25,b6,84),
HX_("lime_gl_get_sampler_parameteri",30,c2,93,7c),
HX_("lime_gl_get_sampler_parameteriv",46,28,b6,84),
HX_("lime_gl_get_shader_info_log",74,08,6b,9a),
HX_("lime_gl_get_shaderi",8b,7e,2e,5a),
HX_("lime_gl_get_shaderiv",8b,3b,80,8e),
HX_("lime_gl_get_shader_precision_format",d9,5f,b1,89),
HX_("lime_gl_get_shader_source",1c,86,a3,e7),
HX_("lime_gl_get_string",ca,85,b9,ee),
HX_("lime_gl_get_stringi",5f,8b,9b,f3),
HX_("lime_gl_get_sync_parameteri",2b,c5,94,ef),
HX_("lime_gl_get_sync_parameteriv",eb,c0,97,b2),
HX_("lime_gl_get_tex_parameterf",2e,b7,53,ae),
HX_("lime_gl_get_tex_parameterfv",88,91,ec,da),
HX_("lime_gl_get_tex_parameteri",31,b7,53,ae),
HX_("lime_gl_get_tex_parameteriv",25,94,ec,da),
HX_("lime_gl_get_transform_feedback_varying",62,3a,c3,2b),
HX_("lime_gl_get_uniformf",eb,19,aa,5a),
HX_("lime_gl_get_uniformfv",2b,94,2c,fa),
HX_("lime_gl_get_uniformi",ee,19,aa,5a),
HX_("lime_gl_get_uniformiv",c8,96,2c,fa),
HX_("lime_gl_get_uniformui",2f,a1,2c,fa),
HX_("lime_gl_get_uniformuiv",67,68,e0,ec),
HX_("lime_gl_get_uniform_block_index",fc,f7,fa,16),
HX_("lime_gl_get_uniform_location",19,0c,33,6c),
HX_("lime_gl_get_vertex_attribf",ba,30,62,1b),
HX_("lime_gl_get_vertex_attribfv",7c,72,88,da),
HX_("lime_gl_get_vertex_attribi",bd,30,62,1b),
HX_("lime_gl_get_vertex_attribiv",19,75,88,da),
HX_("lime_gl_get_vertex_attribii",0c,75,88,da),
HX_("lime_gl_get_vertex_attribiiv",ea,f5,dd,5c),
HX_("lime_gl_get_vertex_attribiui",51,00,de,5c),
HX_("lime_gl_get_vertex_attribiuiv",05,47,62,e5),
HX_("lime_gl_get_vertex_attrib_pointerv",cc,80,45,bc),
HX_("lime_gl_hint",b7,26,75,cc),
HX_("lime_gl_invalidate_framebuffer",19,9e,02,01),
HX_("lime_gl_invalidate_sub_framebuffer",9a,3b,16,21),
HX_("lime_gl_is_buffer",c5,ec,c6,b4),
HX_("lime_gl_is_enabled",1c,a1,e8,45),
HX_("lime_gl_is_framebuffer",08,9b,19,ab),
HX_("lime_gl_is_program",1f,e7,b0,bb),
HX_("lime_gl_is_query",e3,3a,72,b0),
HX_("lime_gl_is_renderbuffer",5b,1e,da,91),
HX_("lime_gl_is_sampler",a3,61,81,4b),
HX_("lime_gl_is_shader",ea,ee,52,01),
HX_("lime_gl_is_sync",e0,fe,93,c7),
HX_("lime_gl_is_texture",76,65,98,66),
HX_("lime_gl_is_transform_feedback",3d,a0,bc,42),
HX_("lime_gl_is_vertex_array",c3,04,7b,13),
HX_("lime_gl_line_width",6b,71,5f,53),
HX_("lime_gl_link_program",2f,df,cf,33),
HX_("lime_gl_map_buffer_range",f1,71,1b,50),
HX_("lime_gl_object_deregister",74,d8,a1,d6),
HX_("lime_gl_object_from_id",40,ff,06,4e),
HX_("lime_gl_object_register",f3,13,aa,16),
HX_("lime_gl_pause_transform_feedback",11,9d,6a,c1),
HX_("lime_gl_pixel_storei",71,b2,56,3d),
HX_("lime_gl_polygon_offset",28,8f,6c,e3),
HX_("lime_gl_program_binary",cc,e0,e1,77),
HX_("lime_gl_program_parameteri",eb,a4,8e,4e),
HX_("lime_gl_read_buffer",d9,d6,53,39),
HX_("lime_gl_read_pixels",06,09,69,f5),
HX_("lime_gl_release_shader_compiler",51,e6,f6,c0),
HX_("lime_gl_renderbuffer_storage",c2,94,f1,7b),
HX_("lime_gl_renderbuffer_storage_multisample",26,e9,f0,80),
HX_("lime_gl_resume_transform_feedback",5a,c0,f6,d5),
HX_("lime_gl_sample_coverage",ad,98,c5,86),
HX_("lime_gl_sampler_parameterf",e4,f0,b0,51),
HX_("lime_gl_sampler_parameteri",e7,f0,b0,51),
HX_("lime_gl_scissor",ec,1c,b2,c3),
HX_("lime_gl_shader_binary",eb,dd,bc,3a),
HX_("lime_gl_shader_source",c5,d2,e2,7f),
HX_("lime_gl_stencil_func",d7,b0,4f,64),
HX_("lime_gl_stencil_func_separate",0b,13,77,19),
HX_("lime_gl_stencil_mask",7f,06,e1,68),
HX_("lime_gl_stencil_mask_separate",63,c8,71,65),
HX_("lime_gl_stencil_op",f4,8b,0c,a5),
HX_("lime_gl_stencil_op_separate",4e,6c,36,5e),
HX_("lime_gl_tex_image_2d",5e,ab,7a,34),
HX_("lime_gl_tex_image_3d",3d,ac,7a,34),
HX_("lime_gl_tex_parameterf",65,7e,77,4d),
HX_("lime_gl_tex_parameteri",68,7e,77,4d),
HX_("lime_gl_tex_storage_2d",7e,19,2d,9e),
HX_("lime_gl_tex_storage_3d",5d,1a,2d,9e),
HX_("lime_gl_tex_sub_image_2d",3d,4d,7e,52),
HX_("lime_gl_tex_sub_image_3d",1c,4e,7e,52),
HX_("lime_gl_transform_feedback_varyings",3a,9e,18,15),
HX_("lime_gl_uniform1f",19,ea,eb,46),
HX_("lime_gl_uniform1fv",3d,ec,80,c7),
HX_("lime_gl_uniform1i",1c,ea,eb,46),
HX_("lime_gl_uniform1iv",da,ee,80,c7),
HX_("lime_gl_uniform1ui",41,f9,80,c7),
HX_("lime_gl_uniform1uiv",15,20,59,c9),
HX_("lime_gl_uniform2f",f8,ea,eb,46),
HX_("lime_gl_uniform2fv",7e,ae,81,c7),
HX_("lime_gl_uniform2i",fb,ea,eb,46),
HX_("lime_gl_uniform2iv",1b,b1,81,c7),
HX_("lime_gl_uniform2ui",82,bb,81,c7),
HX_("lime_gl_uniform2uiv",b4,56,02,ca),
HX_("lime_gl_uniform3f",d7,eb,eb,46),
HX_("lime_gl_uniform3fv",bf,70,82,c7),
HX_("lime_gl_uniform3i",da,eb,eb,46),
HX_("lime_gl_uniform3iv",5c,73,82,c7),
HX_("lime_gl_uniform3ui",c3,7d,82,c7),
HX_("lime_gl_uniform3uiv",53,8d,ab,ca),
HX_("lime_gl_uniform4f",b6,ec,eb,46),
HX_("lime_gl_uniform4fv",00,33,83,c7),
HX_("lime_gl_uniform4i",b9,ec,eb,46),
HX_("lime_gl_uniform4iv",9d,35,83,c7),
HX_("lime_gl_uniform4ui",04,40,83,c7),
HX_("lime_gl_uniform4uiv",f2,c3,54,cb),
HX_("lime_gl_uniform_block_binding",58,14,de,ff),
HX_("lime_gl_uniform_matrix2fv",26,91,85,1c),
HX_("lime_gl_uniform_matrix2x3fv",21,00,9c,81),
HX_("lime_gl_uniform_matrix2x4fv",62,c2,9c,81),
HX_("lime_gl_uniform_matrix3fv",67,53,86,1c),
HX_("lime_gl_uniform_matrix3x2fv",61,d2,01,15),
HX_("lime_gl_uniform_matrix3x4fv",e3,56,03,15),
HX_("lime_gl_uniform_matrix4fv",a8,15,87,1c),
HX_("lime_gl_uniform_matrix4x2fv",e2,66,68,a8),
HX_("lime_gl_uniform_matrix4x3fv",23,29,69,a8),
HX_("lime_gl_unmap_buffer",4c,58,96,21),
HX_("lime_gl_use_program",1c,8c,b8,22),
HX_("lime_gl_validate_program",cb,eb,10,5b),
HX_("lime_gl_vertex_attrib1f",2a,cd,b2,7a),
HX_("lime_gl_vertex_attrib1fv",0c,b8,c0,e1),
HX_("lime_gl_vertex_attrib2f",09,ce,b2,7a),
HX_("lime_gl_vertex_attrib2fv",4d,7a,c1,e1),
HX_("lime_gl_vertex_attrib3f",e8,ce,b2,7a),
HX_("lime_gl_vertex_attrib3fv",8e,3c,c2,e1),
HX_("lime_gl_vertex_attrib4f",c7,cf,b2,7a),
HX_("lime_gl_vertex_attrib4fv",cf,fe,c2,e1),
HX_("lime_gl_vertex_attribi4i",a9,0a,eb,e1),
HX_("lime_gl_vertex_attribi4iv",ad,49,be,cb),
HX_("lime_gl_vertex_attribi4ui",14,54,be,cb),
HX_("lime_gl_vertex_attribi4uiv",e2,3d,cb,7a),
HX_("lime_gl_vertex_attrib_divisor",b4,fe,35,35),
HX_("lime_gl_vertex_attrib_ipointer",5e,81,51,cb),
HX_("lime_gl_vertex_attrib_pointer",13,fa,74,15),
HX_("lime_gl_viewport",96,8d,70,cf),
HX_("lime_gl_wait_sync",75,3c,87,68),
HX_("lime_hb_blob_create",03,5a,e8,38),
HX_("lime_hb_blob_create_sub_blob",b8,04,ce,f6),
HX_("lime_hb_blob_get_data",7a,14,5f,1d),
HX_("lime_hb_blob_get_data_writable",05,0d,90,9c),
HX_("lime_hb_blob_get_empty",3d,02,25,31),
HX_("lime_hb_blob_get_length",36,87,2b,ff),
HX_("lime_hb_blob_is_immutable",b4,3a,7f,8f),
HX_("lime_hb_blob_make_immutable",78,a5,06,a7),
HX_("lime_hb_buffer_add",9d,96,94,46),
HX_("lime_hb_buffer_add_codepoints",b2,94,6a,b3),
HX_("lime_hb_buffer_add_utf8",53,c1,d2,af),
HX_("lime_hb_buffer_add_utf16",6a,61,96,28),
HX_("lime_hb_buffer_add_utf32",24,63,96,28),
HX_("lime_hb_buffer_allocation_successful",d5,f0,c9,3f),
HX_("lime_hb_buffer_clear_contents",50,66,d5,37),
HX_("lime_hb_buffer_create",00,b8,f9,78),
HX_("lime_hb_buffer_get_cluster_level",12,90,e4,6c),
HX_("lime_hb_buffer_get_content_type",4d,1d,ed,c0),
HX_("lime_hb_buffer_get_direction",92,cd,df,80),
HX_("lime_hb_buffer_get_empty",60,c0,c6,b1),
HX_("lime_hb_buffer_get_flags",1a,b1,78,44),
HX_("lime_hb_buffer_get_glyph_infos",45,1c,99,b9),
HX_("lime_hb_buffer_get_glyph_positions",aa,e7,5e,7a),
HX_("lime_hb_buffer_get_language",65,20,7e,a8),
HX_("lime_hb_buffer_get_length",b3,27,10,0c),
HX_("lime_hb_buffer_get_replacement_codepoint",e9,29,d2,8e),
HX_("lime_hb_buffer_get_script",d8,e0,68,b4),
HX_("lime_hb_buffer_get_segment_properties",8c,12,c8,c1),
HX_("lime_hb_buffer_guess_segment_properties",eb,a9,b5,02),
HX_("lime_hb_buffer_normalize_glyphs",fd,cc,6f,57),
HX_("lime_hb_buffer_preallocate",5c,0e,1f,41),
HX_("lime_hb_buffer_reset",4b,05,62,50),
HX_("lime_hb_buffer_reverse",9e,cb,18,6b),
HX_("lime_hb_buffer_reverse_clusters",3a,b8,e1,69),
HX_("lime_hb_buffer_serialize_format_from_string",41,b0,64,0e),
HX_("lime_hb_buffer_serialize_format_to_string",90,7f,d4,ee),
HX_("lime_hb_buffer_serialize_list_formats",3e,67,15,57),
HX_("lime_hb_buffer_set_cluster_level",1e,68,52,90),
HX_("lime_hb_buffer_set_content_type",c1,0a,2f,17),
HX_("lime_hb_buffer_set_direction",9e,af,e5,c5),
HX_("lime_hb_buffer_set_flags",26,9d,c9,27),
HX_("lime_hb_buffer_set_language",d9,43,77,bd),
HX_("lime_hb_buffer_set_length",27,c6,8d,0f),
HX_("lime_hb_buffer_set_replacement_codepoint",f5,ed,28,fb),
HX_("lime_hb_buffer_set_script",4c,7f,e6,b7),
HX_("lime_hb_buffer_set_segment_properties",00,8f,73,f5),
HX_("lime_hb_face_create",c3,4a,75,c1),
HX_("lime_hb_face_get_empty",7d,09,37,aa),
HX_("lime_hb_face_get_glyph_count",ac,b5,21,87),
HX_("lime_hb_face_get_index",02,6a,71,f8),
HX_("lime_hb_face_get_upem",93,aa,e1,a2),
HX_("lime_hb_face_is_immutable",74,3b,79,58),
HX_("lime_hb_face_make_immutable",38,56,12,23),
HX_("lime_hb_face_reference_blob",58,b4,67,d5),
HX_("lime_hb_face_reference_table",b3,5c,3d,3b),
HX_("lime_hb_face_set_glyph_count",b8,32,ed,82),
HX_("lime_hb_face_set_index",0e,56,c2,db),
HX_("lime_hb_face_set_upem",07,04,3f,51),
HX_("lime_hb_feature_from_string",22,86,04,60),
HX_("lime_hb_feature_to_string",31,6b,a9,70),
HX_("lime_hb_font_add_glyph_origin_for_direction",16,f4,0e,0c),
HX_("lime_hb_font_create",d1,0b,dc,af),
HX_("lime_hb_font_create_sub_font",9c,c9,ef,c4),
HX_("lime_hb_font_get_empty",2f,e5,ff,da),
HX_("lime_hb_font_get_face",3b,b4,4f,ff),
HX_("lime_hb_font_get_glyph_advance_for_direction",9b,ae,b3,f7),
HX_("lime_hb_font_get_glyph_kerning_for_direction",65,0e,ef,53),
HX_("lime_hb_font_get_glyph_origin_for_direction",c1,85,39,23),
HX_("lime_hb_font_get_parent",48,a8,4d,43),
HX_("lime_hb_font_get_ppem",06,3a,f7,05),
HX_("lime_hb_font_get_scale",2c,79,f4,e3),
HX_("lime_hb_font_glyph_from_string",3e,05,35,b4),
HX_("lime_hb_font_glyph_to_string",4d,ab,74,0b),
HX_("lime_hb_font_is_immutable",02,3b,13,0c),
HX_("lime_hb_font_make_immutable",46,d5,d5,70),
HX_("lime_hb_font_set_ppem",7a,93,54,b4),
HX_("lime_hb_font_set_scale",38,65,45,c7),
HX_("lime_hb_font_subtract_glyph_origin_for_direction",39,ae,0b,45),
HX_("lime_hb_ft_font_create",f6,42,a2,1b),
HX_("lime_hb_ft_font_create_referenced",22,ec,ff,8f),
HX_("lime_hb_ft_font_get_load_flags",71,1b,26,fb),
HX_("lime_hb_ft_font_set_load_flags",e5,03,46,1b),
HX_("lime_hb_language_from_string",da,f2,80,39),
HX_("lime_hb_language_get_default",6c,b5,a8,10),
HX_("lime_hb_language_to_string",e9,b9,2a,6c),
HX_("lime_hb_segment_properties_equal",2f,b4,9f,75),
HX_("lime_hb_segment_properties_hash",b3,b3,9e,c5),
HX_("lime_hb_set_add",69,9e,67,5b),
HX_("lime_hb_set_add_range",27,c0,46,90),
HX_("lime_hb_set_allocation_successful",a1,db,56,67),
HX_("lime_hb_set_clear",d5,bf,72,e7),
HX_("lime_hb_set_create",b4,97,5c,11),
HX_("lime_hb_set_del",13,e6,69,5b),
HX_("lime_hb_set_del_range",51,23,f9,8e),
HX_("lime_hb_set_get_empty",2c,a9,33,e0),
HX_("lime_hb_set_get_max",83,43,05,35),
HX_("lime_hb_set_get_min",71,4a,05,35),
HX_("lime_hb_set_get_population",8e,68,7e,75),
HX_("lime_hb_set_has",a2,eb,6c,5b),
HX_("lime_hb_set_intersect",27,13,25,6f),
HX_("lime_hb_set_invert",ce,17,26,35),
HX_("lime_hb_set_is_empty",f0,77,1b,f7),
HX_("lime_hb_set_is_equal",17,0d,c4,f9),
HX_("lime_hb_set_next",ab,97,db,a7),
HX_("lime_hb_set_next_range",e9,16,04,4e),
HX_("lime_hb_set_set",ea,47,75,5b),
HX_("lime_hb_set_subtract",cc,43,96,5f),
HX_("lime_hb_set_symmetric_difference",bd,ac,e7,88),
HX_("lime_hb_set_union",57,b3,fe,45),
HX_("lime_hb_shape",86,d2,1d,08),
HX_("lime_vorbis_file_bitrate",6c,c8,60,d8),
HX_("lime_vorbis_file_bitrate_instant",ce,44,94,97),
HX_("lime_vorbis_file_clear",0c,e6,c6,1a),
HX_("lime_vorbis_file_comment",9e,4c,01,5d),
HX_("lime_vorbis_file_crosslap",bc,bd,3f,cb),
HX_("lime_vorbis_file_from_bytes",b7,bf,11,7f),
HX_("lime_vorbis_file_from_file",b0,84,41,97),
HX_("lime_vorbis_file_info",cf,18,14,61),
HX_("lime_vorbis_file_pcm_seek",de,f4,4d,f2),
HX_("lime_vorbis_file_pcm_seek_lap",3a,49,6a,74),
HX_("lime_vorbis_file_pcm_seek_page",90,9c,3a,6b),
HX_("lime_vorbis_file_pcm_seek_page_lap",ec,b1,89,3b),
HX_("lime_vorbis_file_raw_seek",50,87,19,11),
HX_("lime_vorbis_file_raw_seek_lap",ac,fc,14,79),
HX_("lime_vorbis_file_pcm_tell",97,31,f7,f2),
HX_("lime_vorbis_file_pcm_total",9e,5d,f6,ab),
HX_("lime_vorbis_file_raw_tell",09,c4,c2,11),
HX_("lime_vorbis_file_raw_total",ec,ee,4a,7f),
HX_("lime_vorbis_file_read",b7,2b,00,67),
HX_("lime_vorbis_file_read_float",d4,5b,48,7a),
HX_("lime_vorbis_file_seekable",f3,33,1c,9b),
HX_("lime_vorbis_file_serial_number",73,a0,0a,65),
HX_("lime_vorbis_file_streams",32,ae,d5,d1),
HX_("lime_vorbis_file_time_seek",29,26,3e,a0),
HX_("lime_vorbis_file_time_seek_lap",05,7c,d4,ab),
HX_("lime_vorbis_file_time_seek_page",65,db,bc,b0),
HX_("lime_vorbis_file_time_seek_page_lap",41,7f,5c,e6),
HX_("lime_vorbis_file_time_tell",e2,62,e7,a0),
HX_("lime_vorbis_file_time_total",f3,4d,31,30),
::String(null())
};
void NativeCFFI_obj::__register()
{
NativeCFFI_obj _hx_dummy;
NativeCFFI_obj::_hx_vtable = *(void **)&_hx_dummy;
::hx::Static(__mClass) = new ::hx::Class_obj();
__mClass->mName = HX_("lime._internal.backend.native.NativeCFFI",4f,a0,00,16);
__mClass->mSuper = &super::__SGetClass();
__mClass->mConstructEmpty = &__CreateEmpty;
__mClass->mConstructArgs = &__Create;
__mClass->mGetStaticField = &NativeCFFI_obj::__GetStatic;
__mClass->mSetStaticField = &NativeCFFI_obj::__SetStatic;
__mClass->mMarkFunc = NativeCFFI_obj_sMarkStatics;
__mClass->mStatics = ::hx::Class_obj::dupFunctions(NativeCFFI_obj_sStaticFields);
__mClass->mMembers = ::hx::Class_obj::dupFunctions(0 /* sMemberFields */);
__mClass->mCanCast = ::hx::TCanCast< NativeCFFI_obj >;
#ifdef HXCPP_VISIT_ALLOCS
__mClass->mVisitFunc = NativeCFFI_obj_sVisitStatics;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mMemberStorageInfo = NativeCFFI_obj_sMemberStorageInfo;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mStaticStorageInfo = NativeCFFI_obj_sStaticStorageInfo;
#endif
::hx::_hx_RegisterClass(__mClass->mName, __mClass);
}
void NativeCFFI_obj::__boot()
{
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_354_boot)
HXDLIN( 354) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_create",75,25,1a,bb),HX_("o",6f,00,00,00),false);
HXDLIN( 354) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_354_boot)
HXDLIN( 354) lime_application_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_355_boot)
HXDLIN( 355) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_event_manager_register",33,3f,87,01),HX_("oov",56,9b,54,00),false);
HXDLIN( 355) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_355_boot)
HXDLIN( 355) lime_application_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_357_boot)
HXDLIN( 357) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_exec",ca,f1,81,e2),HX_("oi",1a,61,00,00),false);
HXDLIN( 357) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_357_boot)
HXDLIN( 357) lime_application_exec = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_358_boot)
HXDLIN( 358) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_init",49,39,1f,e5),HX_("ov",27,61,00,00),false);
HXDLIN( 358) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_358_boot)
HXDLIN( 358) lime_application_init = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_359_boot)
HXDLIN( 359) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_quit",08,3e,6e,ea),HX_("oi",1a,61,00,00),false);
HXDLIN( 359) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_359_boot)
HXDLIN( 359) lime_application_quit = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_360_boot)
HXDLIN( 360) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_set_frame_rate",a8,03,d7,1d),HX_("odv",c1,91,54,00),false);
HXDLIN( 360) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_360_boot)
HXDLIN( 360) lime_application_set_frame_rate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_362_boot)
HXDLIN( 362) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_application_update",82,44,10,c6),HX_("ob",13,61,00,00),false);
HXDLIN( 362) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_362_boot)
HXDLIN( 362) lime_application_update = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_363_boot)
HXDLIN( 363) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_audio_load",99,89,38,30),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 363) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_363_boot)
HXDLIN( 363) lime_audio_load = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_364_boot)
HXDLIN( 364) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_audio_load_bytes",05,92,98,ba),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 364) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_364_boot)
HXDLIN( 364) lime_audio_load_bytes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_366_boot)
HXDLIN( 366) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_audio_load_file",22,f6,9d,0c),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 366) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_366_boot)
HXDLIN( 366) lime_audio_load_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_368_boot)
HXDLIN( 368) ::cpp::Function< ::hx::Object * (Float,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_bytes_from_data_pointer",1f,3b,02,90),HX_("dioo",e5,63,69,42),false);
HXDLIN( 368) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_368_boot)
HXDLIN( 368) lime_bytes_from_data_pointer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_370_boot)
HXDLIN( 370) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_bytes_get_data_pointer",af,ff,82,7b),HX_("od",15,61,00,00),false);
HXDLIN( 370) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_370_boot)
HXDLIN( 370) lime_bytes_get_data_pointer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_372_boot)
HXDLIN( 372) ::cpp::Function< Float ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_bytes_get_data_pointer_offset",63,8d,9d,00),HX_("oid",0a,96,54,00),false);
HXDLIN( 372) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_372_boot)
HXDLIN( 372) lime_bytes_get_data_pointer_offset = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_374_boot)
HXDLIN( 374) ::cpp::Function< ::hx::Object * (::String, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_bytes_read_file",c7,b2,82,ba),HX_("soo",53,a4,57,00),false);
HXDLIN( 374) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_374_boot)
HXDLIN( 374) lime_bytes_read_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_376_boot)
HXDLIN( 376) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cffi_get_native_pointer",6d,f2,d7,07),HX_("od",15,61,00,00),false);
HXDLIN( 376) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_376_boot)
HXDLIN( 376) lime_cffi_get_native_pointer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_378_boot)
HXDLIN( 378) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_clipboard_event_manager_register",ed,56,db,9a),HX_("oov",56,9b,54,00),false);
HXDLIN( 378) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_378_boot)
HXDLIN( 378) lime_clipboard_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_380_boot)
HXDLIN( 380) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_clipboard_get_text",29,fd,31,04),HX_("o",6f,00,00,00),false);
HXDLIN( 380) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_380_boot)
HXDLIN( 380) lime_clipboard_get_text = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_381_boot)
HXDLIN( 381) ::cpp::Function< void (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_clipboard_set_text",9d,56,8f,b2),HX_("sv",a3,64,00,00),false);
HXDLIN( 381) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_381_boot)
HXDLIN( 381) lime_clipboard_set_text = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_382_boot)
HXDLIN( 382) ::cpp::Function< Float (Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_data_pointer_offset",60,b2,70,59),HX_("did",3f,3d,4c,00),false);
HXDLIN( 382) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_382_boot)
HXDLIN( 382) lime_data_pointer_offset = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_384_boot)
HXDLIN( 384) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_deflate_compress",e0,7d,72,7f),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 384) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_384_boot)
HXDLIN( 384) lime_deflate_compress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_386_boot)
HXDLIN( 386) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_deflate_decompress",e1,49,b0,91),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 386) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_386_boot)
HXDLIN( 386) lime_deflate_decompress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_388_boot)
HXDLIN( 388) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_drop_event_manager_register",a0,48,49,3f),HX_("oov",56,9b,54,00),false);
HXDLIN( 388) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_388_boot)
HXDLIN( 388) lime_drop_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String,::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_390_boot)
HXDLIN( 390) ::cpp::Function< ::hx::Object * (::String,::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_dialog_open_directory",36,64,09,e2),HX_("ssso",3c,31,5b,4c),false);
HXDLIN( 390) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_390_boot)
HXDLIN( 390) lime_file_dialog_open_directory = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String,::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_392_boot)
HXDLIN( 392) ::cpp::Function< ::hx::Object * (::String,::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_dialog_open_file",53,b1,fe,c0),HX_("ssso",3c,31,5b,4c),false);
HXDLIN( 392) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_392_boot)
HXDLIN( 392) lime_file_dialog_open_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String,::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_394_boot)
HXDLIN( 394) ::cpp::Function< ::hx::Object * (::String,::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_dialog_open_files",c0,77,dc,1d),HX_("ssso",3c,31,5b,4c),false);
HXDLIN( 394) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_394_boot)
HXDLIN( 394) lime_file_dialog_open_files = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String,::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_396_boot)
HXDLIN( 396) ::cpp::Function< ::hx::Object * (::String,::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_dialog_save_file",00,49,86,dc),HX_("ssso",3c,31,5b,4c),false);
HXDLIN( 396) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_396_boot)
HXDLIN( 396) lime_file_dialog_save_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_398_boot)
HXDLIN( 398) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_watcher_create",d8,1b,00,e0),HX_("oo",20,61,00,00),false);
HXDLIN( 398) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_398_boot)
HXDLIN( 398) lime_file_watcher_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_400_boot)
HXDLIN( 400) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_watcher_add_directory",33,92,27,79),HX_("oobo",ed,3e,b3,49),false);
HXDLIN( 400) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_400_boot)
HXDLIN( 400) lime_file_watcher_add_directory = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_402_boot)
HXDLIN( 402) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_watcher_remove_directory",4e,67,5d,01),HX_("oov",56,9b,54,00),false);
HXDLIN( 402) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_402_boot)
HXDLIN( 402) lime_file_watcher_remove_directory = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_404_boot)
HXDLIN( 404) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_file_watcher_update",e5,3a,f6,ea),HX_("ov",27,61,00,00),false);
HXDLIN( 404) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_404_boot)
HXDLIN( 404) lime_file_watcher_update = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_406_boot)
HXDLIN( 406) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_ascender",06,f1,b5,57),HX_("oi",1a,61,00,00),false);
HXDLIN( 406) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_406_boot)
HXDLIN( 406) lime_font_get_ascender = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_407_boot)
HXDLIN( 407) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_descender",68,c1,2f,64),HX_("oi",1a,61,00,00),false);
HXDLIN( 407) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_407_boot)
HXDLIN( 407) lime_font_get_descender = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_408_boot)
HXDLIN( 408) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_family_name",97,ce,b2,b4),HX_("oo",20,61,00,00),false);
HXDLIN( 408) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_408_boot)
HXDLIN( 408) lime_font_get_family_name = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_410_boot)
HXDLIN( 410) ::cpp::Function< int ( ::hx::Object *,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_glyph_index",90,3b,dd,a2),HX_("osi",c5,9e,54,00),false);
HXDLIN( 410) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_410_boot)
HXDLIN( 410) lime_font_get_glyph_index = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_412_boot)
HXDLIN( 412) ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_glyph_indices",25,83,e4,03),HX_("oso",cb,9e,54,00),false);
HXDLIN( 412) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_412_boot)
HXDLIN( 412) lime_font_get_glyph_indices = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_414_boot)
HXDLIN( 414) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_glyph_metrics",41,de,64,4d),HX_("oio",15,96,54,00),false);
HXDLIN( 414) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_414_boot)
HXDLIN( 414) lime_font_get_glyph_metrics = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_416_boot)
HXDLIN( 416) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_height",f6,3e,aa,fc),HX_("oi",1a,61,00,00),false);
HXDLIN( 416) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_416_boot)
HXDLIN( 416) lime_font_get_height = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_417_boot)
HXDLIN( 417) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_num_glyphs",ef,8b,e7,ad),HX_("oi",1a,61,00,00),false);
HXDLIN( 417) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_417_boot)
HXDLIN( 417) lime_font_get_num_glyphs = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_418_boot)
HXDLIN( 418) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_underline_position",0b,93,8e,28),HX_("oi",1a,61,00,00),false);
HXDLIN( 418) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_418_boot)
HXDLIN( 418) lime_font_get_underline_position = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_420_boot)
HXDLIN( 420) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_underline_thickness",d2,14,47,de),HX_("oi",1a,61,00,00),false);
HXDLIN( 420) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_420_boot)
HXDLIN( 420) lime_font_get_underline_thickness = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_422_boot)
HXDLIN( 422) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_get_units_per_em",29,72,55,dc),HX_("oi",1a,61,00,00),false);
HXDLIN( 422) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_422_boot)
HXDLIN( 422) lime_font_get_units_per_em = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_423_boot)
HXDLIN( 423) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_load",ec,08,6e,02),HX_("oo",20,61,00,00),false);
HXDLIN( 423) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_423_boot)
HXDLIN( 423) lime_font_load = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_424_boot)
HXDLIN( 424) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_load_bytes",98,d1,ec,43),HX_("oo",20,61,00,00),false);
HXDLIN( 424) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_424_boot)
HXDLIN( 424) lime_font_load_bytes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_425_boot)
HXDLIN( 425) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_load_file",ef,09,bb,9c),HX_("oo",20,61,00,00),false);
HXDLIN( 425) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_425_boot)
HXDLIN( 425) lime_font_load_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_426_boot)
HXDLIN( 426) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_outline_decompose",ee,da,88,55),HX_("oio",15,96,54,00),false);
HXDLIN( 426) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_426_boot)
HXDLIN( 426) lime_font_outline_decompose = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_428_boot)
HXDLIN( 428) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_render_glyph",89,79,39,0f),HX_("oioo",ba,bc,ae,49),false);
HXDLIN( 428) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_428_boot)
HXDLIN( 428) lime_font_render_glyph = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_430_boot)
HXDLIN( 430) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_render_glyphs",ca,de,10,43),HX_("oooo",40,4a,b3,49),false);
HXDLIN( 430) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_430_boot)
HXDLIN( 430) lime_font_render_glyphs = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_432_boot)
HXDLIN( 432) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_font_set_size",84,ff,47,dd),HX_("oiv",1c,96,54,00),false);
HXDLIN( 432) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_432_boot)
HXDLIN( 432) lime_font_set_size = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_433_boot)
HXDLIN( 433) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gamepad_add_mappings",0b,39,a9,d8),HX_("ov",27,61,00,00),false);
HXDLIN( 433) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_433_boot)
HXDLIN( 433) lime_gamepad_add_mappings = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_435_boot)
HXDLIN( 435) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gamepad_get_device_guid",61,03,1f,2d),HX_("io",e6,5b,00,00),false);
HXDLIN( 435) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_435_boot)
HXDLIN( 435) lime_gamepad_get_device_guid = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_437_boot)
HXDLIN( 437) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gamepad_get_device_name",23,58,b0,31),HX_("io",e6,5b,00,00),false);
HXDLIN( 437) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_437_boot)
HXDLIN( 437) lime_gamepad_get_device_name = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_439_boot)
HXDLIN( 439) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gamepad_event_manager_register",02,b7,1e,51),HX_("oov",56,9b,54,00),false);
HXDLIN( 439) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_439_boot)
HXDLIN( 439) lime_gamepad_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_441_boot)
HXDLIN( 441) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gzip_compress",fd,cc,13,7a),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 441) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_441_boot)
HXDLIN( 441) lime_gzip_compress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_443_boot)
HXDLIN( 443) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gzip_decompress",3e,5a,99,72),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 443) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_443_boot)
HXDLIN( 443) lime_gzip_decompress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_445_boot)
HXDLIN( 445) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_haptic_vibrate",31,58,7a,85),HX_("iiv",96,08,50,00),false);
HXDLIN( 445) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_445_boot)
HXDLIN( 445) lime_haptic_vibrate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_446_boot)
HXDLIN( 446) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_encode",64,48,63,9c),HX_("oiioo",ef,d8,31,2f),false);
HXDLIN( 446) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_446_boot)
HXDLIN( 446) lime_image_encode = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_448_boot)
HXDLIN( 448) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_load",f4,20,ad,9c),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 448) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_448_boot)
HXDLIN( 448) lime_image_load = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_449_boot)
HXDLIN( 449) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_load_bytes",a0,9f,39,e7),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 449) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_449_boot)
HXDLIN( 449) lime_image_load_bytes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_451_boot)
HXDLIN( 451) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_load_file",e7,d4,9f,41),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 451) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_451_boot)
HXDLIN( 451) lime_image_load_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_453_boot)
HXDLIN( 453) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_color_transform",ba,cc,96,40),HX_("ooov",47,4a,b3,49),false);
HXDLIN( 453) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_453_boot)
HXDLIN( 453) lime_image_data_util_color_transform = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_455_boot)
HXDLIN( 455) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_copy_channel",4f,54,36,a5),HX_("ooooiiv",56,a6,94,9c),false);
HXDLIN( 455) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_455_boot)
HXDLIN( 455) lime_image_data_util_copy_channel = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_457_boot)
HXDLIN( 457) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_copy_pixels",21,51,7b,ab),HX_("oooooobv",34,a9,78,69),false);
HXDLIN( 457) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_457_boot)
HXDLIN( 457) lime_image_data_util_copy_pixels = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_459_boot)
HXDLIN( 459) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_fill_rect",8a,8c,a4,8e),HX_("ooiiv",76,1b,29,33),false);
HXDLIN( 459) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_459_boot)
HXDLIN( 459) lime_image_data_util_fill_rect = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_461_boot)
HXDLIN( 461) ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_flood_fill",ba,e7,5b,f2),HX_("oiiiiv",e7,65,67,1c),false);
HXDLIN( 461) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_461_boot)
HXDLIN( 461) lime_image_data_util_flood_fill = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_463_boot)
HXDLIN( 463) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_get_pixels",cc,3e,de,0c),HX_("ooiov",b0,20,29,33),false);
HXDLIN( 463) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_463_boot)
HXDLIN( 463) lime_image_data_util_get_pixels = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_465_boot)
HXDLIN( 465) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_merge",a2,d2,b1,f7),HX_("ooooiiiiv",76,e6,c1,67),false);
HXDLIN( 465) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_465_boot)
HXDLIN( 465) lime_image_data_util_merge = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_467_boot)
HXDLIN( 467) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_multiply_alpha",99,86,ad,5d),HX_("ov",27,61,00,00),false);
HXDLIN( 467) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_467_boot)
HXDLIN( 467) lime_image_data_util_multiply_alpha = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_469_boot)
HXDLIN( 469) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_resize",ca,16,5a,c4),HX_("ooiiv",76,1b,29,33),false);
HXDLIN( 469) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_469_boot)
HXDLIN( 469) lime_image_data_util_resize = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_471_boot)
HXDLIN( 471) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_set_format",4a,7d,40,81),HX_("oiv",1c,96,54,00),false);
HXDLIN( 471) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_471_boot)
HXDLIN( 471) lime_image_data_util_set_format = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_473_boot)
HXDLIN( 473) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_set_pixels",40,dd,5b,10),HX_("oooiiiv",9c,5e,9d,98),false);
HXDLIN( 473) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_473_boot)
HXDLIN( 473) lime_image_data_util_set_pixels = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int,int,int,int,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_475_boot)
HXDLIN( 475) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *, ::hx::Object *,int,int,int,int,int,int,int,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_threshold",95,30,16,89),HX_("ooooiiiiiiibi",90,38,77,c0),false);
HXDLIN( 475) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_475_boot)
HXDLIN( 475) lime_image_data_util_threshold = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_477_boot)
HXDLIN( 477) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_image_data_util_unmultiply_alpha",32,d8,15,90),HX_("ov",27,61,00,00),false);
HXDLIN( 477) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_477_boot)
HXDLIN( 477) lime_image_data_util_unmultiply_alpha = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_479_boot)
HXDLIN( 479) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_get_device_guid",90,59,1a,42),HX_("io",e6,5b,00,00),false);
HXDLIN( 479) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_479_boot)
HXDLIN( 479) lime_joystick_get_device_guid = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_481_boot)
HXDLIN( 481) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_get_device_name",52,ae,ab,46),HX_("io",e6,5b,00,00),false);
HXDLIN( 481) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_481_boot)
HXDLIN( 481) lime_joystick_get_device_name = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_483_boot)
HXDLIN( 483) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_get_num_axes",c0,e1,d4,a9),HX_("ii",e0,5b,00,00),false);
HXDLIN( 483) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_483_boot)
HXDLIN( 483) lime_joystick_get_num_axes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_484_boot)
HXDLIN( 484) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_get_num_buttons",86,9c,1a,05),HX_("ii",e0,5b,00,00),false);
HXDLIN( 484) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_484_boot)
HXDLIN( 484) lime_joystick_get_num_buttons = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_485_boot)
HXDLIN( 485) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_get_num_hats",53,f9,63,ae),HX_("ii",e0,5b,00,00),false);
HXDLIN( 485) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_485_boot)
HXDLIN( 485) lime_joystick_get_num_hats = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_486_boot)
HXDLIN( 486) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_get_num_trackballs",04,66,ee,99),HX_("ii",e0,5b,00,00),false);
HXDLIN( 486) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_486_boot)
HXDLIN( 486) lime_joystick_get_num_trackballs = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_488_boot)
HXDLIN( 488) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_joystick_event_manager_register",b3,14,1d,14),HX_("oov",56,9b,54,00),false);
HXDLIN( 488) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_488_boot)
HXDLIN( 488) lime_joystick_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_490_boot)
HXDLIN( 490) ::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_jpeg_decode_bytes",a7,ff,10,c9),HX_("oboo",f3,6c,a9,49),false);
HXDLIN( 490) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_490_boot)
HXDLIN( 490) lime_jpeg_decode_bytes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_492_boot)
HXDLIN( 492) ::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_jpeg_decode_file",c0,92,ae,0c),HX_("sboo",6f,47,4e,4c),false);
HXDLIN( 492) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_492_boot)
HXDLIN( 492) lime_jpeg_decode_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_494_boot)
HXDLIN( 494) ::cpp::Function< float (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_key_code_from_scan_code",e2,69,76,bc),HX_("ff",40,59,00,00),false);
HXDLIN( 494) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_494_boot)
HXDLIN( 494) lime_key_code_from_scan_code = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_496_boot)
HXDLIN( 496) ::cpp::Function< float (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_key_code_to_scan_code",33,c7,96,30),HX_("ff",40,59,00,00),false);
HXDLIN( 496) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_496_boot)
HXDLIN( 496) lime_key_code_to_scan_code = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_498_boot)
HXDLIN( 498) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_key_event_manager_register",c4,10,76,37),HX_("oov",56,9b,54,00),false);
HXDLIN( 498) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_498_boot)
HXDLIN( 498) lime_key_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_500_boot)
HXDLIN( 500) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_lzma_compress",75,e7,f2,95),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 500) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_500_boot)
HXDLIN( 500) lime_lzma_compress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_502_boot)
HXDLIN( 502) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_lzma_decompress",b6,02,4e,98),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 502) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_502_boot)
HXDLIN( 502) lime_lzma_decompress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_504_boot)
HXDLIN( 504) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_mouse_event_manager_register",7e,33,83,ea),HX_("oov",56,9b,54,00),false);
HXDLIN( 504) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_504_boot)
HXDLIN( 504) lime_mouse_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_506_boot)
HXDLIN( 506) ::cpp::Function< void (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_neko_execute",fb,62,24,05),HX_("sv",a3,64,00,00),false);
HXDLIN( 506) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_506_boot)
HXDLIN( 506) lime_neko_execute = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_507_boot)
HXDLIN( 507) ::cpp::Function< ::hx::Object * ( ::hx::Object *,bool, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_png_decode_bytes",9a,13,98,26),HX_("oboo",f3,6c,a9,49),false);
HXDLIN( 507) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_507_boot)
HXDLIN( 507) lime_png_decode_bytes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_509_boot)
HXDLIN( 509) ::cpp::Function< ::hx::Object * (::String,bool, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_png_decode_file",2d,7e,35,25),HX_("sboo",6f,47,4e,4c),false);
HXDLIN( 509) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_509_boot)
HXDLIN( 509) lime_png_decode_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_511_boot)
HXDLIN( 511) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_render_event_manager_register",d9,6b,ed,ee),HX_("oov",56,9b,54,00),false);
HXDLIN( 511) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_511_boot)
HXDLIN( 511) lime_render_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_513_boot)
HXDLIN( 513) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_sensor_event_manager_register",75,01,d7,10),HX_("oov",56,9b,54,00),false);
HXDLIN( 513) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_513_boot)
HXDLIN( 513) lime_sensor_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_515_boot)
HXDLIN( 515) ::cpp::Function< bool () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_allow_screen_timeout",73,89,73,7a),HX_("b",62,00,00,00),false);
HXDLIN( 515) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_515_boot)
HXDLIN( 515) lime_system_get_allow_screen_timeout = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_517_boot)
HXDLIN( 517) ::cpp::Function< bool (bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_set_allow_screen_timeout",e7,0a,4e,8d),HX_("bb",c0,55,00,00),false);
HXDLIN( 517) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_517_boot)
HXDLIN( 517) lime_system_set_allow_screen_timeout = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_519_boot)
HXDLIN( 519) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_device_model",af,7c,01,19),HX_("o",6f,00,00,00),false);
HXDLIN( 519) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_519_boot)
HXDLIN( 519) lime_system_get_device_model = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_521_boot)
HXDLIN( 521) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_device_vendor",c2,71,1b,a6),HX_("o",6f,00,00,00),false);
HXDLIN( 521) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_521_boot)
HXDLIN( 521) lime_system_get_device_vendor = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_523_boot)
HXDLIN( 523) ::cpp::Function< ::hx::Object * (int,::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_directory",5e,9e,04,7c),HX_("isso",06,0f,bf,45),false);
HXDLIN( 523) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_523_boot)
HXDLIN( 523) lime_system_get_directory = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_525_boot)
HXDLIN( 525) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_display",f3,47,82,d2),HX_("io",e6,5b,00,00),false);
HXDLIN( 525) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_525_boot)
HXDLIN( 525) lime_system_get_display = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_526_boot)
HXDLIN( 526) ::cpp::Function< bool () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_ios_tablet",07,23,ac,cd),HX_("b",62,00,00,00),false);
HXDLIN( 526) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_526_boot)
HXDLIN( 526) lime_system_get_ios_tablet = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_527_boot)
HXDLIN( 527) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_num_displays",f9,90,37,4f),HX_("i",69,00,00,00),false);
HXDLIN( 527) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_527_boot)
HXDLIN( 527) lime_system_get_num_displays = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_528_boot)
HXDLIN( 528) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_platform_label",97,fa,f9,96),HX_("o",6f,00,00,00),false);
HXDLIN( 528) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_528_boot)
HXDLIN( 528) lime_system_get_platform_label = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_530_boot)
HXDLIN( 530) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_platform_name",08,2b,96,25),HX_("o",6f,00,00,00),false);
HXDLIN( 530) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_530_boot)
HXDLIN( 530) lime_system_get_platform_name = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_532_boot)
HXDLIN( 532) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_platform_version",7b,82,4b,3e),HX_("o",6f,00,00,00),false);
HXDLIN( 532) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_532_boot)
HXDLIN( 532) lime_system_get_platform_version = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_534_boot)
HXDLIN( 534) ::cpp::Function< Float () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_get_timer",36,5f,72,67),HX_("d",64,00,00,00),false);
HXDLIN( 534) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_534_boot)
HXDLIN( 534) lime_system_get_timer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_535_boot)
HXDLIN( 535) ::cpp::Function< void (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_open_file",6b,2d,58,ea),HX_("sv",a3,64,00,00),false);
HXDLIN( 535) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_535_boot)
HXDLIN( 535) lime_system_open_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_536_boot)
HXDLIN( 536) ::cpp::Function< void (::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_system_open_url",60,3f,2e,b4),HX_("ssv",d6,a7,57,00),false);
HXDLIN( 536) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_536_boot)
HXDLIN( 536) lime_system_open_url = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_537_boot)
HXDLIN( 537) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_text_event_manager_register",e2,83,68,5d),HX_("oov",56,9b,54,00),false);
HXDLIN( 537) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_537_boot)
HXDLIN( 537) lime_text_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_539_boot)
HXDLIN( 539) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_touch_event_manager_register",24,25,f4,f5),HX_("oov",56,9b,54,00),false);
HXDLIN( 539) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_539_boot)
HXDLIN( 539) lime_touch_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,::String,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_541_boot)
HXDLIN( 541) ::cpp::Function< void ( ::hx::Object *,::String,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_alert",37,b9,e2,c1),HX_("ossv",c7,56,b6,49),false);
HXDLIN( 541) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_541_boot)
HXDLIN( 541) lime_window_alert = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_543_boot)
HXDLIN( 543) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_close",93,79,b7,e8),HX_("ov",27,61,00,00),false);
HXDLIN( 543) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_543_boot)
HXDLIN( 543) lime_window_close = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_544_boot)
HXDLIN( 544) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_context_flip",c2,15,98,c7),HX_("ov",27,61,00,00),false);
HXDLIN( 544) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_544_boot)
HXDLIN( 544) lime_window_context_flip = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_546_boot)
HXDLIN( 546) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_context_lock",00,9f,91,cb),HX_("oo",20,61,00,00),false);
HXDLIN( 546) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_546_boot)
HXDLIN( 546) lime_window_context_lock = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_548_boot)
HXDLIN( 548) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_context_make_current",bd,6d,a5,80),HX_("ov",27,61,00,00),false);
HXDLIN( 548) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_548_boot)
HXDLIN( 548) lime_window_context_make_current = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_550_boot)
HXDLIN( 550) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_context_unlock",19,55,3d,16),HX_("ov",27,61,00,00),false);
HXDLIN( 550) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_550_boot)
HXDLIN( 550) lime_window_context_unlock = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_552_boot)
HXDLIN( 552) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_create",c1,a4,90,25),HX_("oiiiso",96,6e,67,1c),false);
HXDLIN( 552) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_552_boot)
HXDLIN( 552) lime_window_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_554_boot)
HXDLIN( 554) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_focus",b3,c1,dd,a4),HX_("ov",27,61,00,00),false);
HXDLIN( 554) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_554_boot)
HXDLIN( 554) lime_window_focus = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_555_boot)
HXDLIN( 555) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_context",21,ae,a1,6b),HX_("od",15,61,00,00),false);
HXDLIN( 555) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_555_boot)
HXDLIN( 555) lime_window_get_context = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_556_boot)
HXDLIN( 556) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_context_type",d8,88,68,17),HX_("oo",20,61,00,00),false);
HXDLIN( 556) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_556_boot)
HXDLIN( 556) lime_window_get_context_type = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_558_boot)
HXDLIN( 558) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_display",74,42,74,0d),HX_("oi",1a,61,00,00),false);
HXDLIN( 558) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_558_boot)
HXDLIN( 558) lime_window_get_display = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_559_boot)
HXDLIN( 559) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_display_mode",4e,48,b4,98),HX_("oo",20,61,00,00),false);
HXDLIN( 559) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_559_boot)
HXDLIN( 559) lime_window_get_display_mode = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_561_boot)
HXDLIN( 561) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_height",f5,7b,27,d0),HX_("oi",1a,61,00,00),false);
HXDLIN( 561) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_561_boot)
HXDLIN( 561) lime_window_get_height = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_562_boot)
HXDLIN( 562) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_id",e9,30,b1,4c),HX_("oi",1a,61,00,00),false);
HXDLIN( 562) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_562_boot)
HXDLIN( 562) lime_window_get_id = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_563_boot)
HXDLIN( 563) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_mouse_lock",93,ce,a9,67),HX_("ob",13,61,00,00),false);
HXDLIN( 563) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_563_boot)
HXDLIN( 563) lime_window_get_mouse_lock = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_565_boot)
HXDLIN( 565) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_scale",3c,16,d2,0d),HX_("od",15,61,00,00),false);
HXDLIN( 565) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_565_boot)
HXDLIN( 565) lime_window_get_scale = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_566_boot)
HXDLIN( 566) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_text_input_enabled",c8,3e,fd,3e),HX_("ob",13,61,00,00),false);
HXDLIN( 566) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_566_boot)
HXDLIN( 566) lime_window_get_text_input_enabled = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_568_boot)
HXDLIN( 568) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_width",b8,fd,65,5f),HX_("oi",1a,61,00,00),false);
HXDLIN( 568) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_568_boot)
HXDLIN( 568) lime_window_get_width = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_569_boot)
HXDLIN( 569) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_x",2a,07,b5,31),HX_("oi",1a,61,00,00),false);
HXDLIN( 569) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_569_boot)
HXDLIN( 569) lime_window_get_x = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_570_boot)
HXDLIN( 570) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_get_y",2b,07,b5,31),HX_("oi",1a,61,00,00),false);
HXDLIN( 570) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_570_boot)
HXDLIN( 570) lime_window_get_y = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_571_boot)
HXDLIN( 571) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_move",96,b5,64,4b),HX_("oiiv",87,b7,ae,49),false);
HXDLIN( 571) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_571_boot)
HXDLIN( 571) lime_window_move = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_572_boot)
HXDLIN( 572) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_read_pixels",51,24,eb,4c),HX_("oooo",40,4a,b3,49),false);
HXDLIN( 572) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_572_boot)
HXDLIN( 572) lime_window_read_pixels = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_574_boot)
HXDLIN( 574) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_resize",b9,97,fc,b1),HX_("oiiv",87,b7,ae,49),false);
HXDLIN( 574) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_574_boot)
HXDLIN( 574) lime_window_resize = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_576_boot)
HXDLIN( 576) ::cpp::Function< bool ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_borderless",c7,c1,d2,19),HX_("obb",ef,8f,54,00),false);
HXDLIN( 576) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_576_boot)
HXDLIN( 576) lime_window_set_borderless = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_578_boot)
HXDLIN( 578) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_cursor",58,a1,41,10),HX_("oiv",1c,96,54,00),false);
HXDLIN( 578) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_578_boot)
HXDLIN( 578) lime_window_set_cursor = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_580_boot)
HXDLIN( 580) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_display_mode",c2,35,f6,ee),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 580) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_580_boot)
HXDLIN( 580) lime_window_set_display_mode = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_582_boot)
HXDLIN( 582) ::cpp::Function< bool ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_fullscreen",bd,b5,15,fc),HX_("obb",ef,8f,54,00),false);
HXDLIN( 582) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_582_boot)
HXDLIN( 582) lime_window_set_fullscreen = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_584_boot)
HXDLIN( 584) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_icon",7b,f5,6a,6e),HX_("oov",56,9b,54,00),false);
HXDLIN( 584) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_584_boot)
HXDLIN( 584) lime_window_set_icon = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_586_boot)
HXDLIN( 586) ::cpp::Function< bool ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_maximized",d6,f8,ec,06),HX_("obb",ef,8f,54,00),false);
HXDLIN( 586) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_586_boot)
HXDLIN( 586) lime_window_set_maximized = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_588_boot)
HXDLIN( 588) ::cpp::Function< bool ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_minimized",44,e6,a9,30),HX_("obb",ef,8f,54,00),false);
HXDLIN( 588) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_588_boot)
HXDLIN( 588) lime_window_set_minimized = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_590_boot)
HXDLIN( 590) ::cpp::Function< void ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_mouse_lock",07,b7,c9,87),HX_("obv",03,90,54,00),false);
HXDLIN( 590) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_590_boot)
HXDLIN( 590) lime_window_set_mouse_lock = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_592_boot)
HXDLIN( 592) ::cpp::Function< bool ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_resizable",29,22,5c,b1),HX_("obb",ef,8f,54,00),false);
HXDLIN( 592) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_592_boot)
HXDLIN( 592) lime_window_set_resizable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_594_boot)
HXDLIN( 594) ::cpp::Function< void ( ::hx::Object *,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_text_input_enabled",3c,bb,a8,72),HX_("obv",03,90,54,00),false);
HXDLIN( 594) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_594_boot)
HXDLIN( 594) lime_window_set_text_input_enabled = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_596_boot)
HXDLIN( 596) ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_set_title",56,49,8f,88),HX_("oso",cb,9e,54,00),false);
HXDLIN( 596) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_596_boot)
HXDLIN( 596) lime_window_set_title = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_598_boot)
HXDLIN( 598) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_warp_mouse",f3,a9,91,df),HX_("oiiv",87,b7,ae,49),false);
HXDLIN( 598) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_598_boot)
HXDLIN( 598) lime_window_warp_mouse = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_600_boot)
HXDLIN( 600) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_window_event_manager_register",7f,16,8e,0d),HX_("oov",56,9b,54,00),false);
HXDLIN( 600) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_600_boot)
HXDLIN( 600) lime_window_event_manager_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_602_boot)
HXDLIN( 602) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_zlib_compress",ac,90,d2,8a),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 602) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_602_boot)
HXDLIN( 602) lime_zlib_compress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_604_boot)
HXDLIN( 604) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_zlib_decompress",ad,a7,53,43),HX_("ooo",4f,9b,54,00),false);
HXDLIN( 604) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_604_boot)
HXDLIN( 604) lime_zlib_decompress = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1656_boot)
HXDLIN(1656) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_buffer_data",9f,3d,30,e4),HX_("oioiiv",a1,ad,5e,20),false);
HXDLIN(1656) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1656_boot)
HXDLIN(1656) lime_al_buffer_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1658_boot)
HXDLIN(1658) ::cpp::Function< void ( ::hx::Object *,int,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_buffer3f",7d,e7,92,da),HX_("oifffv",aa,78,69,1a),false);
HXDLIN(1658) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1658_boot)
HXDLIN(1658) lime_al_buffer3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1660_boot)
HXDLIN(1660) ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_buffer3i",80,e7,92,da),HX_("oiiiiv",e7,65,67,1c),false);
HXDLIN(1660) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1660_boot)
HXDLIN(1660) lime_al_buffer3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1662_boot)
HXDLIN(1662) ::cpp::Function< void ( ::hx::Object *,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_bufferf",fc,c8,9c,ee),HX_("oifv",ea,b4,ae,49),false);
HXDLIN(1662) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1662_boot)
HXDLIN(1662) lime_al_bufferf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1664_boot)
HXDLIN(1664) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_bufferfv",fa,13,93,da),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1664) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1664_boot)
HXDLIN(1664) lime_al_bufferfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1666_boot)
HXDLIN(1666) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_bufferi",ff,c8,9c,ee),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(1666) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1666_boot)
HXDLIN(1666) lime_al_bufferi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1667_boot)
HXDLIN(1667) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_bufferiv",97,16,93,da),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1667) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1667_boot)
HXDLIN(1667) lime_al_bufferiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1669_boot)
HXDLIN(1669) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_cleanup",ba,31,4e,e8),HX_("v",76,00,00,00),false);
HXDLIN(1669) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1669_boot)
HXDLIN(1669) lime_al_cleanup = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1670_boot)
HXDLIN(1670) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_delete_buffer",ea,b3,0d,56),HX_("ov",27,61,00,00),false);
HXDLIN(1670) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1670_boot)
HXDLIN(1670) lime_al_delete_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1671_boot)
HXDLIN(1671) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_delete_buffers",49,b9,ef,f5),HX_("iov",d0,0d,50,00),false);
HXDLIN(1671) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1671_boot)
HXDLIN(1671) lime_al_delete_buffers = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1673_boot)
HXDLIN(1673) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_delete_source",c5,a7,aa,b7),HX_("ov",27,61,00,00),false);
HXDLIN(1673) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1673_boot)
HXDLIN(1673) lime_al_delete_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1674_boot)
HXDLIN(1674) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_delete_sources",0e,25,a8,fd),HX_("iov",d0,0d,50,00),false);
HXDLIN(1674) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1674_boot)
HXDLIN(1674) lime_al_delete_sources = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1676_boot)
HXDLIN(1676) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_disable",7e,8f,64,ee),HX_("iv",ed,5b,00,00),false);
HXDLIN(1676) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1676_boot)
HXDLIN(1676) lime_al_disable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1677_boot)
HXDLIN(1677) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_distance_model",09,2d,9c,2e),HX_("iv",ed,5b,00,00),false);
HXDLIN(1677) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1677_boot)
HXDLIN(1677) lime_al_distance_model = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1678_boot)
HXDLIN(1678) ::cpp::Function< void (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_doppler_factor",ea,b2,5f,1d),HX_("fv",50,59,00,00),false);
HXDLIN(1678) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1678_boot)
HXDLIN(1678) lime_al_doppler_factor = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1679_boot)
HXDLIN(1679) ::cpp::Function< void (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_doppler_velocity",f8,18,9f,e4),HX_("fv",50,59,00,00),false);
HXDLIN(1679) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1679_boot)
HXDLIN(1679) lime_al_doppler_velocity = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1681_boot)
HXDLIN(1681) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_enable",ad,cd,b6,64),HX_("iv",ed,5b,00,00),false);
HXDLIN(1681) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1681_boot)
HXDLIN(1681) lime_al_enable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1682_boot)
HXDLIN(1682) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_source",14,70,09,16),HX_("o",6f,00,00,00),false);
HXDLIN(1682) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1682_boot)
HXDLIN(1682) lime_al_gen_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1683_boot)
HXDLIN(1683) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_sources",df,a1,38,32),HX_("io",e6,5b,00,00),false);
HXDLIN(1683) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1683_boot)
HXDLIN(1683) lime_al_gen_sources = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1684_boot)
HXDLIN(1684) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_boolean",55,f3,96,e8),HX_("ib",d9,5b,00,00),false);
HXDLIN(1684) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1684_boot)
HXDLIN(1684) lime_al_get_boolean = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1685_boot)
HXDLIN(1685) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_booleanv",81,f7,7d,9b),HX_("iio",8f,08,50,00),false);
HXDLIN(1685) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1685_boot)
HXDLIN(1685) lime_al_get_booleanv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1686_boot)
HXDLIN(1686) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_buffer",39,7c,6c,b4),HX_("o",6f,00,00,00),false);
HXDLIN(1686) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1686_boot)
HXDLIN(1686) lime_al_gen_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1687_boot)
HXDLIN(1687) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_buffers",1a,36,80,2a),HX_("io",e6,5b,00,00),false);
HXDLIN(1687) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1687_boot)
HXDLIN(1687) lime_al_gen_buffers = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1688_boot)
HXDLIN(1688) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_buffer3f",86,b8,6d,87),HX_("oio",15,96,54,00),false);
HXDLIN(1688) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1688_boot)
HXDLIN(1688) lime_al_get_buffer3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1690_boot)
HXDLIN(1690) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_buffer3i",89,b8,6d,87),HX_("oio",15,96,54,00),false);
HXDLIN(1690) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1690_boot)
HXDLIN(1690) lime_al_get_buffer3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1692_boot)
HXDLIN(1692) ::cpp::Function< float ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_bufferf",13,ac,28,1c),HX_("oif",0c,96,54,00),false);
HXDLIN(1692) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1692_boot)
HXDLIN(1692) lime_al_get_bufferf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1693_boot)
HXDLIN(1693) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_bufferfv",03,e5,6d,87),HX_("oiio",80,b7,ae,49),false);
HXDLIN(1693) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1693_boot)
HXDLIN(1693) lime_al_get_bufferfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1695_boot)
HXDLIN(1695) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_bufferi",16,ac,28,1c),HX_("oii",0f,96,54,00),false);
HXDLIN(1695) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1695_boot)
HXDLIN(1695) lime_al_get_bufferi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1696_boot)
HXDLIN(1696) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_bufferiv",a0,e7,6d,87),HX_("oiio",80,b7,ae,49),false);
HXDLIN(1696) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1696_boot)
HXDLIN(1696) lime_al_get_bufferiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1698_boot)
HXDLIN(1698) ::cpp::Function< Float (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_double",04,97,d1,6d),HX_("id",db,5b,00,00),false);
HXDLIN(1698) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1698_boot)
HXDLIN(1698) lime_al_get_double = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1699_boot)
HXDLIN(1699) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_doublev",f2,8c,92,a9),HX_("iio",8f,08,50,00),false);
HXDLIN(1699) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1699_boot)
HXDLIN(1699) lime_al_get_doublev = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1700_boot)
HXDLIN(1700) ::cpp::Function< int (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_enum_value",e6,c9,e4,87),HX_("si",96,64,00,00),false);
HXDLIN(1700) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1700_boot)
HXDLIN(1700) lime_al_get_enum_value = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1701_boot)
HXDLIN(1701) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_error",35,5f,64,6b),HX_("i",69,00,00,00),false);
HXDLIN(1701) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1701_boot)
HXDLIN(1701) lime_al_get_error = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1702_boot)
HXDLIN(1702) ::cpp::Function< float (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_float",09,59,d1,fa),HX_("if",dd,5b,00,00),false);
HXDLIN(1702) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1702_boot)
HXDLIN(1702) lime_al_get_float = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1703_boot)
HXDLIN(1703) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_floatv",4d,8f,5c,7c),HX_("iio",8f,08,50,00),false);
HXDLIN(1703) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1703_boot)
HXDLIN(1703) lime_al_get_floatv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1704_boot)
HXDLIN(1704) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_integer",6b,c6,b3,81),HX_("ii",e0,5b,00,00),false);
HXDLIN(1704) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1704_boot)
HXDLIN(1704) lime_al_get_integer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1705_boot)
HXDLIN(1705) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_integerv",ab,d7,99,fb),HX_("iio",8f,08,50,00),false);
HXDLIN(1705) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1705_boot)
HXDLIN(1705) lime_al_get_integerv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1706_boot)
HXDLIN(1706) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_listener3f",ba,13,81,29),HX_("io",e6,5b,00,00),false);
HXDLIN(1706) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1706_boot)
HXDLIN(1706) lime_al_get_listener3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1707_boot)
HXDLIN(1707) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_listener3i",bd,13,81,29),HX_("io",e6,5b,00,00),false);
HXDLIN(1707) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1707_boot)
HXDLIN(1707) lime_al_get_listener3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1708_boot)
HXDLIN(1708) ::cpp::Function< float (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_listenerf",5f,b3,bb,3a),HX_("if",dd,5b,00,00),false);
HXDLIN(1708) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1708_boot)
HXDLIN(1708) lime_al_get_listenerf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1709_boot)
HXDLIN(1709) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_listenerfv",37,40,81,29),HX_("iio",8f,08,50,00),false);
HXDLIN(1709) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1709_boot)
HXDLIN(1709) lime_al_get_listenerfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1710_boot)
HXDLIN(1710) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_listeneri",62,b3,bb,3a),HX_("ii",e0,5b,00,00),false);
HXDLIN(1710) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1710_boot)
HXDLIN(1710) lime_al_get_listeneri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1711_boot)
HXDLIN(1711) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_listeneriv",d4,42,81,29),HX_("iio",8f,08,50,00),false);
HXDLIN(1711) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1711_boot)
HXDLIN(1711) lime_al_get_listeneriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1712_boot)
HXDLIN(1712) ::cpp::Function< Float (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_proc_address",fe,7c,3d,26),HX_("sd",91,64,00,00),false);
HXDLIN(1712) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1712_boot)
HXDLIN(1712) lime_al_get_proc_address = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1713_boot)
HXDLIN(1713) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_source3f",21,99,13,41),HX_("oio",15,96,54,00),false);
HXDLIN(1713) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1713_boot)
HXDLIN(1713) lime_al_get_source3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1715_boot)
HXDLIN(1715) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_source3i",24,99,13,41),HX_("oio",15,96,54,00),false);
HXDLIN(1715) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1715_boot)
HXDLIN(1715) lime_al_get_source3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1717_boot)
HXDLIN(1717) ::cpp::Function< float ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_sourcef",d8,17,e1,23),HX_("oif",0c,96,54,00),false);
HXDLIN(1717) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1717_boot)
HXDLIN(1717) lime_al_get_sourcef = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1718_boot)
HXDLIN(1718) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_sourcefv",9e,c5,13,41),HX_("oiio",80,b7,ae,49),false);
HXDLIN(1718) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1718_boot)
HXDLIN(1718) lime_al_get_sourcefv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1720_boot)
HXDLIN(1720) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_sourcei",db,17,e1,23),HX_("oio",15,96,54,00),false);
HXDLIN(1720) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1720_boot)
HXDLIN(1720) lime_al_get_sourcei = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1721_boot)
HXDLIN(1721) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_sourceiv",3b,c8,13,41),HX_("oiio",80,b7,ae,49),false);
HXDLIN(1721) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1721_boot)
HXDLIN(1721) lime_al_get_sourceiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1723_boot)
HXDLIN(1723) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_string",c4,94,36,4c),HX_("io",e6,5b,00,00),false);
HXDLIN(1723) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1723_boot)
HXDLIN(1723) lime_al_get_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1724_boot)
HXDLIN(1724) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_buffer",0b,5b,4a,2a),HX_("ob",13,61,00,00),false);
HXDLIN(1724) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1724_boot)
HXDLIN(1724) lime_al_is_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1725_boot)
HXDLIN(1725) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_enabled",16,b0,65,a3),HX_("ib",d9,5b,00,00),false);
HXDLIN(1725) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1725_boot)
HXDLIN(1725) lime_al_is_enabled = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1726_boot)
HXDLIN(1726) ::cpp::Function< bool (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_extension_present",d0,16,00,ef),HX_("sb",8f,64,00,00),false);
HXDLIN(1726) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1726_boot)
HXDLIN(1726) lime_al_is_extension_present = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1728_boot)
HXDLIN(1728) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_source",e6,4e,e7,8b),HX_("ob",13,61,00,00),false);
HXDLIN(1728) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1728_boot)
HXDLIN(1728) lime_al_is_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1729_boot)
HXDLIN(1729) ::cpp::Function< void (int,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_listener3f",71,2e,89,73),HX_("ifffv",79,6b,cc,b8),false);
HXDLIN(1729) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1729_boot)
HXDLIN(1729) lime_al_listener3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1731_boot)
HXDLIN(1731) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_listener3i",74,2e,89,73),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(1731) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1731_boot)
HXDLIN(1731) lime_al_listener3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1732_boot)
HXDLIN(1732) ::cpp::Function< void (int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_listenerf",88,9c,1f,a8),HX_("ifv",f9,05,50,00),false);
HXDLIN(1732) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1732_boot)
HXDLIN(1732) lime_al_listenerf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1733_boot)
HXDLIN(1733) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_listenerfv",ee,5a,89,73),HX_("iov",d0,0d,50,00),false);
HXDLIN(1733) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1733_boot)
HXDLIN(1733) lime_al_listenerfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1734_boot)
HXDLIN(1734) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_listeneri",8b,9c,1f,a8),HX_("iiv",96,08,50,00),false);
HXDLIN(1734) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1734_boot)
HXDLIN(1734) lime_al_listeneri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1735_boot)
HXDLIN(1735) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_listeneriv",8b,5d,89,73),HX_("iov",d0,0d,50,00),false);
HXDLIN(1735) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1735_boot)
HXDLIN(1735) lime_al_listeneriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1736_boot)
HXDLIN(1736) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_pause",fc,3f,07,a0),HX_("ov",27,61,00,00),false);
HXDLIN(1736) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1736_boot)
HXDLIN(1736) lime_al_source_pause = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1737_boot)
HXDLIN(1737) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_pausev",fa,bc,50,66),HX_("iov",d0,0d,50,00),false);
HXDLIN(1737) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1737_boot)
HXDLIN(1737) lime_al_source_pausev = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1739_boot)
HXDLIN(1739) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_play",ae,47,e1,7d),HX_("ov",27,61,00,00),false);
HXDLIN(1739) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1739_boot)
HXDLIN(1739) lime_al_source_play = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1740_boot)
HXDLIN(1740) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_playv",08,71,3d,a7),HX_("iov",d0,0d,50,00),false);
HXDLIN(1740) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1740_boot)
HXDLIN(1740) lime_al_source_playv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1741_boot)
HXDLIN(1741) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_queue_buffers",8b,e2,2d,54),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1741) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1741_boot)
HXDLIN(1741) lime_al_source_queue_buffers = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1743_boot)
HXDLIN(1743) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_rewind",35,a6,ec,81),HX_("ov",27,61,00,00),false);
HXDLIN(1743) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1743_boot)
HXDLIN(1743) lime_al_source_rewind = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1744_boot)
HXDLIN(1744) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_rewindv",a1,c8,24,2d),HX_("iov",d0,0d,50,00),false);
HXDLIN(1744) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1744_boot)
HXDLIN(1744) lime_al_source_rewindv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1746_boot)
HXDLIN(1746) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_stop",bc,09,e3,7f),HX_("ov",27,61,00,00),false);
HXDLIN(1746) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1746_boot)
HXDLIN(1746) lime_al_source_stop = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1747_boot)
HXDLIN(1747) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_stopv",3a,7b,c5,66),HX_("iov",d0,0d,50,00),false);
HXDLIN(1747) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1747_boot)
HXDLIN(1747) lime_al_source_stopv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1748_boot)
HXDLIN(1748) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source_unqueue_buffers",12,06,e2,64),HX_("oio",15,96,54,00),false);
HXDLIN(1748) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1748_boot)
HXDLIN(1748) lime_al_source_unqueue_buffers = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1750_boot)
HXDLIN(1750) ::cpp::Function< void ( ::hx::Object *,int,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source3f",18,c8,38,94),HX_("oifffv",aa,78,69,1a),false);
HXDLIN(1750) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1750_boot)
HXDLIN(1750) lime_al_source3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1752_boot)
HXDLIN(1752) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_source3i",1b,c8,38,94),HX_("oioiiv",a1,ad,5e,20),false);
HXDLIN(1752) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1752_boot)
HXDLIN(1752) lime_al_source3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1754_boot)
HXDLIN(1754) ::cpp::Function< void ( ::hx::Object *,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_sourcef",c1,34,55,f6),HX_("oifv",ea,b4,ae,49),false);
HXDLIN(1754) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1754_boot)
HXDLIN(1754) lime_al_sourcef = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1756_boot)
HXDLIN(1756) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_sourcefv",95,f4,38,94),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1756) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1756_boot)
HXDLIN(1756) lime_al_sourcefv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1758_boot)
HXDLIN(1758) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_sourcei",c4,34,55,f6),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1758) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1758_boot)
HXDLIN(1758) lime_al_sourcei = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1760_boot)
HXDLIN(1760) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_sourceiv",32,f7,38,94),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1760) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1760_boot)
HXDLIN(1760) lime_al_sourceiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1762_boot)
HXDLIN(1762) ::cpp::Function< void (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_speed_of_sound",89,b0,a8,8a),HX_("fv",50,59,00,00),false);
HXDLIN(1762) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1762_boot)
HXDLIN(1762) lime_al_speed_of_sound = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1763_boot)
HXDLIN(1763) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_close_device",ee,17,5c,d1),HX_("ob",13,61,00,00),false);
HXDLIN(1763) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1763_boot)
HXDLIN(1763) lime_alc_close_device = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1764_boot)
HXDLIN(1764) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_create_context",1d,4b,86,d8),HX_("ooo",4f,9b,54,00),false);
HXDLIN(1764) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1764_boot)
HXDLIN(1764) lime_alc_create_context = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1766_boot)
HXDLIN(1766) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_destroy_context",99,a8,9a,12),HX_("ov",27,61,00,00),false);
HXDLIN(1766) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1766_boot)
HXDLIN(1766) lime_alc_destroy_context = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1768_boot)
HXDLIN(1768) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_get_contexts_device",d7,e3,ae,e6),HX_("oo",20,61,00,00),false);
HXDLIN(1768) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1768_boot)
HXDLIN(1768) lime_alc_get_contexts_device = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1770_boot)
HXDLIN(1770) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_get_current_context",6f,01,f1,48),HX_("o",6f,00,00,00),false);
HXDLIN(1770) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1770_boot)
HXDLIN(1770) lime_alc_get_current_context = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1772_boot)
HXDLIN(1772) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_get_error",0e,4d,6e,60),HX_("oi",1a,61,00,00),false);
HXDLIN(1772) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1772_boot)
HXDLIN(1772) lime_alc_get_error = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1773_boot)
HXDLIN(1773) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_get_integerv",72,57,31,49),HX_("oiio",80,b7,ae,49),false);
HXDLIN(1773) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1773_boot)
HXDLIN(1773) lime_alc_get_integerv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1775_boot)
HXDLIN(1775) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_get_string",cb,c4,dc,bf),HX_("oio",15,96,54,00),false);
HXDLIN(1775) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1775_boot)
HXDLIN(1775) lime_alc_get_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1776_boot)
HXDLIN(1776) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_make_context_current",89,fe,9c,ca),HX_("ob",13,61,00,00),false);
HXDLIN(1776) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1776_boot)
HXDLIN(1776) lime_alc_make_context_current = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1778_boot)
HXDLIN(1778) ::cpp::Function< ::hx::Object * (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_open_device",5a,d6,40,50),HX_("so",9c,64,00,00),false);
HXDLIN(1778) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1778_boot)
HXDLIN(1778) lime_alc_open_device = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1779_boot)
HXDLIN(1779) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_pause_device",70,dc,44,20),HX_("ov",27,61,00,00),false);
HXDLIN(1779) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1779_boot)
HXDLIN(1779) lime_alc_pause_device = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1780_boot)
HXDLIN(1780) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_process_context",0e,1b,b1,00),HX_("ov",27,61,00,00),false);
HXDLIN(1780) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1780_boot)
HXDLIN(1780) lime_alc_process_context = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1782_boot)
HXDLIN(1782) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_resume_device",97,8c,92,24),HX_("ov",27,61,00,00),false);
HXDLIN(1782) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1782_boot)
HXDLIN(1782) lime_alc_resume_device = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1783_boot)
HXDLIN(1783) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_alc_suspend_context",1b,fd,cc,57),HX_("ov",27,61,00,00),false);
HXDLIN(1783) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1783_boot)
HXDLIN(1783) lime_alc_suspend_context = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1785_boot)
HXDLIN(1785) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_filter",f1,de,0c,69),HX_("o",6f,00,00,00),false);
HXDLIN(1785) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1785_boot)
HXDLIN(1785) lime_al_gen_filter = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1786_boot)
HXDLIN(1786) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_filteri",47,c7,52,46),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1786) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1786_boot)
HXDLIN(1786) lime_al_filteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1788_boot)
HXDLIN(1788) ::cpp::Function< void ( ::hx::Object *,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_filterf",44,c7,52,46),HX_("oifv",ea,b4,ae,49),false);
HXDLIN(1788) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1788_boot)
HXDLIN(1788) lime_al_filterf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1790_boot)
HXDLIN(1790) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_remove_direct_filter",7d,1d,1f,9c),HX_("ov",27,61,00,00),false);
HXDLIN(1790) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1790_boot)
HXDLIN(1790) lime_al_remove_direct_filter = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1792_boot)
HXDLIN(1792) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_filter",c3,bd,ea,de),HX_("ob",13,61,00,00),false);
HXDLIN(1792) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1792_boot)
HXDLIN(1792) lime_al_is_filter = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1793_boot)
HXDLIN(1793) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_get_filteri",5e,aa,de,73),HX_("oii",0f,96,54,00),false);
HXDLIN(1793) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1793_boot)
HXDLIN(1793) lime_al_get_filteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1794_boot)
HXDLIN(1794) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_effect",ca,19,7b,44),HX_("o",6f,00,00,00),false);
HXDLIN(1794) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1794_boot)
HXDLIN(1794) lime_al_gen_effect = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1795_boot)
HXDLIN(1795) ::cpp::Function< void ( ::hx::Object *,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_effectf",4b,0a,58,6b),HX_("oifv",ea,b4,ae,49),false);
HXDLIN(1795) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1795_boot)
HXDLIN(1795) lime_al_effectf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1797_boot)
HXDLIN(1797) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_effectfv",cb,f7,b0,81),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1797) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1797_boot)
HXDLIN(1797) lime_al_effectfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1799_boot)
HXDLIN(1799) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_effecti",4e,0a,58,6b),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(1799) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1799_boot)
HXDLIN(1799) lime_al_effecti = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1800_boot)
HXDLIN(1800) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_effectiv",68,fa,b0,81),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1800) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1800_boot)
HXDLIN(1800) lime_al_effectiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1802_boot)
HXDLIN(1802) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_effect",9c,f8,58,ba),HX_("ob",13,61,00,00),false);
HXDLIN(1802) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1802_boot)
HXDLIN(1802) lime_al_is_effect = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1803_boot)
HXDLIN(1803) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_gen_aux",2b,74,63,ef),HX_("o",6f,00,00,00),false);
HXDLIN(1803) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1803_boot)
HXDLIN(1803) lime_al_gen_aux = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1804_boot)
HXDLIN(1804) ::cpp::Function< void ( ::hx::Object *,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_auxf",8c,03,5d,ce),HX_("oifv",ea,b4,ae,49),false);
HXDLIN(1804) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1804_boot)
HXDLIN(1804) lime_al_auxf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1805_boot)
HXDLIN(1805) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_auxfv",6a,17,06,c3),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1805) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1805_boot)
HXDLIN(1805) lime_al_auxfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1806_boot)
HXDLIN(1806) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_auxi",8f,03,5d,ce),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1806) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1806_boot)
HXDLIN(1806) lime_al_auxi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1807_boot)
HXDLIN(1807) ::cpp::Function< void ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_auxiv",07,1a,06,c3),HX_("oiov",c1,bc,ae,49),false);
HXDLIN(1807) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1807_boot)
HXDLIN(1807) lime_al_auxiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1808_boot)
HXDLIN(1808) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_is_aux",19,fe,d1,dd),HX_("ob",13,61,00,00),false);
HXDLIN(1808) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1808_boot)
HXDLIN(1808) lime_al_is_aux = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1809_boot)
HXDLIN(1809) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_al_remove_send",f9,be,05,4f),HX_("oiv",1c,96,54,00),false);
HXDLIN(1809) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_1809_boot)
HXDLIN(1809) lime_al_remove_send = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2558_boot)
HXDLIN(2558) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_arc",f1,76,fc,f9),HX_("odddddv",41,24,f6,d9),false);
HXDLIN(2558) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2558_boot)
HXDLIN(2558) lime_cairo_arc = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2560_boot)
HXDLIN(2560) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_arc_negative",c3,c0,b7,d8),HX_("odddddv",41,24,f6,d9),false);
HXDLIN(2560) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2560_boot)
HXDLIN(2560) lime_cairo_arc_negative = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2562_boot)
HXDLIN(2562) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_clip",51,81,39,c4),HX_("ov",27,61,00,00),false);
HXDLIN(2562) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2562_boot)
HXDLIN(2562) lime_cairo_clip = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2563_boot)
HXDLIN(2563) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_clip_preserve",ba,af,0e,79),HX_("ov",27,61,00,00),false);
HXDLIN(2563) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2563_boot)
HXDLIN(2563) lime_cairo_clip_preserve = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2565_boot)
HXDLIN(2565) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_clip_extents",1b,ef,99,33),HX_("oddddv",a7,9e,14,38),false);
HXDLIN(2565) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2565_boot)
HXDLIN(2565) lime_cairo_clip_extents = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2567_boot)
HXDLIN(2567) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_close_path",0d,58,78,e1),HX_("ov",27,61,00,00),false);
HXDLIN(2567) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2567_boot)
HXDLIN(2567) lime_cairo_close_path = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2568_boot)
HXDLIN(2568) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_copy_page",38,e4,e1,1e),HX_("ov",27,61,00,00),false);
HXDLIN(2568) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2568_boot)
HXDLIN(2568) lime_cairo_copy_page = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2569_boot)
HXDLIN(2569) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_create",bd,db,50,d8),HX_("oo",20,61,00,00),false);
HXDLIN(2569) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2569_boot)
HXDLIN(2569) lime_cairo_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2570_boot)
HXDLIN(2570) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_curve_to",4c,ed,ec,ef),HX_("oddddddv",67,85,69,dd),false);
HXDLIN(2570) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2570_boot)
HXDLIN(2570) lime_cairo_curve_to = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2572_boot)
HXDLIN(2572) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_fill",04,e1,32,c6),HX_("ov",27,61,00,00),false);
HXDLIN(2572) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2572_boot)
HXDLIN(2572) lime_cairo_fill = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2573_boot)
HXDLIN(2573) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_fill_extents",ce,b9,56,6b),HX_("oddddv",a7,9e,14,38),false);
HXDLIN(2573) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2573_boot)
HXDLIN(2573) lime_cairo_fill_extents = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2575_boot)
HXDLIN(2575) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_fill_preserve",a7,41,83,06),HX_("ov",27,61,00,00),false);
HXDLIN(2575) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2575_boot)
HXDLIN(2575) lime_cairo_fill_preserve = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2577_boot)
HXDLIN(2577) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_antialias",e4,bf,ea,4f),HX_("oi",1a,61,00,00),false);
HXDLIN(2577) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2577_boot)
HXDLIN(2577) lime_cairo_get_antialias = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2578_boot)
HXDLIN(2578) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_current_point",c0,c4,0b,c0),HX_("oo",20,61,00,00),false);
HXDLIN(2578) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2578_boot)
HXDLIN(2578) lime_cairo_get_current_point = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2580_boot)
HXDLIN(2580) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_dash",dc,f7,36,c9),HX_("oo",20,61,00,00),false);
HXDLIN(2580) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2580_boot)
HXDLIN(2580) lime_cairo_get_dash = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2581_boot)
HXDLIN(2581) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_dash_count",ec,d0,06,ce),HX_("oi",1a,61,00,00),false);
HXDLIN(2581) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2581_boot)
HXDLIN(2581) lime_cairo_get_dash_count = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2582_boot)
HXDLIN(2582) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_fill_rule",ae,34,3f,14),HX_("oi",1a,61,00,00),false);
HXDLIN(2582) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2582_boot)
HXDLIN(2582) lime_cairo_get_fill_rule = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2583_boot)
HXDLIN(2583) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_font_face",83,ed,75,e9),HX_("oo",20,61,00,00),false);
HXDLIN(2583) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2583_boot)
HXDLIN(2583) lime_cairo_get_font_face = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2585_boot)
HXDLIN(2585) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_font_options",38,0e,38,ee),HX_("oo",20,61,00,00),false);
HXDLIN(2585) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2585_boot)
HXDLIN(2585) lime_cairo_get_font_options = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2587_boot)
HXDLIN(2587) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_group_target",1b,04,8e,27),HX_("oo",20,61,00,00),false);
HXDLIN(2587) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2587_boot)
HXDLIN(2587) lime_cairo_get_group_target = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2589_boot)
HXDLIN(2589) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_line_cap",91,8a,ff,dc),HX_("oi",1a,61,00,00),false);
HXDLIN(2589) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2589_boot)
HXDLIN(2589) lime_cairo_get_line_cap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2590_boot)
HXDLIN(2590) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_line_join",8b,cc,44,87),HX_("oi",1a,61,00,00),false);
HXDLIN(2590) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2590_boot)
HXDLIN(2590) lime_cairo_get_line_join = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2591_boot)
HXDLIN(2591) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_line_width",45,aa,28,4d),HX_("od",15,61,00,00),false);
HXDLIN(2591) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2591_boot)
HXDLIN(2591) lime_cairo_get_line_width = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2592_boot)
HXDLIN(2592) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_matrix",4b,0f,b1,58),HX_("oo",20,61,00,00),false);
HXDLIN(2592) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2592_boot)
HXDLIN(2592) lime_cairo_get_matrix = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2593_boot)
HXDLIN(2593) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_miter_limit",f7,da,f6,e3),HX_("od",15,61,00,00),false);
HXDLIN(2593) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2593_boot)
HXDLIN(2593) lime_cairo_get_miter_limit = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2595_boot)
HXDLIN(2595) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_operator",2e,cb,0b,90),HX_("oi",1a,61,00,00),false);
HXDLIN(2595) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2595_boot)
HXDLIN(2595) lime_cairo_get_operator = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2596_boot)
HXDLIN(2596) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_source",e5,89,1a,cf),HX_("oo",20,61,00,00),false);
HXDLIN(2596) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2596_boot)
HXDLIN(2596) lime_cairo_get_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2597_boot)
HXDLIN(2597) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_target",5b,cc,d5,23),HX_("oo",20,61,00,00),false);
HXDLIN(2597) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2597_boot)
HXDLIN(2597) lime_cairo_get_target = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2598_boot)
HXDLIN(2598) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_get_tolerance",43,26,7d,0d),HX_("od",15,61,00,00),false);
HXDLIN(2598) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2598_boot)
HXDLIN(2598) lime_cairo_get_tolerance = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2599_boot)
HXDLIN(2599) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_has_current_point",84,52,43,91),HX_("ob",13,61,00,00),false);
HXDLIN(2599) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2599_boot)
HXDLIN(2599) lime_cairo_has_current_point = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2601_boot)
HXDLIN(2601) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_identity_matrix",81,b1,fe,41),HX_("ov",27,61,00,00),false);
HXDLIN(2601) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2601_boot)
HXDLIN(2601) lime_cairo_identity_matrix = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2603_boot)
HXDLIN(2603) ::cpp::Function< bool ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_in_clip",c9,a4,67,5b),HX_("oddb",d3,e7,aa,49),false);
HXDLIN(2603) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2603_boot)
HXDLIN(2603) lime_cairo_in_clip = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2605_boot)
HXDLIN(2605) ::cpp::Function< bool ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_in_fill",7c,04,61,5d),HX_("oddb",d3,e7,aa,49),false);
HXDLIN(2605) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2605_boot)
HXDLIN(2605) lime_cairo_in_fill = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2607_boot)
HXDLIN(2607) ::cpp::Function< bool ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_in_stroke",f1,19,0e,c7),HX_("oddb",d3,e7,aa,49),false);
HXDLIN(2607) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2607_boot)
HXDLIN(2607) lime_cairo_in_stroke = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2609_boot)
HXDLIN(2609) ::cpp::Function< void ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_line_to",45,88,aa,7c),HX_("oddv",e7,e7,aa,49),false);
HXDLIN(2609) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2609_boot)
HXDLIN(2609) lime_cairo_line_to = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2611_boot)
HXDLIN(2611) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_mask",6d,53,cd,ca),HX_("oov",56,9b,54,00),false);
HXDLIN(2611) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2611_boot)
HXDLIN(2611) lime_cairo_mask = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2612_boot)
HXDLIN(2612) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_mask_surface",1b,c8,a3,8c),HX_("ooddv",d6,4b,25,33),false);
HXDLIN(2612) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2612_boot)
HXDLIN(2612) lime_cairo_mask_surface = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2614_boot)
HXDLIN(2614) ::cpp::Function< void ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_move_to",48,cd,98,a7),HX_("oddv",e7,e7,aa,49),false);
HXDLIN(2614) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2614_boot)
HXDLIN(2614) lime_cairo_move_to = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2616_boot)
HXDLIN(2616) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_new_path",25,bc,98,94),HX_("ov",27,61,00,00),false);
HXDLIN(2616) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2616_boot)
HXDLIN(2616) lime_cairo_new_path = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2617_boot)
HXDLIN(2617) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_paint",fd,d5,07,63),HX_("ov",27,61,00,00),false);
HXDLIN(2617) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2617_boot)
HXDLIN(2617) lime_cairo_paint = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2618_boot)
HXDLIN(2618) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_paint_with_alpha",67,1b,fb,63),HX_("odv",c1,91,54,00),false);
HXDLIN(2618) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2618_boot)
HXDLIN(2618) lime_cairo_paint_with_alpha = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2620_boot)
HXDLIN(2620) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pop_group",b0,94,6e,0c),HX_("oo",20,61,00,00),false);
HXDLIN(2620) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2620_boot)
HXDLIN(2620) lime_cairo_pop_group = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2621_boot)
HXDLIN(2621) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pop_group_to_source",d0,9e,67,af),HX_("ov",27,61,00,00),false);
HXDLIN(2621) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2621_boot)
HXDLIN(2621) lime_cairo_pop_group_to_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2623_boot)
HXDLIN(2623) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_push_group",1b,55,88,61),HX_("ov",27,61,00,00),false);
HXDLIN(2623) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2623_boot)
HXDLIN(2623) lime_cairo_push_group = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2624_boot)
HXDLIN(2624) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_push_group_with_content",a4,bb,13,d3),HX_("oiv",1c,96,54,00),false);
HXDLIN(2624) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2624_boot)
HXDLIN(2624) lime_cairo_push_group_with_content = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2626_boot)
HXDLIN(2626) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_rectangle",0e,0e,2e,48),HX_("oddddv",a7,9e,14,38),false);
HXDLIN(2626) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2626_boot)
HXDLIN(2626) lime_cairo_rectangle = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2628_boot)
HXDLIN(2628) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_rel_curve_to",b2,ac,52,05),HX_("oddddddv",67,85,69,dd),false);
HXDLIN(2628) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2628_boot)
HXDLIN(2628) lime_cairo_rel_curve_to = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2630_boot)
HXDLIN(2630) ::cpp::Function< void ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_rel_line_to",9f,37,7e,c0),HX_("oddv",e7,e7,aa,49),false);
HXDLIN(2630) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2630_boot)
HXDLIN(2630) lime_cairo_rel_line_to = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2632_boot)
HXDLIN(2632) ::cpp::Function< void ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_rel_move_to",a2,7c,6c,eb),HX_("oddv",e7,e7,aa,49),false);
HXDLIN(2632) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2632_boot)
HXDLIN(2632) lime_cairo_rel_move_to = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2634_boot)
HXDLIN(2634) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_reset_clip",c1,bb,a3,f6),HX_("ov",27,61,00,00),false);
HXDLIN(2634) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2634_boot)
HXDLIN(2634) lime_cairo_reset_clip = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2635_boot)
HXDLIN(2635) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_restore",6d,1b,b5,c7),HX_("ov",27,61,00,00),false);
HXDLIN(2635) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2635_boot)
HXDLIN(2635) lime_cairo_restore = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2636_boot)
HXDLIN(2636) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_rotate",1c,bb,61,27),HX_("odv",c1,91,54,00),false);
HXDLIN(2636) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2636_boot)
HXDLIN(2636) lime_cairo_rotate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2637_boot)
HXDLIN(2637) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_save",be,9d,c4,ce),HX_("ov",27,61,00,00),false);
HXDLIN(2637) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2637_boot)
HXDLIN(2637) lime_cairo_save = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2638_boot)
HXDLIN(2638) ::cpp::Function< void ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_scale",e9,ec,87,1e),HX_("oddv",e7,e7,aa,49),false);
HXDLIN(2638) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2638_boot)
HXDLIN(2638) lime_cairo_scale = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2640_boot)
HXDLIN(2640) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_antialias",f0,a1,f0,94),HX_("oiv",1c,96,54,00),false);
HXDLIN(2640) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2640_boot)
HXDLIN(2640) lime_cairo_set_antialias = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2642_boot)
HXDLIN(2642) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_dash",50,51,94,77),HX_("oov",56,9b,54,00),false);
HXDLIN(2642) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2642_boot)
HXDLIN(2642) lime_cairo_set_dash = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2644_boot)
HXDLIN(2644) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_fill_rule",ba,16,45,59),HX_("oiv",1c,96,54,00),false);
HXDLIN(2644) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2644_boot)
HXDLIN(2644) lime_cairo_set_fill_rule = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2646_boot)
HXDLIN(2646) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_font_face",8f,cf,7b,2e),HX_("oov",56,9b,54,00),false);
HXDLIN(2646) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2646_boot)
HXDLIN(2646) lime_cairo_set_font_face = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2648_boot)
HXDLIN(2648) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_font_options",ac,fb,79,44),HX_("oov",56,9b,54,00),false);
HXDLIN(2648) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2648_boot)
HXDLIN(2648) lime_cairo_set_font_options = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2650_boot)
HXDLIN(2650) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_font_size",b3,bb,19,37),HX_("odv",c1,91,54,00),false);
HXDLIN(2650) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2650_boot)
HXDLIN(2650) lime_cairo_set_font_size = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2652_boot)
HXDLIN(2652) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_line_cap",05,ae,f8,f1),HX_("oiv",1c,96,54,00),false);
HXDLIN(2652) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2652_boot)
HXDLIN(2652) lime_cairo_set_line_cap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2654_boot)
HXDLIN(2654) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_line_join",97,ae,4a,cc),HX_("oiv",1c,96,54,00),false);
HXDLIN(2654) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2654_boot)
HXDLIN(2654) lime_cairo_set_line_join = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2656_boot)
HXDLIN(2656) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_line_width",b9,92,48,6d),HX_("odv",c1,91,54,00),false);
HXDLIN(2656) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2656_boot)
HXDLIN(2656) lime_cairo_set_line_width = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2658_boot)
HXDLIN(2658) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_matrix",bf,ad,2e,5c),HX_("oddddddv",67,85,69,dd),false);
HXDLIN(2658) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2658_boot)
HXDLIN(2658) lime_cairo_set_matrix = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2660_boot)
HXDLIN(2660) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_miter_limit",03,58,c2,df),HX_("odv",c1,91,54,00),false);
HXDLIN(2660) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2660_boot)
HXDLIN(2660) lime_cairo_set_miter_limit = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2662_boot)
HXDLIN(2662) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_operator",a2,ee,04,a5),HX_("oiv",1c,96,54,00),false);
HXDLIN(2662) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2662_boot)
HXDLIN(2662) lime_cairo_set_operator = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2664_boot)
HXDLIN(2664) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_source",59,28,98,d2),HX_("oov",56,9b,54,00),false);
HXDLIN(2664) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2664_boot)
HXDLIN(2664) lime_cairo_set_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2666_boot)
HXDLIN(2666) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_source_rgb",e7,e8,97,83),HX_("odddv",01,f3,df,2b),false);
HXDLIN(2666) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2666_boot)
HXDLIN(2666) lime_cairo_set_source_rgb = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2668_boot)
HXDLIN(2668) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_source_rgba",9a,e1,53,a1),HX_("oddddv",a7,9e,14,38),false);
HXDLIN(2668) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2668_boot)
HXDLIN(2668) lime_cairo_set_source_rgba = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2670_boot)
HXDLIN(2670) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_source_surface",07,69,ef,cf),HX_("ooddv",d6,4b,25,33),false);
HXDLIN(2670) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2670_boot)
HXDLIN(2670) lime_cairo_set_source_surface = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2672_boot)
HXDLIN(2672) ::cpp::Function< void ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_set_tolerance",4f,08,83,52),HX_("odv",c1,91,54,00),false);
HXDLIN(2672) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2672_boot)
HXDLIN(2672) lime_cairo_set_tolerance = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2674_boot)
HXDLIN(2674) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_show_glyphs",28,2f,f5,54),HX_("oov",56,9b,54,00),false);
HXDLIN(2674) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2674_boot)
HXDLIN(2674) lime_cairo_show_glyphs = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2676_boot)
HXDLIN(2676) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_show_page",f0,25,4b,c7),HX_("ov",27,61,00,00),false);
HXDLIN(2676) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2676_boot)
HXDLIN(2676) lime_cairo_show_page = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2677_boot)
HXDLIN(2677) ::cpp::Function< void ( ::hx::Object *,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_show_text",4e,18,f3,c9),HX_("osv",d2,9e,54,00),false);
HXDLIN(2677) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2677_boot)
HXDLIN(2677) lime_cairo_show_text = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2679_boot)
HXDLIN(2679) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_status",f3,5b,3d,62),HX_("oi",1a,61,00,00),false);
HXDLIN(2679) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2679_boot)
HXDLIN(2679) lime_cairo_status = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2680_boot)
HXDLIN(2680) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_stroke",79,28,76,6d),HX_("ov",27,61,00,00),false);
HXDLIN(2680) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2680_boot)
HXDLIN(2680) lime_cairo_stroke = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2681_boot)
HXDLIN(2681) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_stroke_extents",43,fe,0d,ea),HX_("oddddv",a7,9e,14,38),false);
HXDLIN(2681) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2681_boot)
HXDLIN(2681) lime_cairo_stroke_extents = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2683_boot)
HXDLIN(2683) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_stroke_preserve",92,e3,27,68),HX_("ov",27,61,00,00),false);
HXDLIN(2683) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2683_boot)
HXDLIN(2683) lime_cairo_stroke_preserve = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2685_boot)
HXDLIN(2685) ::cpp::Function< void ( ::hx::Object *,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_text_path",96,5b,d4,31),HX_("osv",d2,9e,54,00),false);
HXDLIN(2685) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2685_boot)
HXDLIN(2685) lime_cairo_text_path = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2687_boot)
HXDLIN(2687) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_transform",4b,67,44,74),HX_("oov",56,9b,54,00),false);
HXDLIN(2687) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2687_boot)
HXDLIN(2687) lime_cairo_transform = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2689_boot)
HXDLIN(2689) ::cpp::Function< void ( ::hx::Object *,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_translate",2d,11,31,78),HX_("oddv",e7,e7,aa,49),false);
HXDLIN(2689) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2689_boot)
HXDLIN(2689) lime_cairo_translate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2691_boot)
HXDLIN(2691) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_version",37,9b,f6,d9),HX_("i",69,00,00,00),false);
HXDLIN(2691) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2691_boot)
HXDLIN(2691) lime_cairo_version = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::String () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2692_boot)
HXDLIN(2692) ::cpp::Function< ::String () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_version_string",19,84,60,45),HX_("s",73,00,00,00),false);
HXDLIN(2692) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2692_boot)
HXDLIN(2692) lime_cairo_version_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2693_boot)
HXDLIN(2693) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_face_status",25,18,5c,f3),HX_("oi",1a,61,00,00),false);
HXDLIN(2693) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2693_boot)
HXDLIN(2693) lime_cairo_font_face_status = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2695_boot)
HXDLIN(2695) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_create",4c,3f,9e,9d),HX_("o",6f,00,00,00),false);
HXDLIN(2695) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2695_boot)
HXDLIN(2695) lime_cairo_font_options_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2697_boot)
HXDLIN(2697) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_get_antialias",35,7c,8d,f3),HX_("oi",1a,61,00,00),false);
HXDLIN(2697) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2697_boot)
HXDLIN(2697) lime_cairo_font_options_get_antialias = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2699_boot)
HXDLIN(2699) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_get_hint_metrics",24,e1,9b,00),HX_("oi",1a,61,00,00),false);
HXDLIN(2699) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2699_boot)
HXDLIN(2699) lime_cairo_font_options_get_hint_metrics = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2701_boot)
HXDLIN(2701) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_get_hint_style",d2,b9,3d,00),HX_("oi",1a,61,00,00),false);
HXDLIN(2701) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2701_boot)
HXDLIN(2701) lime_cairo_font_options_get_hint_style = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2703_boot)
HXDLIN(2703) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_get_subpixel_order",6e,5e,52,fe),HX_("oi",1a,61,00,00),false);
HXDLIN(2703) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2703_boot)
HXDLIN(2703) lime_cairo_font_options_get_subpixel_order = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2705_boot)
HXDLIN(2705) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_set_antialias",41,5e,93,38),HX_("oiv",1c,96,54,00),false);
HXDLIN(2705) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2705_boot)
HXDLIN(2705) lime_cairo_font_options_set_antialias = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2707_boot)
HXDLIN(2707) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_set_hint_metrics",98,ce,dd,56),HX_("oiv",1c,96,54,00),false);
HXDLIN(2707) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2707_boot)
HXDLIN(2707) lime_cairo_font_options_set_hint_metrics = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2709_boot)
HXDLIN(2709) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_set_hint_style",46,a2,5d,20),HX_("oiv",1c,96,54,00),false);
HXDLIN(2709) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2709_boot)
HXDLIN(2709) lime_cairo_font_options_set_hint_style = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2711_boot)
HXDLIN(2711) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_font_options_set_subpixel_order",e2,90,01,db),HX_("oiv",1c,96,54,00),false);
HXDLIN(2711) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2711_boot)
HXDLIN(2711) lime_cairo_font_options_set_subpixel_order = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2713_boot)
HXDLIN(2713) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_ft_font_face_create",de,6b,31,70),HX_("oio",15,96,54,00),false);
HXDLIN(2713) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2713_boot)
HXDLIN(2713) lime_cairo_ft_font_face_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2715_boot)
HXDLIN(2715) ::cpp::Function< ::hx::Object * (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_create",33,6e,fc,ce),HX_("iiio",c6,6f,b7,45),false);
HXDLIN(2715) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2715_boot)
HXDLIN(2715) lime_cairo_image_surface_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2717_boot)
HXDLIN(2717) ::cpp::Function< ::hx::Object * (Float,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_create_for_data",2c,35,7d,63),HX_("diiiio",cb,6d,7a,b6),false);
HXDLIN(2717) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2717_boot)
HXDLIN(2717) lime_cairo_image_surface_create_for_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2719_boot)
HXDLIN(2719) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_get_data",aa,94,c4,6f),HX_("od",15,61,00,00),false);
HXDLIN(2719) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2719_boot)
HXDLIN(2719) lime_cairo_image_surface_get_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2721_boot)
HXDLIN(2721) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_get_format",b7,6d,9c,34),HX_("oi",1a,61,00,00),false);
HXDLIN(2721) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2721_boot)
HXDLIN(2721) lime_cairo_image_surface_get_format = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2723_boot)
HXDLIN(2723) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_get_height",67,e6,59,39),HX_("oi",1a,61,00,00),false);
HXDLIN(2723) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2723_boot)
HXDLIN(2723) lime_cairo_image_surface_get_height = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2725_boot)
HXDLIN(2725) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_get_stride",99,fe,3d,48),HX_("oi",1a,61,00,00),false);
HXDLIN(2725) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2725_boot)
HXDLIN(2725) lime_cairo_image_surface_get_stride = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2727_boot)
HXDLIN(2727) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_image_surface_get_width",86,27,18,52),HX_("oi",1a,61,00,00),false);
HXDLIN(2727) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2727_boot)
HXDLIN(2727) lime_cairo_image_surface_get_width = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2729_boot)
HXDLIN(2729) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_add_color_stop_rgb",5a,49,3d,bb),HX_("oddddv",a7,9e,14,38),false);
HXDLIN(2729) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2729_boot)
HXDLIN(2729) lime_cairo_pattern_add_color_stop_rgb = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2731_boot)
HXDLIN(2731) ::cpp::Function< void ( ::hx::Object *,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_add_color_stop_rgba",c7,e5,62,1a),HX_("odddddv",41,24,f6,d9),false);
HXDLIN(2731) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2731_boot)
HXDLIN(2731) lime_cairo_pattern_add_color_stop_rgba = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2733_boot)
HXDLIN(2733) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_create_for_surface",c4,41,ff,a6),HX_("oo",20,61,00,00),false);
HXDLIN(2733) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2733_boot)
HXDLIN(2733) lime_cairo_pattern_create_for_surface = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2735_boot)
HXDLIN(2735) ::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_create_linear",f8,82,42,cf),HX_("ddddo",6f,91,77,d6),false);
HXDLIN(2735) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2735_boot)
HXDLIN(2735) lime_cairo_pattern_create_linear = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,Float,Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2737_boot)
HXDLIN(2737) ::cpp::Function< ::hx::Object * (Float,Float,Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_create_radial",f2,ef,98,93),HX_("ddddddo",ef,09,8a,10),false);
HXDLIN(2737) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2737_boot)
HXDLIN(2737) lime_cairo_pattern_create_radial = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2739_boot)
HXDLIN(2739) ::cpp::Function< ::hx::Object * (Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_create_rgb",1a,90,6b,ce),HX_("dddo",0b,8f,65,42),false);
HXDLIN(2739) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2739_boot)
HXDLIN(2739) lime_cairo_pattern_create_rgb = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2741_boot)
HXDLIN(2741) ::cpp::Function< ::hx::Object * (Float,Float,Float,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_create_rgba",07,87,b2,cf),HX_("ddddo",6f,91,77,d6),false);
HXDLIN(2741) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2741_boot)
HXDLIN(2741) lime_cairo_pattern_create_rgba = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2743_boot)
HXDLIN(2743) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_get_color_stop_count",47,7e,23,f0),HX_("oi",1a,61,00,00),false);
HXDLIN(2743) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2743_boot)
HXDLIN(2743) lime_cairo_pattern_get_color_stop_count = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2745_boot)
HXDLIN(2745) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_get_extend",b3,1c,37,1f),HX_("oi",1a,61,00,00),false);
HXDLIN(2745) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2745_boot)
HXDLIN(2745) lime_cairo_pattern_get_extend = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2747_boot)
HXDLIN(2747) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_get_filter",91,6a,51,dd),HX_("oi",1a,61,00,00),false);
HXDLIN(2747) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2747_boot)
HXDLIN(2747) lime_cairo_pattern_get_filter = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2749_boot)
HXDLIN(2749) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_get_matrix",1a,81,e4,13),HX_("oo",20,61,00,00),false);
HXDLIN(2749) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2749_boot)
HXDLIN(2749) lime_cairo_pattern_get_matrix = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2751_boot)
HXDLIN(2751) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_set_extend",27,bb,b4,22),HX_("oiv",1c,96,54,00),false);
HXDLIN(2751) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2751_boot)
HXDLIN(2751) lime_cairo_pattern_set_extend = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2753_boot)
HXDLIN(2753) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_set_filter",05,09,cf,e0),HX_("oiv",1c,96,54,00),false);
HXDLIN(2753) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2753_boot)
HXDLIN(2753) lime_cairo_pattern_set_filter = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2755_boot)
HXDLIN(2755) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_pattern_set_matrix",8e,1f,62,17),HX_("oov",56,9b,54,00),false);
HXDLIN(2755) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2755_boot)
HXDLIN(2755) lime_cairo_pattern_set_matrix = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2757_boot)
HXDLIN(2757) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_cairo_surface_flush",51,85,bf,ed),HX_("ov",27,61,00,00),false);
HXDLIN(2757) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_2757_boot)
HXDLIN(2757) lime_cairo_surface_flush = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (::String,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3340_boot)
HXDLIN(3340) ::cpp::Function< Float (::String,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_getdate",db,3c,06,67),HX_("sdd",b3,9a,57,00),false);
HXDLIN(3340) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3340_boot)
HXDLIN(3340) lime_curl_getdate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3341_boot)
HXDLIN(3341) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_global_cleanup",d1,6f,f2,40),HX_("v",76,00,00,00),false);
HXDLIN(3341) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3341_boot)
HXDLIN(3341) lime_curl_global_cleanup = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3342_boot)
HXDLIN(3342) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_global_init",43,79,fb,d4),HX_("ii",e0,5b,00,00),false);
HXDLIN(3342) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3342_boot)
HXDLIN(3342) lime_curl_global_init = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3343_boot)
HXDLIN(3343) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_version",2f,4a,eb,b9),HX_("o",6f,00,00,00),false);
HXDLIN(3343) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3343_boot)
HXDLIN(3343) lime_curl_version = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3344_boot)
HXDLIN(3344) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_version_info",be,bf,7a,9e),HX_("io",e6,5b,00,00),false);
HXDLIN(3344) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3344_boot)
HXDLIN(3344) lime_curl_version_info = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3345_boot)
HXDLIN(3345) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_cleanup",30,cd,aa,62),HX_("ov",27,61,00,00),false);
HXDLIN(3345) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3345_boot)
HXDLIN(3345) lime_curl_easy_cleanup = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3346_boot)
HXDLIN(3346) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_duphandle",b3,c0,a0,67),HX_("oo",20,61,00,00),false);
HXDLIN(3346) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3346_boot)
HXDLIN(3346) lime_curl_easy_duphandle = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3348_boot)
HXDLIN(3348) ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_escape",f5,67,b1,5f),HX_("osio",0a,4e,b6,49),false);
HXDLIN(3348) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3348_boot)
HXDLIN(3348) lime_curl_easy_escape = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3350_boot)
HXDLIN(3350) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_flush",d0,88,a5,06),HX_("ov",27,61,00,00),false);
HXDLIN(3350) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3350_boot)
HXDLIN(3350) lime_curl_easy_flush = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3351_boot)
HXDLIN(3351) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_getinfo",10,7d,cd,e4),HX_("oio",15,96,54,00),false);
HXDLIN(3351) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3351_boot)
HXDLIN(3351) lime_curl_easy_getinfo = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3353_boot)
HXDLIN(3353) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_init",84,9a,e4,65),HX_("o",6f,00,00,00),false);
HXDLIN(3353) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3353_boot)
HXDLIN(3353) lime_curl_easy_init = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3354_boot)
HXDLIN(3354) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_pause",02,fd,61,c1),HX_("oii",0f,96,54,00),false);
HXDLIN(3354) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3354_boot)
HXDLIN(3354) lime_curl_easy_pause = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3355_boot)
HXDLIN(3355) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_perform",ad,a9,46,32),HX_("oi",1a,61,00,00),false);
HXDLIN(3355) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3355_boot)
HXDLIN(3355) lime_curl_easy_perform = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3356_boot)
HXDLIN(3356) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_recv",9a,ac,d0,6b),HX_("ooiii",69,1b,29,33),false);
HXDLIN(3356) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3356_boot)
HXDLIN(3356) lime_curl_easy_recv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3358_boot)
HXDLIN(3358) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_reset",db,6f,d2,ea),HX_("ov",27,61,00,00),false);
HXDLIN(3358) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3358_boot)
HXDLIN(3358) lime_curl_easy_reset = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3359_boot)
HXDLIN(3359) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_send",bc,ec,79,6c),HX_("ooiii",69,1b,29,33),false);
HXDLIN(3359) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3359_boot)
HXDLIN(3359) lime_curl_easy_send = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3361_boot)
HXDLIN(3361) ::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_setopt",45,96,5b,f4),HX_("oiooi",6f,66,36,2f),false);
HXDLIN(3361) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3361_boot)
HXDLIN(3361) lime_curl_easy_setopt = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3363_boot)
HXDLIN(3363) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_strerror",eb,2a,7c,55),HX_("io",e6,5b,00,00),false);
HXDLIN(3363) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3363_boot)
HXDLIN(3363) lime_curl_easy_strerror = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3364_boot)
HXDLIN(3364) ::cpp::Function< ::hx::Object * ( ::hx::Object *,::String,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_easy_unescape",0e,9c,61,a1),HX_("osiio",eb,f5,cd,35),false);
HXDLIN(3364) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3364_boot)
HXDLIN(3364) lime_curl_easy_unescape = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3366_boot)
HXDLIN(3366) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_init",1f,9b,4b,19),HX_("o",6f,00,00,00),false);
HXDLIN(3366) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3366_boot)
HXDLIN(3366) lime_curl_multi_init = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3367_boot)
HXDLIN(3367) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_add_handle",95,ee,87,1c),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(3367) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3367_boot)
HXDLIN(3367) lime_curl_multi_add_handle = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3369_boot)
HXDLIN(3369) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_get_running_handles",33,e6,dc,58),HX_("oi",1a,61,00,00),false);
HXDLIN(3369) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3369_boot)
HXDLIN(3369) lime_curl_multi_get_running_handles = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3371_boot)
HXDLIN(3371) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_info_read",98,e9,01,8f),HX_("oo",20,61,00,00),false);
HXDLIN(3371) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3371_boot)
HXDLIN(3371) lime_curl_multi_info_read = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3373_boot)
HXDLIN(3373) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_perform",f2,bb,b3,bf),HX_("oi",1a,61,00,00),false);
HXDLIN(3373) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3373_boot)
HXDLIN(3373) lime_curl_multi_perform = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3374_boot)
HXDLIN(3374) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_remove_handle",94,6f,9e,9d),HX_("ooi",49,9b,54,00),false);
HXDLIN(3374) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3374_boot)
HXDLIN(3374) lime_curl_multi_remove_handle = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3376_boot)
HXDLIN(3376) ::cpp::Function< int ( ::hx::Object *,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_setopt",a0,33,f8,8f),HX_("oioi",b4,bc,ae,49),false);
HXDLIN(3376) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3376_boot)
HXDLIN(3376) lime_curl_multi_setopt = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3378_boot)
HXDLIN(3378) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_curl_multi_wait",84,ba,82,22),HX_("oii",0f,96,54,00),false);
HXDLIN(3378) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_3378_boot)
HXDLIN(3378) lime_curl_multi_wait = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4092_boot)
HXDLIN(4092) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_active_texture",52,df,77,b3),HX_("iv",ed,5b,00,00),false);
HXDLIN(4092) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4092_boot)
HXDLIN(4092) lime_gl_active_texture = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4093_boot)
HXDLIN(4093) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_attach_shader",6f,78,09,06),HX_("iiv",96,08,50,00),false);
HXDLIN(4093) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4093_boot)
HXDLIN(4093) lime_gl_attach_shader = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4094_boot)
HXDLIN(4094) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_begin_query",02,de,10,34),HX_("iiv",96,08,50,00),false);
HXDLIN(4094) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4094_boot)
HXDLIN(4094) lime_gl_begin_query = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4095_boot)
HXDLIN(4095) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_begin_transform_feedback",be,35,71,43),HX_("iv",ed,5b,00,00),false);
HXDLIN(4095) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4095_boot)
HXDLIN(4095) lime_gl_begin_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4097_boot)
HXDLIN(4097) ::cpp::Function< void (int,int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_attrib_location",78,d0,23,1a),HX_("iisv",83,78,b7,45),false);
HXDLIN(4097) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4097_boot)
HXDLIN(4097) lime_gl_bind_attrib_location = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4099_boot)
HXDLIN(4099) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_buffer",52,57,d9,e2),HX_("iiv",96,08,50,00),false);
HXDLIN(4099) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4099_boot)
HXDLIN(4099) lime_gl_bind_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4100_boot)
HXDLIN(4100) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_buffer_base",5e,e3,50,f4),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4100) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4100_boot)
HXDLIN(4100) lime_gl_bind_buffer_base = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4102_boot)
HXDLIN(4102) ::cpp::Function< void (int,int,int,Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_buffer_range",d0,8d,db,08),HX_("iiidiv",68,70,3f,b6),false);
HXDLIN(4102) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4102_boot)
HXDLIN(4102) lime_gl_bind_buffer_range = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4104_boot)
HXDLIN(4104) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_framebuffer",5b,d1,58,70),HX_("iiv",96,08,50,00),false);
HXDLIN(4104) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4104_boot)
HXDLIN(4104) lime_gl_bind_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4105_boot)
HXDLIN(4105) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_renderbuffer",a8,70,ea,63),HX_("iiv",96,08,50,00),false);
HXDLIN(4105) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4105_boot)
HXDLIN(4105) lime_gl_bind_renderbuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4107_boot)
HXDLIN(4107) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_sampler",76,32,8c,6d),HX_("iiv",96,08,50,00),false);
HXDLIN(4107) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4107_boot)
HXDLIN(4107) lime_gl_bind_sampler = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4108_boot)
HXDLIN(4108) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_texture",49,36,a3,88),HX_("iiv",96,08,50,00),false);
HXDLIN(4108) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4108_boot)
HXDLIN(4108) lime_gl_bind_texture = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4109_boot)
HXDLIN(4109) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_transform_feedback",4a,2a,cb,62),HX_("iiv",96,08,50,00),false);
HXDLIN(4109) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4109_boot)
HXDLIN(4109) lime_gl_bind_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4111_boot)
HXDLIN(4111) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_bind_vertex_array",10,57,8b,e5),HX_("iv",ed,5b,00,00),false);
HXDLIN(4111) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4111_boot)
HXDLIN(4111) lime_gl_bind_vertex_array = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4112_boot)
HXDLIN(4112) ::cpp::Function< void (float,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_blend_color",85,d0,ce,3a),HX_("ffffv",f6,ad,98,fe),false);
HXDLIN(4112) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4112_boot)
HXDLIN(4112) lime_gl_blend_color = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4114_boot)
HXDLIN(4114) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_blend_equation",aa,fd,08,1f),HX_("iv",ed,5b,00,00),false);
HXDLIN(4114) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4114_boot)
HXDLIN(4114) lime_gl_blend_equation = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4115_boot)
HXDLIN(4115) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_blend_equation_separate",d8,13,95,58),HX_("iiv",96,08,50,00),false);
HXDLIN(4115) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4115_boot)
HXDLIN(4115) lime_gl_blend_equation_separate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4117_boot)
HXDLIN(4117) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_blend_func",62,46,02,e9),HX_("iiv",96,08,50,00),false);
HXDLIN(4117) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4117_boot)
HXDLIN(4117) lime_gl_blend_func = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4118_boot)
HXDLIN(4118) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_blend_func_separate",20,f4,b8,2e),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4118) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4118_boot)
HXDLIN(4118) lime_gl_blend_func_separate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4120_boot)
HXDLIN(4120) ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_blit_framebuffer",d3,e7,f0,bd),HX_("iiiiiiiiiiv",16,f9,0a,79),false);
HXDLIN(4120) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4120_boot)
HXDLIN(4120) lime_gl_blit_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4122_boot)
HXDLIN(4122) ::cpp::Function< void (int,int,Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_buffer_data",d9,31,40,74),HX_("iidiv",71,8d,c6,ba),false);
HXDLIN(4122) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4122_boot)
HXDLIN(4122) lime_gl_buffer_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4124_boot)
HXDLIN(4124) ::cpp::Function< void (int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_buffer_sub_data",b8,37,6c,ab),HX_("iiidv",5b,54,ca,ba),false);
HXDLIN(4124) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4124_boot)
HXDLIN(4124) lime_gl_buffer_sub_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4126_boot)
HXDLIN(4126) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_check_framebuffer_status",0b,35,e1,ea),HX_("ii",e0,5b,00,00),false);
HXDLIN(4126) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4126_boot)
HXDLIN(4126) lime_gl_check_framebuffer_status = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4128_boot)
HXDLIN(4128) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear",5d,92,00,3b),HX_("iv",ed,5b,00,00),false);
HXDLIN(4128) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4128_boot)
HXDLIN(4128) lime_gl_clear = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4129_boot)
HXDLIN(4129) ::cpp::Function< void (int,int,float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_bufferfi",a5,07,ff,ac),HX_("iifiv",f3,11,c8,ba),false);
HXDLIN(4129) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4129_boot)
HXDLIN(4129) lime_gl_clear_bufferfi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4131_boot)
HXDLIN(4131) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_bufferfv",b2,07,ff,ac),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4131) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4131_boot)
HXDLIN(4131) lime_gl_clear_bufferfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4133_boot)
HXDLIN(4133) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_bufferiv",4f,0a,ff,ac),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4133) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4133_boot)
HXDLIN(4133) lime_gl_clear_bufferiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4135_boot)
HXDLIN(4135) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_bufferuiv",00,0b,33,b2),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4135) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4135_boot)
HXDLIN(4135) lime_gl_clear_bufferuiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4137_boot)
HXDLIN(4137) ::cpp::Function< int ( ::hx::Object *,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_client_wait_sync",a1,96,ad,b8),HX_("oiiii",af,d3,31,2f),false);
HXDLIN(4137) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4137_boot)
HXDLIN(4137) lime_gl_client_wait_sync = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4139_boot)
HXDLIN(4139) ::cpp::Function< void (float,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_color",c1,ee,49,1a),HX_("ffffv",f6,ad,98,fe),false);
HXDLIN(4139) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4139_boot)
HXDLIN(4139) lime_gl_clear_color = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4141_boot)
HXDLIN(4141) ::cpp::Function< void (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_depthf",e5,26,69,8d),HX_("fv",50,59,00,00),false);
HXDLIN(4141) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4141_boot)
HXDLIN(4141) lime_gl_clear_depthf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4142_boot)
HXDLIN(4142) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_clear_stencil",da,ce,51,44),HX_("iv",ed,5b,00,00),false);
HXDLIN(4142) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4142_boot)
HXDLIN(4142) lime_gl_clear_stencil = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (bool,bool,bool,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4143_boot)
HXDLIN(4143) ::cpp::Function< void (bool,bool,bool,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_color_mask",b8,f1,a7,79),HX_("bbbbv",f6,74,56,ae),false);
HXDLIN(4143) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4143_boot)
HXDLIN(4143) lime_gl_color_mask = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4145_boot)
HXDLIN(4145) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_compile_shader",e1,d4,68,7c),HX_("iv",ed,5b,00,00),false);
HXDLIN(4145) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4145_boot)
HXDLIN(4145) lime_gl_compile_shader = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4146_boot)
HXDLIN(4146) ::cpp::Function< void (int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_compressed_tex_image_2d",bc,70,b8,76),HX_("iiiiiiidv",9b,cc,45,bf),false);
HXDLIN(4146) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4146_boot)
HXDLIN(4146) lime_gl_compressed_tex_image_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4148_boot)
HXDLIN(4148) ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_compressed_tex_image_3d",9b,71,b8,76),HX_("iiiiiiiidv",12,f7,d0,9d),false);
HXDLIN(4148) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4148_boot)
HXDLIN(4148) lime_gl_compressed_tex_image_3d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4150_boot)
HXDLIN(4150) ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_compressed_tex_sub_image_2d",9b,19,2d,07),HX_("iiiiiiiidv",12,f7,d0,9d),false);
HXDLIN(4150) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4150_boot)
HXDLIN(4150) lime_gl_compressed_tex_sub_image_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4152_boot)
HXDLIN(4152) ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_compressed_tex_sub_image_3d",7a,1a,2d,07),HX_("iiiiiiiiiidv",f2,ea,8e,70),false);
HXDLIN(4152) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4152_boot)
HXDLIN(4152) lime_gl_compressed_tex_sub_image_3d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float,Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4154_boot)
HXDLIN(4154) ::cpp::Function< void (int,int,Float,Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_copy_buffer_sub_data",4e,b4,15,e7),HX_("iiddiv",4d,5f,f1,b2),false);
HXDLIN(4154) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4154_boot)
HXDLIN(4154) lime_gl_copy_buffer_sub_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4156_boot)
HXDLIN(4156) ::cpp::Function< void (int,int,int,int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_copy_tex_image_2d",08,15,17,3a),HX_("iiiiiiiiv",f6,d0,45,bf),false);
HXDLIN(4156) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4156_boot)
HXDLIN(4156) lime_gl_copy_tex_image_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4158_boot)
HXDLIN(4158) ::cpp::Function< void (int,int,int,int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_copy_tex_sub_image_2d",e7,d3,21,4b),HX_("iiiiiiiiv",f6,d0,45,bf),false);
HXDLIN(4158) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4158_boot)
HXDLIN(4158) lime_gl_copy_tex_sub_image_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4160_boot)
HXDLIN(4160) ::cpp::Function< void (int,int,int,int,int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_copy_tex_sub_image_3d",c6,d4,21,4b),HX_("iiiiiiiiiv",6d,fb,d0,9d),false);
HXDLIN(4160) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4160_boot)
HXDLIN(4160) lime_gl_copy_tex_sub_image_3d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4162_boot)
HXDLIN(4162) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_buffer",f3,ef,e7,8a),HX_("i",69,00,00,00),false);
HXDLIN(4162) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4162_boot)
HXDLIN(4162) lime_gl_create_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4163_boot)
HXDLIN(4163) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_framebuffer",1a,51,d8,73),HX_("i",69,00,00,00),false);
HXDLIN(4163) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4163_boot)
HXDLIN(4163) lime_gl_create_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4164_boot)
HXDLIN(4164) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_program",31,ac,72,42),HX_("i",69,00,00,00),false);
HXDLIN(4164) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4164_boot)
HXDLIN(4164) lime_gl_create_program = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4165_boot)
HXDLIN(4165) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_query",75,37,ce,ea),HX_("i",69,00,00,00),false);
HXDLIN(4165) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4165_boot)
HXDLIN(4165) lime_gl_create_query = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4166_boot)
HXDLIN(4166) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_renderbuffer",09,b8,fa,6f),HX_("i",69,00,00,00),false);
HXDLIN(4166) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4166_boot)
HXDLIN(4166) lime_gl_create_renderbuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4167_boot)
HXDLIN(4167) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_sampler",b5,26,43,d2),HX_("i",69,00,00,00),false);
HXDLIN(4167) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4167_boot)
HXDLIN(4167) lime_gl_create_sampler = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4168_boot)
HXDLIN(4168) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_shader",18,f2,73,d7),HX_("ii",e0,5b,00,00),false);
HXDLIN(4168) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4168_boot)
HXDLIN(4168) lime_gl_create_shader = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4169_boot)
HXDLIN(4169) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_texture",88,2a,5a,ed),HX_("i",69,00,00,00),false);
HXDLIN(4169) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4169_boot)
HXDLIN(4169) lime_gl_create_texture = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4170_boot)
HXDLIN(4170) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_transform_feedback",6b,b0,6c,10),HX_("i",69,00,00,00),false);
HXDLIN(4170) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4170_boot)
HXDLIN(4170) lime_gl_create_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4172_boot)
HXDLIN(4172) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_create_vertex_array",71,9e,9b,f1),HX_("i",69,00,00,00),false);
HXDLIN(4172) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4172_boot)
HXDLIN(4172) lime_gl_create_vertex_array = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4173_boot)
HXDLIN(4173) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_cull_face",5a,6e,d7,a6),HX_("iv",ed,5b,00,00),false);
HXDLIN(4173) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4173_boot)
HXDLIN(4173) lime_gl_cull_face = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4174_boot)
HXDLIN(4174) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_buffer",a4,aa,2e,01),HX_("iv",ed,5b,00,00),false);
HXDLIN(4174) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4174_boot)
HXDLIN(4174) lime_gl_delete_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4175_boot)
HXDLIN(4175) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_framebuffer",c9,34,1a,a6),HX_("iv",ed,5b,00,00),false);
HXDLIN(4175) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4175_boot)
HXDLIN(4175) lime_gl_delete_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4176_boot)
HXDLIN(4176) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_program",60,4c,0f,4a),HX_("iv",ed,5b,00,00),false);
HXDLIN(4176) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4176_boot)
HXDLIN(4176) lime_gl_delete_program = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4177_boot)
HXDLIN(4177) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_query",e4,1d,11,2f),HX_("iv",ed,5b,00,00),false);
HXDLIN(4177) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4177_boot)
HXDLIN(4177) lime_gl_delete_query = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4178_boot)
HXDLIN(4178) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_renderbuffer",7a,0d,60,37),HX_("iv",ed,5b,00,00),false);
HXDLIN(4178) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4178_boot)
HXDLIN(4178) lime_gl_delete_renderbuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4179_boot)
HXDLIN(4179) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_sampler",e4,c6,df,d9),HX_("iv",ed,5b,00,00),false);
HXDLIN(4179) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4179_boot)
HXDLIN(4179) lime_gl_delete_sampler = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4180_boot)
HXDLIN(4180) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_shader",c9,ac,ba,4d),HX_("iv",ed,5b,00,00),false);
HXDLIN(4180) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4180_boot)
HXDLIN(4180) lime_gl_delete_shader = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4181_boot)
HXDLIN(4181) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_sync",ff,36,e6,70),HX_("ov",27,61,00,00),false);
HXDLIN(4181) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4181_boot)
HXDLIN(4181) lime_gl_delete_sync = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4182_boot)
HXDLIN(4182) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_texture",b7,ca,f6,f4),HX_("iv",ed,5b,00,00),false);
HXDLIN(4182) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4182_boot)
HXDLIN(4182) lime_gl_delete_texture = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4183_boot)
HXDLIN(4183) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_transform_feedback",9c,30,f9,ec),HX_("iv",ed,5b,00,00),false);
HXDLIN(4183) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4183_boot)
HXDLIN(4183) lime_gl_delete_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4185_boot)
HXDLIN(4185) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_delete_vertex_array",e2,f3,00,b9),HX_("iv",ed,5b,00,00),false);
HXDLIN(4185) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4185_boot)
HXDLIN(4185) lime_gl_delete_vertex_array = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4186_boot)
HXDLIN(4186) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_depth_func",70,78,16,ad),HX_("iv",ed,5b,00,00),false);
HXDLIN(4186) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4186_boot)
HXDLIN(4186) lime_gl_depth_func = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4187_boot)
HXDLIN(4187) ::cpp::Function< void (bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_depth_mask",18,ce,a7,b1),HX_("bv",d4,55,00,00),false);
HXDLIN(4187) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4187_boot)
HXDLIN(4187) lime_gl_depth_mask = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4188_boot)
HXDLIN(4188) ::cpp::Function< void (float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_depth_rangef",35,90,41,42),HX_("ffv",36,bf,4d,00),false);
HXDLIN(4188) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4188_boot)
HXDLIN(4188) lime_gl_depth_rangef = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4190_boot)
HXDLIN(4190) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_detach_shader",a1,84,13,fd),HX_("iiv",96,08,50,00),false);
HXDLIN(4190) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4190_boot)
HXDLIN(4190) lime_gl_detach_shader = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4191_boot)
HXDLIN(4191) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_disable",b8,5e,23,70),HX_("iv",ed,5b,00,00),false);
HXDLIN(4191) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4191_boot)
HXDLIN(4191) lime_gl_disable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4192_boot)
HXDLIN(4192) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_disable_vertex_attrib_array",58,ba,8e,0a),HX_("iv",ed,5b,00,00),false);
HXDLIN(4192) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4192_boot)
HXDLIN(4192) lime_gl_disable_vertex_attrib_array = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4194_boot)
HXDLIN(4194) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_draw_arrays",a5,43,0c,17),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4194) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4194_boot)
HXDLIN(4194) lime_gl_draw_arrays = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4195_boot)
HXDLIN(4195) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_draw_arrays_instanced",d5,22,36,ca),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4195) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4195_boot)
HXDLIN(4195) lime_gl_draw_arrays_instanced = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4197_boot)
HXDLIN(4197) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_draw_buffers",28,66,c6,8a),HX_("ov",27,61,00,00),false);
HXDLIN(4197) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4197_boot)
HXDLIN(4197) lime_gl_draw_buffers = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4198_boot)
HXDLIN(4198) ::cpp::Function< void (int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_draw_elements",e2,d1,98,b9),HX_("iiidv",5b,54,ca,ba),false);
HXDLIN(4198) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4198_boot)
HXDLIN(4198) lime_gl_draw_elements = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4200_boot)
HXDLIN(4200) ::cpp::Function< void (int,int,int,Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_draw_elements_instanced",52,bf,3f,a8),HX_("iiidiv",68,70,3f,b6),false);
HXDLIN(4200) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4200_boot)
HXDLIN(4200) lime_gl_draw_elements_instanced = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4202_boot)
HXDLIN(4202) ::cpp::Function< void (int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_draw_range_elements",24,96,29,74),HX_("iiiiidv",7b,ec,90,c4),false);
HXDLIN(4202) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4202_boot)
HXDLIN(4202) lime_gl_draw_range_elements = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4204_boot)
HXDLIN(4204) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_enable",b3,43,5f,56),HX_("iv",ed,5b,00,00),false);
HXDLIN(4204) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4204_boot)
HXDLIN(4204) lime_gl_enable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4205_boot)
HXDLIN(4205) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_enable_vertex_attrib_array",d3,1e,a2,ea),HX_("iv",ed,5b,00,00),false);
HXDLIN(4205) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4205_boot)
HXDLIN(4205) lime_gl_enable_vertex_attrib_array = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4207_boot)
HXDLIN(4207) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_end_query",34,75,2d,a4),HX_("iv",ed,5b,00,00),false);
HXDLIN(4207) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4207_boot)
HXDLIN(4207) lime_gl_end_query = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4208_boot)
HXDLIN(4208) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_end_transform_feedback",4c,87,dc,33),HX_("v",76,00,00,00),false);
HXDLIN(4208) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4208_boot)
HXDLIN(4208) lime_gl_end_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4210_boot)
HXDLIN(4210) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_fence_sync",19,5b,e2,cd),HX_("iio",8f,08,50,00),false);
HXDLIN(4210) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4210_boot)
HXDLIN(4210) lime_gl_fence_sync = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4211_boot)
HXDLIN(4211) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_finish",83,d5,56,e4),HX_("v",76,00,00,00),false);
HXDLIN(4211) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4211_boot)
HXDLIN(4211) lime_gl_finish = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4212_boot)
HXDLIN(4212) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_flush",94,83,40,f5),HX_("v",76,00,00,00),false);
HXDLIN(4212) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4212_boot)
HXDLIN(4212) lime_gl_flush = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4213_boot)
HXDLIN(4213) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_framebuffer_renderbuffer",d8,1b,4b,9a),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4213) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4213_boot)
HXDLIN(4213) lime_gl_framebuffer_renderbuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4215_boot)
HXDLIN(4215) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_framebuffer_texture2D",2b,bd,7d,0a),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4215) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4215_boot)
HXDLIN(4215) lime_gl_framebuffer_texture2D = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4217_boot)
HXDLIN(4217) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_framebuffer_texture_layer",eb,7a,6b,51),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4217) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4217_boot)
HXDLIN(4217) lime_gl_framebuffer_texture_layer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4219_boot)
HXDLIN(4219) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_front_face",63,a0,73,7d),HX_("iv",ed,5b,00,00),false);
HXDLIN(4219) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4219_boot)
HXDLIN(4219) lime_gl_front_face = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4220_boot)
HXDLIN(4220) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_generate_mipmap",62,a5,38,e6),HX_("iv",ed,5b,00,00),false);
HXDLIN(4220) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4220_boot)
HXDLIN(4220) lime_gl_generate_mipmap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4221_boot)
HXDLIN(4221) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_active_attrib",0a,40,b7,d1),HX_("iio",8f,08,50,00),false);
HXDLIN(4221) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4221_boot)
HXDLIN(4221) lime_gl_get_active_attrib = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4223_boot)
HXDLIN(4223) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_active_uniform",74,90,d7,2a),HX_("iio",8f,08,50,00),false);
HXDLIN(4223) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4223_boot)
HXDLIN(4223) lime_gl_get_active_uniform = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4225_boot)
HXDLIN(4225) ::cpp::Function< int (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_active_uniform_blocki",27,66,77,4f),HX_("iiii",c0,6f,b7,45),false);
HXDLIN(4225) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4225_boot)
HXDLIN(4225) lime_gl_get_active_uniform_blocki = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4227_boot)
HXDLIN(4227) ::cpp::Function< void (int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_active_uniform_blockiv",6f,fc,01,39),HX_("iiidv",5b,54,ca,ba),false);
HXDLIN(4227) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4227_boot)
HXDLIN(4227) lime_gl_get_active_uniform_blockiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4229_boot)
HXDLIN(4229) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_active_uniform_block_name",e8,aa,c0,b1),HX_("iio",8f,08,50,00),false);
HXDLIN(4229) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4229_boot)
HXDLIN(4229) lime_gl_get_active_uniform_block_name = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4231_boot)
HXDLIN(4231) ::cpp::Function< void (int, ::hx::Object *,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_active_uniformsiv",2c,cf,46,71),HX_("ioidv",15,9c,c1,be),false);
HXDLIN(4231) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4231_boot)
HXDLIN(4231) lime_gl_get_active_uniformsiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4233_boot)
HXDLIN(4233) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_attached_shaders",cc,1c,b8,0d),HX_("io",e6,5b,00,00),false);
HXDLIN(4233) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4233_boot)
HXDLIN(4233) lime_gl_get_attached_shaders = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4235_boot)
HXDLIN(4235) ::cpp::Function< int (int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_attrib_location",f1,00,cb,a5),HX_("isi",3f,11,50,00),false);
HXDLIN(4235) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4235_boot)
HXDLIN(4235) lime_gl_get_attrib_location = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4237_boot)
HXDLIN(4237) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_boolean",8f,e7,a6,78),HX_("ib",d9,5b,00,00),false);
HXDLIN(4237) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4237_boot)
HXDLIN(4237) lime_gl_get_boolean = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4238_boot)
HXDLIN(4238) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_booleanv",07,b6,63,19),HX_("idv",3b,04,50,00),false);
HXDLIN(4238) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4238_boot)
HXDLIN(4238) lime_gl_get_booleanv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4240_boot)
HXDLIN(4240) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_buffer_parameteri",66,b2,90,b3),HX_("iii",89,08,50,00),false);
HXDLIN(4240) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4240_boot)
HXDLIN(4240) lime_gl_get_buffer_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4242_boot)
HXDLIN(4242) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_buffer_parameteri64v",d2,78,ff,d1),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4242) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4242_boot)
HXDLIN(4242) lime_gl_get_buffer_parameteri64v = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4244_boot)
HXDLIN(4244) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_buffer_parameteriv",50,67,0b,6b),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4244) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4244_boot)
HXDLIN(4244) lime_gl_get_buffer_parameteriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4246_boot)
HXDLIN(4246) ::cpp::Function< Float (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_buffer_pointerv",5f,3b,42,e0),HX_("iid",84,08,50,00),false);
HXDLIN(4246) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4246_boot)
HXDLIN(4246) lime_gl_get_buffer_pointerv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4248_boot)
HXDLIN(4248) ::cpp::Function< void (int,Float,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_buffer_sub_data",cf,ae,41,0b),HX_("ididv",40,43,7c,b7),false);
HXDLIN(4248) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4248_boot)
HXDLIN(4248) lime_gl_get_buffer_sub_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4250_boot)
HXDLIN(4250) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_context_attributes",e0,c6,c6,3e),HX_("o",6f,00,00,00),false);
HXDLIN(4250) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4250_boot)
HXDLIN(4250) lime_gl_get_context_attributes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4252_boot)
HXDLIN(4252) ::cpp::Function< int () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_error",ef,f0,e0,f5),HX_("i",69,00,00,00),false);
HXDLIN(4252) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4252_boot)
HXDLIN(4252) lime_gl_get_error = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4253_boot)
HXDLIN(4253) ::cpp::Function< ::hx::Object * (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_extension",26,d8,5e,d7),HX_("so",9c,64,00,00),false);
HXDLIN(4253) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4253_boot)
HXDLIN(4253) lime_gl_get_extension = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4254_boot)
HXDLIN(4254) ::cpp::Function< float (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_float",c3,ea,4d,85),HX_("if",dd,5b,00,00),false);
HXDLIN(4254) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4254_boot)
HXDLIN(4254) lime_gl_get_float = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4255_boot)
HXDLIN(4255) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_floatv",53,80,df,1e),HX_("idv",3b,04,50,00),false);
HXDLIN(4255) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4255_boot)
HXDLIN(4255) lime_gl_get_floatv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4257_boot)
HXDLIN(4257) ::cpp::Function< int (int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_frag_data_location",96,e5,26,70),HX_("isi",3f,11,50,00),false);
HXDLIN(4257) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4257_boot)
HXDLIN(4257) lime_gl_get_frag_data_location = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4259_boot)
HXDLIN(4259) ::cpp::Function< int (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_framebuffer_attachment_parameteri",51,62,ed,59),HX_("iiii",c0,6f,b7,45),false);
HXDLIN(4259) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4259_boot)
HXDLIN(4259) lime_gl_get_framebuffer_attachment_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4261_boot)
HXDLIN(4261) ::cpp::Function< void (int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_framebuffer_attachment_parameteriv",05,a5,c8,55),HX_("iiidv",5b,54,ca,ba),false);
HXDLIN(4261) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4261_boot)
HXDLIN(4261) lime_gl_get_framebuffer_attachment_parameteriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4263_boot)
HXDLIN(4263) ::cpp::Function< int (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_integer",a5,ba,c3,11),HX_("ii",e0,5b,00,00),false);
HXDLIN(4263) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4263_boot)
HXDLIN(4263) lime_gl_get_integer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4264_boot)
HXDLIN(4264) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_integer64v",f3,e1,05,89),HX_("idv",3b,04,50,00),false);
HXDLIN(4264) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4264_boot)
HXDLIN(4264) lime_gl_get_integer64v = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4266_boot)
HXDLIN(4266) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_integer64i_v",9d,fa,ae,3f),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4266) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4266_boot)
HXDLIN(4266) lime_gl_get_integer64i_v = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4268_boot)
HXDLIN(4268) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_integerv",31,96,7f,79),HX_("idv",3b,04,50,00),false);
HXDLIN(4268) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4268_boot)
HXDLIN(4268) lime_gl_get_integerv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4270_boot)
HXDLIN(4270) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_integeri_v",5b,ba,2c,89),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4270) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4270_boot)
HXDLIN(4270) lime_gl_get_integeri_v = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4272_boot)
HXDLIN(4272) ::cpp::Function< void (int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_internalformativ",5a,81,a0,26),HX_("iiiidv",52,37,43,b6),false);
HXDLIN(4272) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4272_boot)
HXDLIN(4272) lime_gl_get_internalformativ = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4274_boot)
HXDLIN(4274) ::cpp::Function< void (int,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_program_binary",95,19,be,d8),HX_("iiov",07,75,b7,45),false);
HXDLIN(4274) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4274_boot)
HXDLIN(4274) lime_gl_get_program_binary = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4276_boot)
HXDLIN(4276) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_program_info_log",87,8b,1c,48),HX_("io",e6,5b,00,00),false);
HXDLIN(4276) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4276_boot)
HXDLIN(4276) lime_gl_get_program_info_log = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4278_boot)
HXDLIN(4278) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_programi",9e,36,7d,de),HX_("iii",89,08,50,00),false);
HXDLIN(4278) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4278_boot)
HXDLIN(4278) lime_gl_get_programi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4279_boot)
HXDLIN(4279) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_programiv",18,94,12,cf),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4279) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4279_boot)
HXDLIN(4279) lime_gl_get_programiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4281_boot)
HXDLIN(4281) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_queryi",5a,79,d8,ac),HX_("iii",89,08,50,00),false);
HXDLIN(4281) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4281_boot)
HXDLIN(4281) lime_gl_get_queryi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4282_boot)
HXDLIN(4282) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_queryiv",dc,b5,91,90),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4282) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4282_boot)
HXDLIN(4282) lime_gl_get_queryiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4284_boot)
HXDLIN(4284) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_query_objectui",23,9c,16,ce),HX_("iii",89,08,50,00),false);
HXDLIN(4284) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4284_boot)
HXDLIN(4284) lime_gl_get_query_objectui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4285_boot)
HXDLIN(4285) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_query_objectuiv",f3,02,b2,85),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4285) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4285_boot)
HXDLIN(4285) lime_gl_get_query_objectuiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4287_boot)
HXDLIN(4287) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_renderbuffer_parameteri",90,dd,65,bc),HX_("iii",89,08,50,00),false);
HXDLIN(4287) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4287_boot)
HXDLIN(4287) lime_gl_get_renderbuffer_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4289_boot)
HXDLIN(4289) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_renderbuffer_parameteriv",e6,00,bc,1c),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4289) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4289_boot)
HXDLIN(4289) lime_gl_get_renderbuffer_parameteriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4291_boot)
HXDLIN(4291) ::cpp::Function< float (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_sampler_parameterf",2d,c2,93,7c),HX_("iif",86,08,50,00),false);
HXDLIN(4291) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4291_boot)
HXDLIN(4291) lime_gl_get_sampler_parameterf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4293_boot)
HXDLIN(4293) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_sampler_parameterfv",a9,25,b6,84),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4293) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4293_boot)
HXDLIN(4293) lime_gl_get_sampler_parameterfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4295_boot)
HXDLIN(4295) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_sampler_parameteri",30,c2,93,7c),HX_("iii",89,08,50,00),false);
HXDLIN(4295) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4295_boot)
HXDLIN(4295) lime_gl_get_sampler_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4297_boot)
HXDLIN(4297) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_sampler_parameteriv",46,28,b6,84),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4297) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4297_boot)
HXDLIN(4297) lime_gl_get_sampler_parameteriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4299_boot)
HXDLIN(4299) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_shader_info_log",74,08,6b,9a),HX_("io",e6,5b,00,00),false);
HXDLIN(4299) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4299_boot)
HXDLIN(4299) lime_gl_get_shader_info_log = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4301_boot)
HXDLIN(4301) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_shaderi",8b,7e,2e,5a),HX_("iii",89,08,50,00),false);
HXDLIN(4301) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4301_boot)
HXDLIN(4301) lime_gl_get_shaderi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4302_boot)
HXDLIN(4302) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_shaderiv",8b,3b,80,8e),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4302) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4302_boot)
HXDLIN(4302) lime_gl_get_shaderiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4304_boot)
HXDLIN(4304) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_shader_precision_format",d9,5f,b1,89),HX_("iio",8f,08,50,00),false);
HXDLIN(4304) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4304_boot)
HXDLIN(4304) lime_gl_get_shader_precision_format = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4306_boot)
HXDLIN(4306) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_shader_source",1c,86,a3,e7),HX_("io",e6,5b,00,00),false);
HXDLIN(4306) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4306_boot)
HXDLIN(4306) lime_gl_get_shader_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4307_boot)
HXDLIN(4307) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_string",ca,85,b9,ee),HX_("io",e6,5b,00,00),false);
HXDLIN(4307) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4307_boot)
HXDLIN(4307) lime_gl_get_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4308_boot)
HXDLIN(4308) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_stringi",5f,8b,9b,f3),HX_("iio",8f,08,50,00),false);
HXDLIN(4308) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4308_boot)
HXDLIN(4308) lime_gl_get_stringi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4309_boot)
HXDLIN(4309) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_sync_parameteri",2b,c5,94,ef),HX_("oii",0f,96,54,00),false);
HXDLIN(4309) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4309_boot)
HXDLIN(4309) lime_gl_get_sync_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4311_boot)
HXDLIN(4311) ::cpp::Function< void ( ::hx::Object *,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_sync_parameteriv",eb,c0,97,b2),HX_("oidv",2c,b3,ae,49),false);
HXDLIN(4311) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4311_boot)
HXDLIN(4311) lime_gl_get_sync_parameteriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4313_boot)
HXDLIN(4313) ::cpp::Function< float (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_tex_parameterf",2e,b7,53,ae),HX_("iif",86,08,50,00),false);
HXDLIN(4313) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4313_boot)
HXDLIN(4313) lime_gl_get_tex_parameterf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4315_boot)
HXDLIN(4315) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_tex_parameterfv",88,91,ec,da),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4315) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4315_boot)
HXDLIN(4315) lime_gl_get_tex_parameterfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4317_boot)
HXDLIN(4317) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_tex_parameteri",31,b7,53,ae),HX_("iii",89,08,50,00),false);
HXDLIN(4317) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4317_boot)
HXDLIN(4317) lime_gl_get_tex_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4318_boot)
HXDLIN(4318) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_tex_parameteriv",25,94,ec,da),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4318) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4318_boot)
HXDLIN(4318) lime_gl_get_tex_parameteriv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4320_boot)
HXDLIN(4320) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_transform_feedback_varying",62,3a,c3,2b),HX_("iio",8f,08,50,00),false);
HXDLIN(4320) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4320_boot)
HXDLIN(4320) lime_gl_get_transform_feedback_varying = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4322_boot)
HXDLIN(4322) ::cpp::Function< float (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniformf",eb,19,aa,5a),HX_("iif",86,08,50,00),false);
HXDLIN(4322) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4322_boot)
HXDLIN(4322) lime_gl_get_uniformf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4323_boot)
HXDLIN(4323) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniformfv",2b,94,2c,fa),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4323) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4323_boot)
HXDLIN(4323) lime_gl_get_uniformfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4325_boot)
HXDLIN(4325) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniformi",ee,19,aa,5a),HX_("iii",89,08,50,00),false);
HXDLIN(4325) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4325_boot)
HXDLIN(4325) lime_gl_get_uniformi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4326_boot)
HXDLIN(4326) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniformiv",c8,96,2c,fa),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4326) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4326_boot)
HXDLIN(4326) lime_gl_get_uniformiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4328_boot)
HXDLIN(4328) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniformui",2f,a1,2c,fa),HX_("iii",89,08,50,00),false);
HXDLIN(4328) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4328_boot)
HXDLIN(4328) lime_gl_get_uniformui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4329_boot)
HXDLIN(4329) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniformuiv",67,68,e0,ec),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4329) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4329_boot)
HXDLIN(4329) lime_gl_get_uniformuiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4331_boot)
HXDLIN(4331) ::cpp::Function< int (int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniform_block_index",fc,f7,fa,16),HX_("isi",3f,11,50,00),false);
HXDLIN(4331) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4331_boot)
HXDLIN(4331) lime_gl_get_uniform_block_index = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4333_boot)
HXDLIN(4333) ::cpp::Function< int (int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_uniform_location",19,0c,33,6c),HX_("isi",3f,11,50,00),false);
HXDLIN(4333) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4333_boot)
HXDLIN(4333) lime_gl_get_uniform_location = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< float (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4335_boot)
HXDLIN(4335) ::cpp::Function< float (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribf",ba,30,62,1b),HX_("iif",86,08,50,00),false);
HXDLIN(4335) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4335_boot)
HXDLIN(4335) lime_gl_get_vertex_attribf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4337_boot)
HXDLIN(4337) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribfv",7c,72,88,da),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4337) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4337_boot)
HXDLIN(4337) lime_gl_get_vertex_attribfv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4339_boot)
HXDLIN(4339) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribi",bd,30,62,1b),HX_("iii",89,08,50,00),false);
HXDLIN(4339) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4339_boot)
HXDLIN(4339) lime_gl_get_vertex_attribi = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4340_boot)
HXDLIN(4340) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribiv",19,75,88,da),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4340) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4340_boot)
HXDLIN(4340) lime_gl_get_vertex_attribiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4342_boot)
HXDLIN(4342) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribii",0c,75,88,da),HX_("iii",89,08,50,00),false);
HXDLIN(4342) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4342_boot)
HXDLIN(4342) lime_gl_get_vertex_attribii = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4344_boot)
HXDLIN(4344) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribiiv",ea,f5,dd,5c),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4344) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4344_boot)
HXDLIN(4344) lime_gl_get_vertex_attribiiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4346_boot)
HXDLIN(4346) ::cpp::Function< int (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribiui",51,00,de,5c),HX_("iii",89,08,50,00),false);
HXDLIN(4346) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4346_boot)
HXDLIN(4346) lime_gl_get_vertex_attribiui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4348_boot)
HXDLIN(4348) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attribiuiv",05,47,62,e5),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4348) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4348_boot)
HXDLIN(4348) lime_gl_get_vertex_attribiuiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4350_boot)
HXDLIN(4350) ::cpp::Function< Float (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_get_vertex_attrib_pointerv",cc,80,45,bc),HX_("iid",84,08,50,00),false);
HXDLIN(4350) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4350_boot)
HXDLIN(4350) lime_gl_get_vertex_attrib_pointerv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4352_boot)
HXDLIN(4352) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_hint",b7,26,75,cc),HX_("iiv",96,08,50,00),false);
HXDLIN(4352) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4352_boot)
HXDLIN(4352) lime_gl_hint = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4353_boot)
HXDLIN(4353) ::cpp::Function< void (int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_invalidate_framebuffer",19,9e,02,01),HX_("iov",d0,0d,50,00),false);
HXDLIN(4353) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4353_boot)
HXDLIN(4353) lime_gl_invalidate_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4355_boot)
HXDLIN(4355) ::cpp::Function< void (int, ::hx::Object *,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_invalidate_sub_framebuffer",9a,3b,16,21),HX_("ioiiiiv",10,1b,b5,2a),false);
HXDLIN(4355) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4355_boot)
HXDLIN(4355) lime_gl_invalidate_sub_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4357_boot)
HXDLIN(4357) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_buffer",c5,ec,c6,b4),HX_("ib",d9,5b,00,00),false);
HXDLIN(4357) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4357_boot)
HXDLIN(4357) lime_gl_is_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4358_boot)
HXDLIN(4358) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_enabled",1c,a1,e8,45),HX_("ib",d9,5b,00,00),false);
HXDLIN(4358) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4358_boot)
HXDLIN(4358) lime_gl_is_enabled = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4359_boot)
HXDLIN(4359) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_framebuffer",08,9b,19,ab),HX_("ib",d9,5b,00,00),false);
HXDLIN(4359) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4359_boot)
HXDLIN(4359) lime_gl_is_framebuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4360_boot)
HXDLIN(4360) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_program",1f,e7,b0,bb),HX_("ib",d9,5b,00,00),false);
HXDLIN(4360) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4360_boot)
HXDLIN(4360) lime_gl_is_program = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4361_boot)
HXDLIN(4361) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_query",e3,3a,72,b0),HX_("ib",d9,5b,00,00),false);
HXDLIN(4361) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4361_boot)
HXDLIN(4361) lime_gl_is_query = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4362_boot)
HXDLIN(4362) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_renderbuffer",5b,1e,da,91),HX_("ib",d9,5b,00,00),false);
HXDLIN(4362) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4362_boot)
HXDLIN(4362) lime_gl_is_renderbuffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4363_boot)
HXDLIN(4363) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_sampler",a3,61,81,4b),HX_("ib",d9,5b,00,00),false);
HXDLIN(4363) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4363_boot)
HXDLIN(4363) lime_gl_is_sampler = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4364_boot)
HXDLIN(4364) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_shader",ea,ee,52,01),HX_("ib",d9,5b,00,00),false);
HXDLIN(4364) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4364_boot)
HXDLIN(4364) lime_gl_is_shader = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4365_boot)
HXDLIN(4365) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_sync",e0,fe,93,c7),HX_("ob",13,61,00,00),false);
HXDLIN(4365) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4365_boot)
HXDLIN(4365) lime_gl_is_sync = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4366_boot)
HXDLIN(4366) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_texture",76,65,98,66),HX_("ib",d9,5b,00,00),false);
HXDLIN(4366) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4366_boot)
HXDLIN(4366) lime_gl_is_texture = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4367_boot)
HXDLIN(4367) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_transform_feedback",3d,a0,bc,42),HX_("ib",d9,5b,00,00),false);
HXDLIN(4367) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4367_boot)
HXDLIN(4367) lime_gl_is_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4368_boot)
HXDLIN(4368) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_is_vertex_array",c3,04,7b,13),HX_("ib",d9,5b,00,00),false);
HXDLIN(4368) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4368_boot)
HXDLIN(4368) lime_gl_is_vertex_array = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4369_boot)
HXDLIN(4369) ::cpp::Function< void (float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_line_width",6b,71,5f,53),HX_("fv",50,59,00,00),false);
HXDLIN(4369) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4369_boot)
HXDLIN(4369) lime_gl_line_width = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4370_boot)
HXDLIN(4370) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_link_program",2f,df,cf,33),HX_("iv",ed,5b,00,00),false);
HXDLIN(4370) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4370_boot)
HXDLIN(4370) lime_gl_link_program = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float (int,Float,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4371_boot)
HXDLIN(4371) ::cpp::Function< Float (int,Float,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_map_buffer_range",f1,71,1b,50),HX_("idiid",89,47,7c,b7),false);
HXDLIN(4371) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4371_boot)
HXDLIN(4371) lime_gl_map_buffer_range = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4373_boot)
HXDLIN(4373) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_object_deregister",74,d8,a1,d6),HX_("ov",27,61,00,00),false);
HXDLIN(4373) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4373_boot)
HXDLIN(4373) lime_gl_object_deregister = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4375_boot)
HXDLIN(4375) ::cpp::Function< ::hx::Object * (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_object_from_id",40,ff,06,4e),HX_("iio",8f,08,50,00),false);
HXDLIN(4375) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4375_boot)
HXDLIN(4375) lime_gl_object_from_id = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int,int, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4376_boot)
HXDLIN(4376) ::cpp::Function< ::hx::Object * (int,int, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_object_register",f3,13,aa,16),HX_("iioo",00,75,b7,45),false);
HXDLIN(4376) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4376_boot)
HXDLIN(4376) lime_gl_object_register = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4378_boot)
HXDLIN(4378) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_pause_transform_feedback",11,9d,6a,c1),HX_("v",76,00,00,00),false);
HXDLIN(4378) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4378_boot)
HXDLIN(4378) lime_gl_pause_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4380_boot)
HXDLIN(4380) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_pixel_storei",71,b2,56,3d),HX_("iiv",96,08,50,00),false);
HXDLIN(4380) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4380_boot)
HXDLIN(4380) lime_gl_pixel_storei = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4381_boot)
HXDLIN(4381) ::cpp::Function< void (float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_polygon_offset",28,8f,6c,e3),HX_("ffv",36,bf,4d,00),false);
HXDLIN(4381) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4381_boot)
HXDLIN(4381) lime_gl_polygon_offset = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4383_boot)
HXDLIN(4383) ::cpp::Function< void (int,int,Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_program_binary",cc,e0,e1,77),HX_("iidiv",71,8d,c6,ba),false);
HXDLIN(4383) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4383_boot)
HXDLIN(4383) lime_gl_program_binary = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4385_boot)
HXDLIN(4385) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_program_parameteri",eb,a4,8e,4e),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4385) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4385_boot)
HXDLIN(4385) lime_gl_program_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4387_boot)
HXDLIN(4387) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_read_buffer",d9,d6,53,39),HX_("iv",ed,5b,00,00),false);
HXDLIN(4387) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4387_boot)
HXDLIN(4387) lime_gl_read_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4388_boot)
HXDLIN(4388) ::cpp::Function< void (int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_read_pixels",06,09,69,f5),HX_("iiiiiidv",32,bb,41,3a),false);
HXDLIN(4388) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4388_boot)
HXDLIN(4388) lime_gl_read_pixels = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4390_boot)
HXDLIN(4390) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_release_shader_compiler",51,e6,f6,c0),HX_("v",76,00,00,00),false);
HXDLIN(4390) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4390_boot)
HXDLIN(4390) lime_gl_release_shader_compiler = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4392_boot)
HXDLIN(4392) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_renderbuffer_storage",c2,94,f1,7b),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4392) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4392_boot)
HXDLIN(4392) lime_gl_renderbuffer_storage = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4394_boot)
HXDLIN(4394) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_renderbuffer_storage_multisample",26,e9,f0,80),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4394) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4394_boot)
HXDLIN(4394) lime_gl_renderbuffer_storage_multisample = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4396_boot)
HXDLIN(4396) ::cpp::Function< void () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_resume_transform_feedback",5a,c0,f6,d5),HX_("v",76,00,00,00),false);
HXDLIN(4396) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4396_boot)
HXDLIN(4396) lime_gl_resume_transform_feedback = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (float,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4398_boot)
HXDLIN(4398) ::cpp::Function< void (float,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_sample_coverage",ad,98,c5,86),HX_("fbv",ba,bb,4d,00),false);
HXDLIN(4398) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4398_boot)
HXDLIN(4398) lime_gl_sample_coverage = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4400_boot)
HXDLIN(4400) ::cpp::Function< void (int,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_sampler_parameterf",e4,f0,b0,51),HX_("iifv",30,6d,b7,45),false);
HXDLIN(4400) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4400_boot)
HXDLIN(4400) lime_gl_sampler_parameterf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4402_boot)
HXDLIN(4402) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_sampler_parameteri",e7,f0,b0,51),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4402) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4402_boot)
HXDLIN(4402) lime_gl_sampler_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4404_boot)
HXDLIN(4404) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_scissor",ec,1c,b2,c3),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4404) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4404_boot)
HXDLIN(4404) lime_gl_scissor = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,Float,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4405_boot)
HXDLIN(4405) ::cpp::Function< void ( ::hx::Object *,int,Float,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_shader_binary",eb,dd,bc,3a),HX_("oidiv",77,08,2e,2f),false);
HXDLIN(4405) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4405_boot)
HXDLIN(4405) lime_gl_shader_binary = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4407_boot)
HXDLIN(4407) ::cpp::Function< void (int,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_shader_source",c5,d2,e2,7f),HX_("isv",4c,11,50,00),false);
HXDLIN(4407) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4407_boot)
HXDLIN(4407) lime_gl_shader_source = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4408_boot)
HXDLIN(4408) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_stencil_func",d7,b0,4f,64),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4408) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4408_boot)
HXDLIN(4408) lime_gl_stencil_func = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4409_boot)
HXDLIN(4409) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_stencil_func_separate",0b,13,77,19),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4409) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4409_boot)
HXDLIN(4409) lime_gl_stencil_func_separate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4411_boot)
HXDLIN(4411) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_stencil_mask",7f,06,e1,68),HX_("iv",ed,5b,00,00),false);
HXDLIN(4411) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4411_boot)
HXDLIN(4411) lime_gl_stencil_mask = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4412_boot)
HXDLIN(4412) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_stencil_mask_separate",63,c8,71,65),HX_("iiv",96,08,50,00),false);
HXDLIN(4412) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4412_boot)
HXDLIN(4412) lime_gl_stencil_mask_separate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4414_boot)
HXDLIN(4414) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_stencil_op",f4,8b,0c,a5),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4414) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4414_boot)
HXDLIN(4414) lime_gl_stencil_op = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4415_boot)
HXDLIN(4415) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_stencil_op_separate",4e,6c,36,5e),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4415) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4415_boot)
HXDLIN(4415) lime_gl_stencil_op_separate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4417_boot)
HXDLIN(4417) ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_image_2d",5e,ab,7a,34),HX_("iiiiiiiidv",12,f7,d0,9d),false);
HXDLIN(4417) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4417_boot)
HXDLIN(4417) lime_gl_tex_image_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4419_boot)
HXDLIN(4419) ::cpp::Function< void (int,int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_image_3d",3d,ac,7a,34),HX_("iiiiiiiiidv",bb,f4,0a,79),false);
HXDLIN(4419) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4419_boot)
HXDLIN(4419) lime_gl_tex_image_3d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4421_boot)
HXDLIN(4421) ::cpp::Function< void (int,int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_parameterf",65,7e,77,4d),HX_("iifv",30,6d,b7,45),false);
HXDLIN(4421) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4421_boot)
HXDLIN(4421) lime_gl_tex_parameterf = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4423_boot)
HXDLIN(4423) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_parameteri",68,7e,77,4d),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4423) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4423_boot)
HXDLIN(4423) lime_gl_tex_parameteri = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4425_boot)
HXDLIN(4425) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_storage_2d",7e,19,2d,9e),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4425) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4425_boot)
HXDLIN(4425) lime_gl_tex_storage_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4427_boot)
HXDLIN(4427) ::cpp::Function< void (int,int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_storage_3d",5d,1a,2d,9e),HX_("iiiiiiv",d6,f0,90,c4),false);
HXDLIN(4427) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4427_boot)
HXDLIN(4427) lime_gl_tex_storage_3d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4429_boot)
HXDLIN(4429) ::cpp::Function< void (int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_sub_image_2d",3d,4d,7e,52),HX_("iiiiiiiidv",12,f7,d0,9d),false);
HXDLIN(4429) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4429_boot)
HXDLIN(4429) lime_gl_tex_sub_image_2d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4431_boot)
HXDLIN(4431) ::cpp::Function< void (int,int,int,int,int,int,int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_tex_sub_image_3d",1c,4e,7e,52),HX_("iiiiiiiiiidv",f2,ea,8e,70),false);
HXDLIN(4431) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4431_boot)
HXDLIN(4431) lime_gl_tex_sub_image_3d = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int, ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4433_boot)
HXDLIN(4433) ::cpp::Function< void (int, ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_transform_feedback_varyings",3a,9e,18,15),HX_("ioiv",53,fd,bb,45),false);
HXDLIN(4433) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4433_boot)
HXDLIN(4433) lime_gl_transform_feedback_varyings = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4435_boot)
HXDLIN(4435) ::cpp::Function< void (int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform1f",19,ea,eb,46),HX_("ifv",f9,05,50,00),false);
HXDLIN(4435) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4435_boot)
HXDLIN(4435) lime_gl_uniform1f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4436_boot)
HXDLIN(4436) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform1fv",3d,ec,80,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4436) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4436_boot)
HXDLIN(4436) lime_gl_uniform1fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4438_boot)
HXDLIN(4438) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform1i",1c,ea,eb,46),HX_("iiv",96,08,50,00),false);
HXDLIN(4438) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4438_boot)
HXDLIN(4438) lime_gl_uniform1i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4439_boot)
HXDLIN(4439) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform1iv",da,ee,80,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4439) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4439_boot)
HXDLIN(4439) lime_gl_uniform1iv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4441_boot)
HXDLIN(4441) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform1ui",41,f9,80,c7),HX_("iiv",96,08,50,00),false);
HXDLIN(4441) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4441_boot)
HXDLIN(4441) lime_gl_uniform1ui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4442_boot)
HXDLIN(4442) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform1uiv",15,20,59,c9),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4442) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4442_boot)
HXDLIN(4442) lime_gl_uniform1uiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4444_boot)
HXDLIN(4444) ::cpp::Function< void (int,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform2f",f8,ea,eb,46),HX_("iffv",6d,26,b5,45),false);
HXDLIN(4444) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4444_boot)
HXDLIN(4444) lime_gl_uniform2f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4446_boot)
HXDLIN(4446) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform2fv",7e,ae,81,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4446) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4446_boot)
HXDLIN(4446) lime_gl_uniform2fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4448_boot)
HXDLIN(4448) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform2i",fb,ea,eb,46),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4448) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4448_boot)
HXDLIN(4448) lime_gl_uniform2i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4449_boot)
HXDLIN(4449) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform2iv",1b,b1,81,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4449) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4449_boot)
HXDLIN(4449) lime_gl_uniform2iv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4451_boot)
HXDLIN(4451) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform2ui",82,bb,81,c7),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4451) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4451_boot)
HXDLIN(4451) lime_gl_uniform2ui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4452_boot)
HXDLIN(4452) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform2uiv",b4,56,02,ca),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4452) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4452_boot)
HXDLIN(4452) lime_gl_uniform2uiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4454_boot)
HXDLIN(4454) ::cpp::Function< void (int,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform3f",d7,eb,eb,46),HX_("ifffv",79,6b,cc,b8),false);
HXDLIN(4454) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4454_boot)
HXDLIN(4454) lime_gl_uniform3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4456_boot)
HXDLIN(4456) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform3fv",bf,70,82,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4456) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4456_boot)
HXDLIN(4456) lime_gl_uniform3fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4458_boot)
HXDLIN(4458) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform3i",da,eb,eb,46),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4458) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4458_boot)
HXDLIN(4458) lime_gl_uniform3i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4459_boot)
HXDLIN(4459) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform3iv",5c,73,82,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4459) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4459_boot)
HXDLIN(4459) lime_gl_uniform3iv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4461_boot)
HXDLIN(4461) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform3ui",c3,7d,82,c7),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4461) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4461_boot)
HXDLIN(4461) lime_gl_uniform3ui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4462_boot)
HXDLIN(4462) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform3uiv",53,8d,ab,ca),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4462) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4462_boot)
HXDLIN(4462) lime_gl_uniform3uiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4464_boot)
HXDLIN(4464) ::cpp::Function< void (int,float,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform4f",b6,ec,eb,46),HX_("iffffv",ed,90,11,fa),false);
HXDLIN(4464) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4464_boot)
HXDLIN(4464) lime_gl_uniform4f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4466_boot)
HXDLIN(4466) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform4fv",00,33,83,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4466) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4466_boot)
HXDLIN(4466) lime_gl_uniform4fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4468_boot)
HXDLIN(4468) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform4i",b9,ec,eb,46),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4468) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4468_boot)
HXDLIN(4468) lime_gl_uniform4i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4470_boot)
HXDLIN(4470) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform4iv",9d,35,83,c7),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4470) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4470_boot)
HXDLIN(4470) lime_gl_uniform4iv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4472_boot)
HXDLIN(4472) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform4ui",04,40,83,c7),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4472) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4472_boot)
HXDLIN(4472) lime_gl_uniform4ui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4474_boot)
HXDLIN(4474) ::cpp::Function< void (int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform4uiv",f2,c3,54,cb),HX_("iidv",72,6b,b7,45),false);
HXDLIN(4474) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4474_boot)
HXDLIN(4474) lime_gl_uniform4uiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4476_boot)
HXDLIN(4476) ::cpp::Function< void (int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_block_binding",58,14,de,ff),HX_("iiiv",cd,6f,b7,45),false);
HXDLIN(4476) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4476_boot)
HXDLIN(4476) lime_gl_uniform_block_binding = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4478_boot)
HXDLIN(4478) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix2fv",26,91,85,1c),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4478) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4478_boot)
HXDLIN(4478) lime_gl_uniform_matrix2fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4480_boot)
HXDLIN(4480) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix2x3fv",21,00,9c,81),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4480) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4480_boot)
HXDLIN(4480) lime_gl_uniform_matrix2x3fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4482_boot)
HXDLIN(4482) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix2x4fv",62,c2,9c,81),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4482) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4482_boot)
HXDLIN(4482) lime_gl_uniform_matrix2x4fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4484_boot)
HXDLIN(4484) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix3fv",67,53,86,1c),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4484) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4484_boot)
HXDLIN(4484) lime_gl_uniform_matrix3fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4486_boot)
HXDLIN(4486) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix3x2fv",61,d2,01,15),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4486) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4486_boot)
HXDLIN(4486) lime_gl_uniform_matrix3x2fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4488_boot)
HXDLIN(4488) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix3x4fv",e3,56,03,15),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4488) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4488_boot)
HXDLIN(4488) lime_gl_uniform_matrix3x4fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4490_boot)
HXDLIN(4490) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix4fv",a8,15,87,1c),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4490) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4490_boot)
HXDLIN(4490) lime_gl_uniform_matrix4fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4492_boot)
HXDLIN(4492) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix4x2fv",e2,66,68,a8),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4492) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4492_boot)
HXDLIN(4492) lime_gl_uniform_matrix4x2fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,bool,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4494_boot)
HXDLIN(4494) ::cpp::Function< void (int,int,bool,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_uniform_matrix4x3fv",23,29,69,a8),HX_("iibdv",94,04,c5,ba),false);
HXDLIN(4494) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4494_boot)
HXDLIN(4494) lime_gl_uniform_matrix4x3fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4496_boot)
HXDLIN(4496) ::cpp::Function< bool (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_unmap_buffer",4c,58,96,21),HX_("ib",d9,5b,00,00),false);
HXDLIN(4496) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4496_boot)
HXDLIN(4496) lime_gl_unmap_buffer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4497_boot)
HXDLIN(4497) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_use_program",1c,8c,b8,22),HX_("iv",ed,5b,00,00),false);
HXDLIN(4497) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4497_boot)
HXDLIN(4497) lime_gl_use_program = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4498_boot)
HXDLIN(4498) ::cpp::Function< void (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_validate_program",cb,eb,10,5b),HX_("iv",ed,5b,00,00),false);
HXDLIN(4498) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4498_boot)
HXDLIN(4498) lime_gl_validate_program = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4499_boot)
HXDLIN(4499) ::cpp::Function< void (int,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib1f",2a,cd,b2,7a),HX_("ifv",f9,05,50,00),false);
HXDLIN(4499) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4499_boot)
HXDLIN(4499) lime_gl_vertex_attrib1f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4501_boot)
HXDLIN(4501) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib1fv",0c,b8,c0,e1),HX_("idv",3b,04,50,00),false);
HXDLIN(4501) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4501_boot)
HXDLIN(4501) lime_gl_vertex_attrib1fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4503_boot)
HXDLIN(4503) ::cpp::Function< void (int,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib2f",09,ce,b2,7a),HX_("iffv",6d,26,b5,45),false);
HXDLIN(4503) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4503_boot)
HXDLIN(4503) lime_gl_vertex_attrib2f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4505_boot)
HXDLIN(4505) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib2fv",4d,7a,c1,e1),HX_("idv",3b,04,50,00),false);
HXDLIN(4505) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4505_boot)
HXDLIN(4505) lime_gl_vertex_attrib2fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4507_boot)
HXDLIN(4507) ::cpp::Function< void (int,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib3f",e8,ce,b2,7a),HX_("ifffv",79,6b,cc,b8),false);
HXDLIN(4507) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4507_boot)
HXDLIN(4507) lime_gl_vertex_attrib3f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4509_boot)
HXDLIN(4509) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib3fv",8e,3c,c2,e1),HX_("idv",3b,04,50,00),false);
HXDLIN(4509) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4509_boot)
HXDLIN(4509) lime_gl_vertex_attrib3fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,float,float,float,float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4511_boot)
HXDLIN(4511) ::cpp::Function< void (int,float,float,float,float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib4f",c7,cf,b2,7a),HX_("iffffv",ed,90,11,fa),false);
HXDLIN(4511) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4511_boot)
HXDLIN(4511) lime_gl_vertex_attrib4f = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4513_boot)
HXDLIN(4513) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib4fv",cf,fe,c2,e1),HX_("idv",3b,04,50,00),false);
HXDLIN(4513) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4513_boot)
HXDLIN(4513) lime_gl_vertex_attrib4fv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4515_boot)
HXDLIN(4515) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attribi4i",a9,0a,eb,e1),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4515) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4515_boot)
HXDLIN(4515) lime_gl_vertex_attribi4i = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4517_boot)
HXDLIN(4517) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attribi4iv",ad,49,be,cb),HX_("idv",3b,04,50,00),false);
HXDLIN(4517) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4517_boot)
HXDLIN(4517) lime_gl_vertex_attribi4iv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4519_boot)
HXDLIN(4519) ::cpp::Function< void (int,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attribi4ui",14,54,be,cb),HX_("iiiiiv",ad,3b,43,b6),false);
HXDLIN(4519) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4519_boot)
HXDLIN(4519) lime_gl_vertex_attribi4ui = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4521_boot)
HXDLIN(4521) ::cpp::Function< void (int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attribi4uiv",e2,3d,cb,7a),HX_("idv",3b,04,50,00),false);
HXDLIN(4521) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4521_boot)
HXDLIN(4521) lime_gl_vertex_attribi4uiv = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4523_boot)
HXDLIN(4523) ::cpp::Function< void (int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib_divisor",b4,fe,35,35),HX_("iiv",96,08,50,00),false);
HXDLIN(4523) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4523_boot)
HXDLIN(4523) lime_gl_vertex_attrib_divisor = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4525_boot)
HXDLIN(4525) ::cpp::Function< void (int,int,int,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib_ipointer",5e,81,51,cb),HX_("iiiidv",52,37,43,b6),false);
HXDLIN(4525) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4525_boot)
HXDLIN(4525) lime_gl_vertex_attrib_ipointer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,bool,int,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4527_boot)
HXDLIN(4527) ::cpp::Function< void (int,int,int,bool,int,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_vertex_attrib_pointer",13,fa,74,15),HX_("iiibidv",22,6e,f0,bf),false);
HXDLIN(4527) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4527_boot)
HXDLIN(4527) lime_gl_vertex_attrib_pointer = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void (int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4529_boot)
HXDLIN(4529) ::cpp::Function< void (int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_viewport",96,8d,70,cf),HX_("iiiiv",b6,58,ca,ba),false);
HXDLIN(4529) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4529_boot)
HXDLIN(4529) lime_gl_viewport = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4530_boot)
HXDLIN(4530) ::cpp::Function< void ( ::hx::Object *,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_gl_wait_sync",75,3c,87,68),HX_("oiiiv",bc,d3,31,2f),false);
HXDLIN(4530) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_4530_boot)
HXDLIN(4530) lime_gl_wait_sync = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (Float,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5846_boot)
HXDLIN(5846) ::cpp::Function< ::hx::Object * (Float,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_create",03,5a,e8,38),HX_("diio",ab,5e,69,42),false);
HXDLIN(5846) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5846_boot)
HXDLIN(5846) lime_hb_blob_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5848_boot)
HXDLIN(5848) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_create_sub_blob",b8,04,ce,f6),HX_("oiio",80,b7,ae,49),false);
HXDLIN(5848) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5848_boot)
HXDLIN(5848) lime_hb_blob_create_sub_blob = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5850_boot)
HXDLIN(5850) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_get_data",7a,14,5f,1d),HX_("od",15,61,00,00),false);
HXDLIN(5850) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5850_boot)
HXDLIN(5850) lime_hb_blob_get_data = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5851_boot)
HXDLIN(5851) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_get_data_writable",05,0d,90,9c),HX_("od",15,61,00,00),false);
HXDLIN(5851) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5851_boot)
HXDLIN(5851) lime_hb_blob_get_data_writable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5853_boot)
HXDLIN(5853) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_get_empty",3d,02,25,31),HX_("o",6f,00,00,00),false);
HXDLIN(5853) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5853_boot)
HXDLIN(5853) lime_hb_blob_get_empty = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5854_boot)
HXDLIN(5854) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_get_length",36,87,2b,ff),HX_("oi",1a,61,00,00),false);
HXDLIN(5854) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5854_boot)
HXDLIN(5854) lime_hb_blob_get_length = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5855_boot)
HXDLIN(5855) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_is_immutable",b4,3a,7f,8f),HX_("ob",13,61,00,00),false);
HXDLIN(5855) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5855_boot)
HXDLIN(5855) lime_hb_blob_is_immutable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5856_boot)
HXDLIN(5856) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_blob_make_immutable",78,a5,06,a7),HX_("ov",27,61,00,00),false);
HXDLIN(5856) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5856_boot)
HXDLIN(5856) lime_hb_blob_make_immutable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5858_boot)
HXDLIN(5858) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_add",9d,96,94,46),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(5858) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5858_boot)
HXDLIN(5858) lime_hb_buffer_add = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5860_boot)
HXDLIN(5860) ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_add_codepoints",b2,94,6a,b3),HX_("odiiiv",62,7f,66,3b),false);
HXDLIN(5860) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5860_boot)
HXDLIN(5860) lime_hb_buffer_add_codepoints = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,::String,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5862_boot)
HXDLIN(5862) ::cpp::Function< void ( ::hx::Object *,::String,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_add_utf8",53,c1,d2,af),HX_("osiiv",f2,f5,cd,35),false);
HXDLIN(5862) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5862_boot)
HXDLIN(5862) lime_hb_buffer_add_utf8 = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5864_boot)
HXDLIN(5864) ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_add_utf16",6a,61,96,28),HX_("odiiiv",62,7f,66,3b),false);
HXDLIN(5864) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5864_boot)
HXDLIN(5864) lime_hb_buffer_add_utf16 = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5866_boot)
HXDLIN(5866) ::cpp::Function< void ( ::hx::Object *,Float,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_add_utf32",24,63,96,28),HX_("odiiiv",62,7f,66,3b),false);
HXDLIN(5866) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5866_boot)
HXDLIN(5866) lime_hb_buffer_add_utf32 = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5868_boot)
HXDLIN(5868) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_allocation_successful",d5,f0,c9,3f),HX_("ob",13,61,00,00),false);
HXDLIN(5868) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5868_boot)
HXDLIN(5868) lime_hb_buffer_allocation_successful = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5870_boot)
HXDLIN(5870) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_clear_contents",50,66,d5,37),HX_("ov",27,61,00,00),false);
HXDLIN(5870) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5870_boot)
HXDLIN(5870) lime_hb_buffer_clear_contents = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5872_boot)
HXDLIN(5872) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_create",00,b8,f9,78),HX_("o",6f,00,00,00),false);
HXDLIN(5872) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5872_boot)
HXDLIN(5872) lime_hb_buffer_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5873_boot)
HXDLIN(5873) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_cluster_level",12,90,e4,6c),HX_("oi",1a,61,00,00),false);
HXDLIN(5873) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5873_boot)
HXDLIN(5873) lime_hb_buffer_get_cluster_level = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5875_boot)
HXDLIN(5875) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_content_type",4d,1d,ed,c0),HX_("oi",1a,61,00,00),false);
HXDLIN(5875) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5875_boot)
HXDLIN(5875) lime_hb_buffer_get_content_type = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5877_boot)
HXDLIN(5877) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_direction",92,cd,df,80),HX_("oi",1a,61,00,00),false);
HXDLIN(5877) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5877_boot)
HXDLIN(5877) lime_hb_buffer_get_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5879_boot)
HXDLIN(5879) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_empty",60,c0,c6,b1),HX_("o",6f,00,00,00),false);
HXDLIN(5879) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5879_boot)
HXDLIN(5879) lime_hb_buffer_get_empty = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5880_boot)
HXDLIN(5880) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_flags",1a,b1,78,44),HX_("oi",1a,61,00,00),false);
HXDLIN(5880) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5880_boot)
HXDLIN(5880) lime_hb_buffer_get_flags = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5881_boot)
HXDLIN(5881) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_glyph_infos",45,1c,99,b9),HX_("ooo",4f,9b,54,00),false);
HXDLIN(5881) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5881_boot)
HXDLIN(5881) lime_hb_buffer_get_glyph_infos = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5883_boot)
HXDLIN(5883) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_glyph_positions",aa,e7,5e,7a),HX_("ooo",4f,9b,54,00),false);
HXDLIN(5883) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5883_boot)
HXDLIN(5883) lime_hb_buffer_get_glyph_positions = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5885_boot)
HXDLIN(5885) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_language",65,20,7e,a8),HX_("oo",20,61,00,00),false);
HXDLIN(5885) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5885_boot)
HXDLIN(5885) lime_hb_buffer_get_language = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5887_boot)
HXDLIN(5887) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_length",b3,27,10,0c),HX_("oi",1a,61,00,00),false);
HXDLIN(5887) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5887_boot)
HXDLIN(5887) lime_hb_buffer_get_length = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5888_boot)
HXDLIN(5888) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_replacement_codepoint",e9,29,d2,8e),HX_("oi",1a,61,00,00),false);
HXDLIN(5888) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5888_boot)
HXDLIN(5888) lime_hb_buffer_get_replacement_codepoint = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5890_boot)
HXDLIN(5890) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_script",d8,e0,68,b4),HX_("oi",1a,61,00,00),false);
HXDLIN(5890) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5890_boot)
HXDLIN(5890) lime_hb_buffer_get_script = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5891_boot)
HXDLIN(5891) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_get_segment_properties",8c,12,c8,c1),HX_("oov",56,9b,54,00),false);
HXDLIN(5891) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5891_boot)
HXDLIN(5891) lime_hb_buffer_get_segment_properties = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5893_boot)
HXDLIN(5893) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_guess_segment_properties",eb,a9,b5,02),HX_("ov",27,61,00,00),false);
HXDLIN(5893) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5893_boot)
HXDLIN(5893) lime_hb_buffer_guess_segment_properties = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5895_boot)
HXDLIN(5895) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_normalize_glyphs",fd,cc,6f,57),HX_("ov",27,61,00,00),false);
HXDLIN(5895) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5895_boot)
HXDLIN(5895) lime_hb_buffer_normalize_glyphs = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5897_boot)
HXDLIN(5897) ::cpp::Function< bool ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_preallocate",5c,0e,1f,41),HX_("oib",08,96,54,00),false);
HXDLIN(5897) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5897_boot)
HXDLIN(5897) lime_hb_buffer_preallocate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5899_boot)
HXDLIN(5899) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_reset",4b,05,62,50),HX_("ov",27,61,00,00),false);
HXDLIN(5899) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5899_boot)
HXDLIN(5899) lime_hb_buffer_reset = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5900_boot)
HXDLIN(5900) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_reverse",9e,cb,18,6b),HX_("ov",27,61,00,00),false);
HXDLIN(5900) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5900_boot)
HXDLIN(5900) lime_hb_buffer_reverse = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5901_boot)
HXDLIN(5901) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_reverse_clusters",3a,b8,e1,69),HX_("ov",27,61,00,00),false);
HXDLIN(5901) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5901_boot)
HXDLIN(5901) lime_hb_buffer_reverse_clusters = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5903_boot)
HXDLIN(5903) ::cpp::Function< int (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_serialize_format_from_string",41,b0,64,0e),HX_("si",96,64,00,00),false);
HXDLIN(5903) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5903_boot)
HXDLIN(5903) lime_hb_buffer_serialize_format_from_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5905_boot)
HXDLIN(5905) ::cpp::Function< ::hx::Object * (int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_serialize_format_to_string",90,7f,d4,ee),HX_("io",e6,5b,00,00),false);
HXDLIN(5905) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5905_boot)
HXDLIN(5905) lime_hb_buffer_serialize_format_to_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5907_boot)
HXDLIN(5907) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_serialize_list_formats",3e,67,15,57),HX_("o",6f,00,00,00),false);
HXDLIN(5907) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5907_boot)
HXDLIN(5907) lime_hb_buffer_serialize_list_formats = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5909_boot)
HXDLIN(5909) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_cluster_level",1e,68,52,90),HX_("oiv",1c,96,54,00),false);
HXDLIN(5909) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5909_boot)
HXDLIN(5909) lime_hb_buffer_set_cluster_level = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5911_boot)
HXDLIN(5911) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_content_type",c1,0a,2f,17),HX_("oiv",1c,96,54,00),false);
HXDLIN(5911) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5911_boot)
HXDLIN(5911) lime_hb_buffer_set_content_type = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5913_boot)
HXDLIN(5913) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_direction",9e,af,e5,c5),HX_("oiv",1c,96,54,00),false);
HXDLIN(5913) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5913_boot)
HXDLIN(5913) lime_hb_buffer_set_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5915_boot)
HXDLIN(5915) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_flags",26,9d,c9,27),HX_("oiv",1c,96,54,00),false);
HXDLIN(5915) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5915_boot)
HXDLIN(5915) lime_hb_buffer_set_flags = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5917_boot)
HXDLIN(5917) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_language",d9,43,77,bd),HX_("oov",56,9b,54,00),false);
HXDLIN(5917) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5917_boot)
HXDLIN(5917) lime_hb_buffer_set_language = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5919_boot)
HXDLIN(5919) ::cpp::Function< bool ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_length",27,c6,8d,0f),HX_("oib",08,96,54,00),false);
HXDLIN(5919) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5919_boot)
HXDLIN(5919) lime_hb_buffer_set_length = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5921_boot)
HXDLIN(5921) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_replacement_codepoint",f5,ed,28,fb),HX_("oiv",1c,96,54,00),false);
HXDLIN(5921) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5921_boot)
HXDLIN(5921) lime_hb_buffer_set_replacement_codepoint = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5923_boot)
HXDLIN(5923) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_script",4c,7f,e6,b7),HX_("oiv",1c,96,54,00),false);
HXDLIN(5923) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5923_boot)
HXDLIN(5923) lime_hb_buffer_set_script = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5925_boot)
HXDLIN(5925) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_buffer_set_segment_properties",00,8f,73,f5),HX_("oov",56,9b,54,00),false);
HXDLIN(5925) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5925_boot)
HXDLIN(5925) lime_hb_buffer_set_segment_properties = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5927_boot)
HXDLIN(5927) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_create",c3,4a,75,c1),HX_("oio",15,96,54,00),false);
HXDLIN(5927) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5927_boot)
HXDLIN(5927) lime_hb_face_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5928_boot)
HXDLIN(5928) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_get_empty",7d,09,37,aa),HX_("o",6f,00,00,00),false);
HXDLIN(5928) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5928_boot)
HXDLIN(5928) lime_hb_face_get_empty = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5929_boot)
HXDLIN(5929) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_get_glyph_count",ac,b5,21,87),HX_("oi",1a,61,00,00),false);
HXDLIN(5929) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5929_boot)
HXDLIN(5929) lime_hb_face_get_glyph_count = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5931_boot)
HXDLIN(5931) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_get_index",02,6a,71,f8),HX_("oi",1a,61,00,00),false);
HXDLIN(5931) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5931_boot)
HXDLIN(5931) lime_hb_face_get_index = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5932_boot)
HXDLIN(5932) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_get_upem",93,aa,e1,a2),HX_("oi",1a,61,00,00),false);
HXDLIN(5932) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5932_boot)
HXDLIN(5932) lime_hb_face_get_upem = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5933_boot)
HXDLIN(5933) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_is_immutable",74,3b,79,58),HX_("ob",13,61,00,00),false);
HXDLIN(5933) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5933_boot)
HXDLIN(5933) lime_hb_face_is_immutable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5934_boot)
HXDLIN(5934) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_make_immutable",38,56,12,23),HX_("ov",27,61,00,00),false);
HXDLIN(5934) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5934_boot)
HXDLIN(5934) lime_hb_face_make_immutable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5936_boot)
HXDLIN(5936) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_reference_blob",58,b4,67,d5),HX_("oo",20,61,00,00),false);
HXDLIN(5936) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5936_boot)
HXDLIN(5936) lime_hb_face_reference_blob = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5938_boot)
HXDLIN(5938) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_reference_table",b3,5c,3d,3b),HX_("oio",15,96,54,00),false);
HXDLIN(5938) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5938_boot)
HXDLIN(5938) lime_hb_face_reference_table = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5940_boot)
HXDLIN(5940) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_set_glyph_count",b8,32,ed,82),HX_("oiv",1c,96,54,00),false);
HXDLIN(5940) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5940_boot)
HXDLIN(5940) lime_hb_face_set_glyph_count = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5942_boot)
HXDLIN(5942) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_set_index",0e,56,c2,db),HX_("oiv",1c,96,54,00),false);
HXDLIN(5942) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5942_boot)
HXDLIN(5942) lime_hb_face_set_index = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5944_boot)
HXDLIN(5944) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_face_set_upem",07,04,3f,51),HX_("oiv",1c,96,54,00),false);
HXDLIN(5944) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5944_boot)
HXDLIN(5944) lime_hb_face_set_upem = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5946_boot)
HXDLIN(5946) ::cpp::Function< ::hx::Object * (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_feature_from_string",22,86,04,60),HX_("so",9c,64,00,00),false);
HXDLIN(5946) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5946_boot)
HXDLIN(5946) lime_hb_feature_from_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5948_boot)
HXDLIN(5948) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_feature_to_string",31,6b,a9,70),HX_("oo",20,61,00,00),false);
HXDLIN(5948) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5948_boot)
HXDLIN(5948) lime_hb_feature_to_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5950_boot)
HXDLIN(5950) ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_add_glyph_origin_for_direction",16,f4,0e,0c),HX_("oiiiiv",e7,65,67,1c),false);
HXDLIN(5950) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5950_boot)
HXDLIN(5950) lime_hb_font_add_glyph_origin_for_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5952_boot)
HXDLIN(5952) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_create",d1,0b,dc,af),HX_("oo",20,61,00,00),false);
HXDLIN(5952) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5952_boot)
HXDLIN(5952) lime_hb_font_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5953_boot)
HXDLIN(5953) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_create_sub_font",9c,c9,ef,c4),HX_("oo",20,61,00,00),false);
HXDLIN(5953) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5953_boot)
HXDLIN(5953) lime_hb_font_create_sub_font = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5955_boot)
HXDLIN(5955) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_empty",2f,e5,ff,da),HX_("o",6f,00,00,00),false);
HXDLIN(5955) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5955_boot)
HXDLIN(5955) lime_hb_font_get_empty = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5956_boot)
HXDLIN(5956) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_face",3b,b4,4f,ff),HX_("oo",20,61,00,00),false);
HXDLIN(5956) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5956_boot)
HXDLIN(5956) lime_hb_font_get_face = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5957_boot)
HXDLIN(5957) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_glyph_advance_for_direction",9b,ae,b3,f7),HX_("oiio",80,b7,ae,49),false);
HXDLIN(5957) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5957_boot)
HXDLIN(5957) lime_hb_font_get_glyph_advance_for_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5959_boot)
HXDLIN(5959) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_glyph_kerning_for_direction",65,0e,ef,53),HX_("oiiio",b5,d3,31,2f),false);
HXDLIN(5959) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5959_boot)
HXDLIN(5959) lime_hb_font_get_glyph_kerning_for_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5961_boot)
HXDLIN(5961) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_glyph_origin_for_direction",c1,85,39,23),HX_("oiio",80,b7,ae,49),false);
HXDLIN(5961) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5961_boot)
HXDLIN(5961) lime_hb_font_get_glyph_origin_for_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5963_boot)
HXDLIN(5963) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_parent",48,a8,4d,43),HX_("oo",20,61,00,00),false);
HXDLIN(5963) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5963_boot)
HXDLIN(5963) lime_hb_font_get_parent = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5965_boot)
HXDLIN(5965) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_ppem",06,3a,f7,05),HX_("oo",20,61,00,00),false);
HXDLIN(5965) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5965_boot)
HXDLIN(5965) lime_hb_font_get_ppem = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5966_boot)
HXDLIN(5966) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_get_scale",2c,79,f4,e3),HX_("oo",20,61,00,00),false);
HXDLIN(5966) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5966_boot)
HXDLIN(5966) lime_hb_font_get_scale = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5967_boot)
HXDLIN(5967) ::cpp::Function< int ( ::hx::Object *,::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_glyph_from_string",3e,05,35,b4),HX_("osi",c5,9e,54,00),false);
HXDLIN(5967) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5967_boot)
HXDLIN(5967) lime_hb_font_glyph_from_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5969_boot)
HXDLIN(5969) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_glyph_to_string",4d,ab,74,0b),HX_("oio",15,96,54,00),false);
HXDLIN(5969) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5969_boot)
HXDLIN(5969) lime_hb_font_glyph_to_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5971_boot)
HXDLIN(5971) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_is_immutable",02,3b,13,0c),HX_("ob",13,61,00,00),false);
HXDLIN(5971) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5971_boot)
HXDLIN(5971) lime_hb_font_is_immutable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5972_boot)
HXDLIN(5972) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_make_immutable",46,d5,d5,70),HX_("ov",27,61,00,00),false);
HXDLIN(5972) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5972_boot)
HXDLIN(5972) lime_hb_font_make_immutable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5974_boot)
HXDLIN(5974) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_set_ppem",7a,93,54,b4),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(5974) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5974_boot)
HXDLIN(5974) lime_hb_font_set_ppem = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5976_boot)
HXDLIN(5976) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_set_scale",38,65,45,c7),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(5976) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5976_boot)
HXDLIN(5976) lime_hb_font_set_scale = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5978_boot)
HXDLIN(5978) ::cpp::Function< void ( ::hx::Object *,int,int,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_font_subtract_glyph_origin_for_direction",39,ae,0b,45),HX_("oiiiiv",e7,65,67,1c),false);
HXDLIN(5978) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5978_boot)
HXDLIN(5978) lime_hb_font_subtract_glyph_origin_for_direction = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5980_boot)
HXDLIN(5980) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_ft_font_create",f6,42,a2,1b),HX_("oo",20,61,00,00),false);
HXDLIN(5980) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5980_boot)
HXDLIN(5980) lime_hb_ft_font_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5981_boot)
HXDLIN(5981) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_ft_font_create_referenced",22,ec,ff,8f),HX_("oo",20,61,00,00),false);
HXDLIN(5981) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5981_boot)
HXDLIN(5981) lime_hb_ft_font_create_referenced = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5983_boot)
HXDLIN(5983) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_ft_font_get_load_flags",71,1b,26,fb),HX_("oi",1a,61,00,00),false);
HXDLIN(5983) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5983_boot)
HXDLIN(5983) lime_hb_ft_font_get_load_flags = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5985_boot)
HXDLIN(5985) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_ft_font_set_load_flags",e5,03,46,1b),HX_("oiv",1c,96,54,00),false);
HXDLIN(5985) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5985_boot)
HXDLIN(5985) lime_hb_ft_font_set_load_flags = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5987_boot)
HXDLIN(5987) ::cpp::Function< ::hx::Object * (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_language_from_string",da,f2,80,39),HX_("so",9c,64,00,00),false);
HXDLIN(5987) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5987_boot)
HXDLIN(5987) lime_hb_language_from_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5989_boot)
HXDLIN(5989) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_language_get_default",6c,b5,a8,10),HX_("o",6f,00,00,00),false);
HXDLIN(5989) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5989_boot)
HXDLIN(5989) lime_hb_language_get_default = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5991_boot)
HXDLIN(5991) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_language_to_string",e9,b9,2a,6c),HX_("oo",20,61,00,00),false);
HXDLIN(5991) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5991_boot)
HXDLIN(5991) lime_hb_language_to_string = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5993_boot)
HXDLIN(5993) ::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_segment_properties_equal",2f,b4,9f,75),HX_("oob",42,9b,54,00),false);
HXDLIN(5993) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5993_boot)
HXDLIN(5993) lime_hb_segment_properties_equal = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5995_boot)
HXDLIN(5995) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_segment_properties_hash",b3,b3,9e,c5),HX_("oi",1a,61,00,00),false);
HXDLIN(5995) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5995_boot)
HXDLIN(5995) lime_hb_segment_properties_hash = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5997_boot)
HXDLIN(5997) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_add",69,9e,67,5b),HX_("oiv",1c,96,54,00),false);
HXDLIN(5997) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5997_boot)
HXDLIN(5997) lime_hb_set_add = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5998_boot)
HXDLIN(5998) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_add_range",27,c0,46,90),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(5998) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_5998_boot)
HXDLIN(5998) lime_hb_set_add_range = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6000_boot)
HXDLIN(6000) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_allocation_successful",a1,db,56,67),HX_("ob",13,61,00,00),false);
HXDLIN(6000) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6000_boot)
HXDLIN(6000) lime_hb_set_allocation_successful = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6002_boot)
HXDLIN(6002) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_clear",d5,bf,72,e7),HX_("ov",27,61,00,00),false);
HXDLIN(6002) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6002_boot)
HXDLIN(6002) lime_hb_set_clear = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6003_boot)
HXDLIN(6003) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_create",b4,97,5c,11),HX_("o",6f,00,00,00),false);
HXDLIN(6003) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6003_boot)
HXDLIN(6003) lime_hb_set_create = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6004_boot)
HXDLIN(6004) ::cpp::Function< void ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_del",13,e6,69,5b),HX_("oiv",1c,96,54,00),false);
HXDLIN(6004) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6004_boot)
HXDLIN(6004) lime_hb_set_del = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *,int,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6005_boot)
HXDLIN(6005) ::cpp::Function< void ( ::hx::Object *,int,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_del_range",51,23,f9,8e),HX_("oiiv",87,b7,ae,49),false);
HXDLIN(6005) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6005_boot)
HXDLIN(6005) lime_hb_set_del_range = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * () > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6007_boot)
HXDLIN(6007) ::cpp::Function< ::hx::Object * () > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_get_empty",2c,a9,33,e0),HX_("o",6f,00,00,00),false);
HXDLIN(6007) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6007_boot)
HXDLIN(6007) lime_hb_set_get_empty = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6008_boot)
HXDLIN(6008) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_get_max",83,43,05,35),HX_("oi",1a,61,00,00),false);
HXDLIN(6008) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6008_boot)
HXDLIN(6008) lime_hb_set_get_max = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6009_boot)
HXDLIN(6009) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_get_min",71,4a,05,35),HX_("oi",1a,61,00,00),false);
HXDLIN(6009) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6009_boot)
HXDLIN(6009) lime_hb_set_get_min = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6010_boot)
HXDLIN(6010) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_get_population",8e,68,7e,75),HX_("oi",1a,61,00,00),false);
HXDLIN(6010) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6010_boot)
HXDLIN(6010) lime_hb_set_get_population = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6011_boot)
HXDLIN(6011) ::cpp::Function< bool ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_has",a2,eb,6c,5b),HX_("oib",08,96,54,00),false);
HXDLIN(6011) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6011_boot)
HXDLIN(6011) lime_hb_set_has = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6012_boot)
HXDLIN(6012) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_intersect",27,13,25,6f),HX_("oov",56,9b,54,00),false);
HXDLIN(6012) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6012_boot)
HXDLIN(6012) lime_hb_set_intersect = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6014_boot)
HXDLIN(6014) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_invert",ce,17,26,35),HX_("ov",27,61,00,00),false);
HXDLIN(6014) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6014_boot)
HXDLIN(6014) lime_hb_set_invert = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6015_boot)
HXDLIN(6015) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_is_empty",f0,77,1b,f7),HX_("ob",13,61,00,00),false);
HXDLIN(6015) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6015_boot)
HXDLIN(6015) lime_hb_set_is_empty = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6016_boot)
HXDLIN(6016) ::cpp::Function< bool ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_is_equal",17,0d,c4,f9),HX_("oob",42,9b,54,00),false);
HXDLIN(6016) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6016_boot)
HXDLIN(6016) lime_hb_set_is_equal = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6018_boot)
HXDLIN(6018) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_next",ab,97,db,a7),HX_("oi",1a,61,00,00),false);
HXDLIN(6018) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6018_boot)
HXDLIN(6018) lime_hb_set_next = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6019_boot)
HXDLIN(6019) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_next_range",e9,16,04,4e),HX_("oo",20,61,00,00),false);
HXDLIN(6019) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6019_boot)
HXDLIN(6019) lime_hb_set_next_range = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6020_boot)
HXDLIN(6020) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_set",ea,47,75,5b),HX_("oov",56,9b,54,00),false);
HXDLIN(6020) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6020_boot)
HXDLIN(6020) lime_hb_set_set = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6021_boot)
HXDLIN(6021) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_subtract",cc,43,96,5f),HX_("oov",56,9b,54,00),false);
HXDLIN(6021) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6021_boot)
HXDLIN(6021) lime_hb_set_subtract = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6023_boot)
HXDLIN(6023) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_symmetric_difference",bd,ac,e7,88),HX_("oov",56,9b,54,00),false);
HXDLIN(6023) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6023_boot)
HXDLIN(6023) lime_hb_set_symmetric_difference = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6025_boot)
HXDLIN(6025) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_set_union",57,b3,fe,45),HX_("oov",56,9b,54,00),false);
HXDLIN(6025) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6025_boot)
HXDLIN(6025) lime_hb_set_union = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6026_boot)
HXDLIN(6026) ::cpp::Function< void ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_hb_shape",86,d2,1d,08),HX_("ooov",47,4a,b3,49),false);
HXDLIN(6026) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6026_boot)
HXDLIN(6026) lime_hb_shape = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6650_boot)
HXDLIN(6650) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_bitrate",6c,c8,60,d8),HX_("oii",0f,96,54,00),false);
HXDLIN(6650) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6650_boot)
HXDLIN(6650) lime_vorbis_file_bitrate = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6652_boot)
HXDLIN(6652) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_bitrate_instant",ce,44,94,97),HX_("oi",1a,61,00,00),false);
HXDLIN(6652) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6652_boot)
HXDLIN(6652) lime_vorbis_file_bitrate_instant = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< void ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6654_boot)
HXDLIN(6654) ::cpp::Function< void ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_clear",0c,e6,c6,1a),HX_("ov",27,61,00,00),false);
HXDLIN(6654) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6654_boot)
HXDLIN(6654) lime_vorbis_file_clear = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6655_boot)
HXDLIN(6655) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_comment",9e,4c,01,5d),HX_("oio",15,96,54,00),false);
HXDLIN(6655) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6655_boot)
HXDLIN(6655) lime_vorbis_file_comment = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6657_boot)
HXDLIN(6657) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_crosslap",bc,bd,3f,cb),HX_("ooo",4f,9b,54,00),false);
HXDLIN(6657) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6657_boot)
HXDLIN(6657) lime_vorbis_file_crosslap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6659_boot)
HXDLIN(6659) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_from_bytes",b7,bf,11,7f),HX_("oo",20,61,00,00),false);
HXDLIN(6659) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6659_boot)
HXDLIN(6659) lime_vorbis_file_from_bytes = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * (::String) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6661_boot)
HXDLIN(6661) ::cpp::Function< ::hx::Object * (::String) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_from_file",b0,84,41,97),HX_("so",9c,64,00,00),false);
HXDLIN(6661) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6661_boot)
HXDLIN(6661) lime_vorbis_file_from_file = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6663_boot)
HXDLIN(6663) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_info",cf,18,14,61),HX_("oio",15,96,54,00),false);
HXDLIN(6663) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6663_boot)
HXDLIN(6663) lime_vorbis_file_info = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6665_boot)
HXDLIN(6665) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_pcm_seek",de,f4,4d,f2),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(6665) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6665_boot)
HXDLIN(6665) lime_vorbis_file_pcm_seek = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6667_boot)
HXDLIN(6667) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_pcm_seek_lap",3a,49,6a,74),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(6667) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6667_boot)
HXDLIN(6667) lime_vorbis_file_pcm_seek_lap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6669_boot)
HXDLIN(6669) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_pcm_seek_page",90,9c,3a,6b),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(6669) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6669_boot)
HXDLIN(6669) lime_vorbis_file_pcm_seek_page = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6671_boot)
HXDLIN(6671) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_pcm_seek_page_lap",ec,b1,89,3b),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(6671) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6671_boot)
HXDLIN(6671) lime_vorbis_file_pcm_seek_page_lap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6673_boot)
HXDLIN(6673) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_raw_seek",50,87,19,11),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(6673) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6673_boot)
HXDLIN(6673) lime_vorbis_file_raw_seek = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6675_boot)
HXDLIN(6675) ::cpp::Function< int ( ::hx::Object *, ::hx::Object *, ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_raw_seek_lap",ac,fc,14,79),HX_("oooi",3a,4a,b3,49),false);
HXDLIN(6675) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6675_boot)
HXDLIN(6675) lime_vorbis_file_raw_seek_lap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6677_boot)
HXDLIN(6677) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_pcm_tell",97,31,f7,f2),HX_("oo",20,61,00,00),false);
HXDLIN(6677) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6677_boot)
HXDLIN(6677) lime_vorbis_file_pcm_tell = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6679_boot)
HXDLIN(6679) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_pcm_total",9e,5d,f6,ab),HX_("oio",15,96,54,00),false);
HXDLIN(6679) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6679_boot)
HXDLIN(6679) lime_vorbis_file_pcm_total = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6681_boot)
HXDLIN(6681) ::cpp::Function< ::hx::Object * ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_raw_tell",09,c4,c2,11),HX_("oo",20,61,00,00),false);
HXDLIN(6681) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6681_boot)
HXDLIN(6681) lime_vorbis_file_raw_tell = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6683_boot)
HXDLIN(6683) ::cpp::Function< ::hx::Object * ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_raw_total",ec,ee,4a,7f),HX_("oio",15,96,54,00),false);
HXDLIN(6683) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6683_boot)
HXDLIN(6683) lime_vorbis_file_raw_total = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int,int,bool,int,bool) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6685_boot)
HXDLIN(6685) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int,int,bool,int,bool) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_read",b7,2b,00,67),HX_("ooiibibo",54,b0,50,86),false);
HXDLIN(6685) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6685_boot)
HXDLIN(6685) lime_vorbis_file_read = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6687_boot)
HXDLIN(6687) ::cpp::Function< ::hx::Object * ( ::hx::Object *, ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_read_float",d4,5b,48,7a),HX_("ooio",06,45,b3,49),false);
HXDLIN(6687) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6687_boot)
HXDLIN(6687) lime_vorbis_file_read_float = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< bool ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6689_boot)
HXDLIN(6689) ::cpp::Function< bool ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_seekable",f3,33,1c,9b),HX_("ob",13,61,00,00),false);
HXDLIN(6689) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6689_boot)
HXDLIN(6689) lime_vorbis_file_seekable = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6690_boot)
HXDLIN(6690) ::cpp::Function< int ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_serial_number",73,a0,0a,65),HX_("oii",0f,96,54,00),false);
HXDLIN(6690) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6690_boot)
HXDLIN(6690) lime_vorbis_file_serial_number = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6692_boot)
HXDLIN(6692) ::cpp::Function< int ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_streams",32,ae,d5,d1),HX_("oi",1a,61,00,00),false);
HXDLIN(6692) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6692_boot)
HXDLIN(6692) lime_vorbis_file_streams = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6693_boot)
HXDLIN(6693) ::cpp::Function< int ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_time_seek",29,26,3e,a0),HX_("odi",b4,91,54,00),false);
HXDLIN(6693) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6693_boot)
HXDLIN(6693) lime_vorbis_file_time_seek = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6695_boot)
HXDLIN(6695) ::cpp::Function< int ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_time_seek_lap",05,7c,d4,ab),HX_("odi",b4,91,54,00),false);
HXDLIN(6695) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6695_boot)
HXDLIN(6695) lime_vorbis_file_time_seek_lap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6697_boot)
HXDLIN(6697) ::cpp::Function< int ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_time_seek_page",65,db,bc,b0),HX_("odi",b4,91,54,00),false);
HXDLIN(6697) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6697_boot)
HXDLIN(6697) lime_vorbis_file_time_seek_page = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< int ( ::hx::Object *,Float) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6699_boot)
HXDLIN(6699) ::cpp::Function< int ( ::hx::Object *,Float) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_time_seek_page_lap",41,7f,5c,e6),HX_("odi",b4,91,54,00),false);
HXDLIN(6699) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6699_boot)
HXDLIN(6699) lime_vorbis_file_time_seek_page_lap = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6701_boot)
HXDLIN(6701) ::cpp::Function< Float ( ::hx::Object *) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_time_tell",e2,62,e7,a0),HX_("od",15,61,00,00),false);
HXDLIN(6701) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6701_boot)
HXDLIN(6701) lime_vorbis_file_time_tell = ::Dynamic(new _hx_Closure_0())();
}
{
HX_BEGIN_LOCAL_FUNC_S0(::hx::LocalFunc,_hx_Closure_0) HXARGC(0)
::cpp::Function< Float ( ::hx::Object *,int) > _hx_run(){
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6703_boot)
HXDLIN(6703) ::cpp::Function< Float ( ::hx::Object *,int) > this1 = ::cpp::Prime_obj::_loadPrime(HX_("lime",15,17,b3,47),HX_("lime_vorbis_file_time_total",f3,4d,31,30),HX_("oid",0a,96,54,00),false);
HXDLIN(6703) return this1;
}
HX_END_LOCAL_FUNC0(return)
HX_STACKFRAME(&_hx_pos_02b9537fa9419772_6703_boot)
HXDLIN(6703) lime_vorbis_file_time_total = ::Dynamic(new _hx_Closure_0())();
}
}
} // end namespace lime
} // end namespace _internal
} // end namespace backend
} // end namespace native
| [
"none"
] | none |
4182fdef700ef14b8bb88f46c6af54a62cbf4991 | 884d8fd8d4e2bc5a71852de7131a7a6476bf9c48 | /grid-test/export/macos/obj/include/lime/media/openal/_ALBuffer/ALBuffer_Impl_.h | 2f348aff495308cdedda44d46eb624602cf6fe2d | [
"Apache-2.0"
] | permissive | VehpuS/learning-haxe-and-haxeflixel | 69655276f504748347decfea66b91a117a722f6c | cb18c074720656797beed7333eeaced2cf323337 | refs/heads/main | 2023-02-16T07:45:59.795832 | 2021-01-07T03:01:46 | 2021-01-07T03:01:46 | 324,458,421 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,107 | h | // Generated by Haxe 4.1.4
#ifndef INCLUDED_lime_media_openal__ALBuffer_ALBuffer_Impl_
#define INCLUDED_lime_media_openal__ALBuffer_ALBuffer_Impl_
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS4(lime,media,openal,_ALBuffer,ALBuffer_Impl_)
namespace lime{
namespace media{
namespace openal{
namespace _ALBuffer{
class HXCPP_CLASS_ATTRIBUTES ALBuffer_Impl__obj : public ::hx::Object
{
public:
typedef ::hx::Object super;
typedef ALBuffer_Impl__obj OBJ_;
ALBuffer_Impl__obj();
public:
enum { _hx_ClassId = 0x0528d291 };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=false,const char *inName="lime.media.openal._ALBuffer.ALBuffer_Impl_")
{ return ::hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return ::hx::Object::operator new(inSize+extra,false,"lime.media.openal._ALBuffer.ALBuffer_Impl_"); }
inline static ::hx::ObjectPtr< ALBuffer_Impl__obj > __new() {
::hx::ObjectPtr< ALBuffer_Impl__obj > __this = new ALBuffer_Impl__obj();
__this->__construct();
return __this;
}
inline static ::hx::ObjectPtr< ALBuffer_Impl__obj > __alloc(::hx::Ctx *_hx_ctx) {
ALBuffer_Impl__obj *__this = (ALBuffer_Impl__obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(ALBuffer_Impl__obj), false, "lime.media.openal._ALBuffer.ALBuffer_Impl_"));
*(void **)__this = ALBuffer_Impl__obj::_hx_vtable;
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(::hx::DynamicArray inArgs);
//~ALBuffer_Impl__obj();
HX_DO_RTTI_ALL;
static bool __GetStatic(const ::String &inString, Dynamic &outValue, ::hx::PropertyAccess inCallProp);
static void __register();
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("ALBuffer_Impl_",2b,73,03,08); }
static ::Dynamic _new( ::Dynamic handle);
static ::Dynamic _new_dyn();
};
} // end namespace lime
} // end namespace media
} // end namespace openal
} // end namespace _ALBuffer
#endif /* INCLUDED_lime_media_openal__ALBuffer_ALBuffer_Impl_ */
| [
"vehpus@gmail.com"
] | vehpus@gmail.com |
c1cf7984f64e984f30cb9feda9b202a2765f95e2 | 9a48be80edc7692df4918c0222a1640545384dbb | /Libraries/Boost1.40/tools/inspect/unnamed_namespace_check.cpp | 149bb0c654b05c768fd33b3e3508a2886fd7780b | [
"BSL-1.0"
] | permissive | fcrick/RepSnapper | 05e4fb1157f634acad575fffa2029f7f655b7940 | a5809843f37b7162f19765e852b968648b33b694 | refs/heads/master | 2021-01-17T21:42:29.537504 | 2010-06-07T05:38:05 | 2010-06-07T05:38:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,751 | cpp | // unnamed_namespace_check -----------------------------------------//
// Copyright Gennaro Prota 2006.
//
// 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)
#include "boost/regex.hpp"
#include "boost/lexical_cast.hpp"
#include "unnamed_namespace_check.hpp"
namespace
{
boost::regex unnamed_namespace_regex(
"\\<namespace\\s(\\?\\?<|\\{)" // trigraph ??< or {
);
} // unnamed namespace (ironical? :-)
namespace boost
{
namespace inspect
{
unnamed_namespace_check::unnamed_namespace_check() : m_errors(0)
{
register_signature( ".h" );
register_signature( ".hh" ); // just in case
register_signature( ".hpp" );
register_signature( ".hxx" ); // just in case
register_signature( ".inc" );
register_signature( ".ipp" );
register_signature( ".inl" );
}
void unnamed_namespace_check::inspect(
const string & library_name,
const path & full_path, // example: c:/foo/boost/filesystem/path.hpp
const string & contents ) // contents of file to be inspected
{
if (contents.find( "boostinspect:" "nounnamed" ) != string::npos) return;
boost::sregex_iterator cur(contents.begin(), contents.end(), unnamed_namespace_regex), end;
for( ; cur != end; ++cur, ++m_errors )
{
const string::size_type
ln = std::count( contents.begin(), (*cur)[0].first, '\n' ) + 1;
error( library_name, full_path, string(name()) + " unnamed namespace at line "
+ lexical_cast<string>(ln) );
}
}
} // namespace inspect
} // namespace boost
| [
"metrix@Blended.(none)"
] | metrix@Blended.(none) |
9af3fdb3b0efea2d9ff7d30b0d26ca497cbf0730 | b4db7259ae8c997f20ab5fd6c0dde3f1c156a041 | /src/test/merkle_tests.cpp | 17be56fca9d949ae0a7e30666574d5ffcfb3d032 | [
"MIT"
] | permissive | sparkscrypto/Sparks | 070a74a1ad7388857b9c98f023bdce4a99c3ab6d | 2c807e4a53662b55413e0d9d4c7d12dec6e7b331 | refs/heads/master | 2021-09-16T10:49:22.182869 | 2018-02-27T13:12:14 | 2018-02-27T13:12:14 | 114,945,575 | 14 | 16 | MIT | 2018-06-19T17:50:23 | 2017-12-21T00:55:13 | C++ | UTF-8 | C++ | false | false | 5,910 | cpp | // Copyright (c) 2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "consensus/merkle.h"
#include "test/test_Sparks.h"
#include "random.h"
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_TEST_SUITE(merkle_tests, TestingSetup)
// Older version of the merkle root computation code, for comparison.
static uint256 BlockBuildMerkleTree(const CBlock& block, bool* fMutated, std::vector<uint256>& vMerkleTree)
{
vMerkleTree.clear();
vMerkleTree.reserve(block.vtx.size() * 2 + 16); // Safe upper bound for the number of total nodes.
for (std::vector<CTransaction>::const_iterator it(block.vtx.begin()); it != block.vtx.end(); ++it)
vMerkleTree.push_back(it->GetHash());
int j = 0;
bool mutated = false;
for (int nSize = block.vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
{
for (int i = 0; i < nSize; i += 2)
{
int i2 = std::min(i+1, nSize-1);
if (i2 == i + 1 && i2 + 1 == nSize && vMerkleTree[j+i] == vMerkleTree[j+i2]) {
// Two identical hashes at the end of the list at a particular level.
mutated = true;
}
vMerkleTree.push_back(Hash(vMerkleTree[j+i].begin(), vMerkleTree[j+i].end(),
vMerkleTree[j+i2].begin(), vMerkleTree[j+i2].end()));
}
j += nSize;
}
if (fMutated) {
*fMutated = mutated;
}
return (vMerkleTree.empty() ? uint256() : vMerkleTree.back());
}
// Older version of the merkle branch computation code, for comparison.
static std::vector<uint256> BlockGetMerkleBranch(const CBlock& block, const std::vector<uint256>& vMerkleTree, int nIndex)
{
std::vector<uint256> vMerkleBranch;
int j = 0;
for (int nSize = block.vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
{
int i = std::min(nIndex^1, nSize-1);
vMerkleBranch.push_back(vMerkleTree[j+i]);
nIndex >>= 1;
j += nSize;
}
return vMerkleBranch;
}
static inline int ctz(uint32_t i) {
if (i == 0) return 0;
int j = 0;
while (!(i & 1)) {
j++;
i >>= 1;
}
return j;
}
BOOST_AUTO_TEST_CASE(merkle_test)
{
for (int i = 0; i < 32; i++) {
// Try 32 block sizes: all sizes from 0 to 16 inclusive, and then 15 random sizes.
int ntx = (i <= 16) ? i : 17 + (insecure_rand() % 4000);
// Try up to 3 mutations.
for (int mutate = 0; mutate <= 3; mutate++) {
int duplicate1 = mutate >= 1 ? 1 << ctz(ntx) : 0; // The last how many transactions to duplicate first.
if (duplicate1 >= ntx) break; // Duplication of the entire tree results in a different root (it adds a level).
int ntx1 = ntx + duplicate1; // The resulting number of transactions after the first duplication.
int duplicate2 = mutate >= 2 ? 1 << ctz(ntx1) : 0; // Likewise for the second mutation.
if (duplicate2 >= ntx1) break;
int ntx2 = ntx1 + duplicate2;
int duplicate3 = mutate >= 3 ? 1 << ctz(ntx2) : 0; // And for the the third mutation.
if (duplicate3 >= ntx2) break;
int ntx3 = ntx2 + duplicate3;
// Build a block with ntx different transactions.
CBlock block;
block.vtx.resize(ntx);
for (int j = 0; j < ntx; j++) {
CMutableTransaction mtx;
mtx.nLockTime = j;
block.vtx[j] = mtx;
}
// Compute the root of the block before mutating it.
bool unmutatedMutated = false;
uint256 unmutatedRoot = BlockMerkleRoot(block, &unmutatedMutated);
BOOST_CHECK(unmutatedMutated == false);
// Optionally mutate by duplicating the last transactions, resulting in the same merkle root.
block.vtx.resize(ntx3);
for (int j = 0; j < duplicate1; j++) {
block.vtx[ntx + j] = block.vtx[ntx + j - duplicate1];
}
for (int j = 0; j < duplicate2; j++) {
block.vtx[ntx1 + j] = block.vtx[ntx1 + j - duplicate2];
}
for (int j = 0; j < duplicate3; j++) {
block.vtx[ntx2 + j] = block.vtx[ntx2 + j - duplicate3];
}
// Compute the merkle root and merkle tree using the old mechanism.
bool oldMutated = false;
std::vector<uint256> merkleTree;
uint256 oldRoot = BlockBuildMerkleTree(block, &oldMutated, merkleTree);
// Compute the merkle root using the new mechanism.
bool newMutated = false;
uint256 newRoot = BlockMerkleRoot(block, &newMutated);
BOOST_CHECK(oldRoot == newRoot);
BOOST_CHECK(newRoot == unmutatedRoot);
BOOST_CHECK((newRoot == uint256()) == (ntx == 0));
BOOST_CHECK(oldMutated == newMutated);
BOOST_CHECK(newMutated == !!mutate);
// If no mutation was done (once for every ntx value), try up to 16 branches.
if (mutate == 0) {
for (int loop = 0; loop < std::min(ntx, 16); loop++) {
// If ntx <= 16, try all branches. Otherise, try 16 random ones.
int mtx = loop;
if (ntx > 16) {
mtx = insecure_rand() % ntx;
}
std::vector<uint256> newBranch = BlockMerkleBranch(block, mtx);
std::vector<uint256> oldBranch = BlockGetMerkleBranch(block, merkleTree, mtx);
BOOST_CHECK(oldBranch == newBranch);
BOOST_CHECK(ComputeMerkleRootFromBranch(block.vtx[mtx].GetHash(), newBranch, mtx) == oldRoot);
}
}
}
}
}
BOOST_AUTO_TEST_SUITE_END()
| [
"xoma200288@mail.ru"
] | xoma200288@mail.ru |
a9a9600f327e4eb63537fd64c5a89dc86651c259 | 2083070b7799082a084e3094e386de8d29dbfe27 | /compil/src/generator/cpp/format/method.h | deeb9643354a4ff038683ec153672e92dd8167f8 | [] | no_license | ggeorgiev/compil | 939a8320ad14e0d4d6fd86ce9b29c57bd3f068b0 | 42b91209c65a11a935b81a64cb15337c9501baa4 | refs/heads/master | 2021-01-10T21:01:24.235578 | 2014-06-29T02:47:17 | 2014-06-29T02:47:17 | 2,500,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,263 | h | // CompIL - Component Interface Language
// Copyright 2011 George Georgiev. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * The name of George Georgiev can not be used to endorse or
// promote products derived from this software without specific prior
// written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Author: george.georgiev@hotmail.com (George Georgiev)
//
// Boost C++ Smart Pointers
#include <boost/make_shared.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
// Standard Template Library
#include <vector>
#ifndef __GENERATOR_SELF_GENERATOR_CPP_FORMAT_METHOD_COMPIL_H_
#define __GENERATOR_SELF_GENERATOR_CPP_FORMAT_METHOD_COMPIL_H_
#include "argument.h"
#include "comment.h"
#include "method.h"
#include "method_declaration.h"
#include "method_name.h"
#include "method_specifier.h"
#include "namespace.h"
#include "type.h"
namespace cpp
{
namespace frm
{
class Method
{
public:
// Default constructor
Method ();
// Destructor
/*lax*/ ~Method ();
// Getter method for the data field comment
const CommentSPtr& comment () const;
// Setter method for the data field comment
Method& set_comment (const CommentSPtr& comment);
// Store operator for the data field comment
Method& operator<< (const CommentSPtr& comment);
// Getter method for the data field specifier
const EMethodSpecifier& specifier () const;
// Setter method for the data field specifier
Method& set_specifier (const EMethodSpecifier& specifier);
// Provides mutable access to field specifier
EMethodSpecifier& mutable_specifier ();
// Store operator for the data field specifier
Method& operator<< (const EMethodSpecifier& specifier);
// Getter method for the data field return
const TypeSPtr& return_ () const;
// Setter method for the data field return
Method& set_return (const TypeSPtr& return_);
// Store operator for the data field return
Method& operator<< (const TypeSPtr& return_);
// Getter method for the data field namespace
const NamespaceSPtr& namespace_ () const;
// Setter method for the data field namespace
Method& set_namespace (const NamespaceSPtr& namespace_);
// Store operator for the data field namespace
Method& operator<< (const NamespaceSPtr& namespace_);
// Getter method for the data field name
const MethodNameSPtr& name () const;
// Setter method for the data field name
Method& set_name (const MethodNameSPtr& name);
// Store operator for the data field name
Method& operator<< (const MethodNameSPtr& name);
// Getter method for the data field arguments
const std::vector<ArgumentSPtr>& arguments () const;
// Setter method for the data field arguments
Method& set_arguments (const std::vector<ArgumentSPtr>& arguments);
// Provides mutable access to field arguments
std::vector<ArgumentSPtr>& mutable_arguments ();
// Store operator for the data field arguments
Method& operator<< (const std::vector<ArgumentSPtr>& arguments);
// Store operator for an item of data field arguments
Method& operator<< (const ArgumentSPtr& argumentsItem);
// Getter method for the data field declaration
const EMethodDeclaration& declaration () const;
// Setter method for the data field declaration
Method& set_declaration (const EMethodDeclaration& declaration);
// Provides mutable access to field declaration
EMethodDeclaration& mutable_declaration();
// Store operator for the data field declaration
Method& operator<< (const EMethodDeclaration& declaration);
private:
// variable for the data field comment
CommentSPtr mComment;
// variable for the data field specifier
EMethodSpecifier mSpecifier;
// variable for the data field return
TypeSPtr mReturn;
// variable for the data field namespace
NamespaceSPtr mNamespace;
// variable for the data field name
MethodNameSPtr mName;
// variable for the data field arguments
std::vector<ArgumentSPtr> mArguments;
// variable for the data field declaration
EMethodDeclaration mDeclaration;
};
// Reference store operator for the data field comment
const MethodSPtr& operator<<(const MethodSPtr& , const CommentSPtr& );
// Reference store operator for the data field specifier
const MethodSPtr& operator<<(const MethodSPtr& , const EMethodSpecifier& );
// Reference store operator for the data field return
const MethodSPtr& operator<<(const MethodSPtr& , const TypeSPtr& );
// Reference store operator for the data field namespace
const MethodSPtr& operator<<(const MethodSPtr& , const NamespaceSPtr& );
// Reference store operator for the data field name
const MethodSPtr& operator<<(const MethodSPtr& , const MethodNameSPtr& );
// Reference store operator for the data field arguments
const MethodSPtr& operator<<(const MethodSPtr& , const std::vector<ArgumentSPtr>& );
// Reference store operator for an item of data field arguments
const MethodSPtr& operator<<(const MethodSPtr& , const ArgumentSPtr& );
// Reference store operator for the data field declaration
const MethodSPtr& operator<<(const MethodSPtr& , const EMethodDeclaration& );
inline MethodSPtr methodRef()
{
return boost::make_shared<Method>();
}
}
}
#else // __GENERATOR_SELF_GENERATOR_CPP_FORMAT_METHOD_COMPIL_H_
namespace cpp
{
namespace frm
{
// Forward declarations
class Method;
typedef Method* MethodRPtr;
typedef boost::shared_ptr<Method> MethodSPtr;
typedef boost::shared_ptr<const Method> MethodSCPtr;
typedef boost::weak_ptr<Method> MethodWPtr;
}
}
#endif // __GENERATOR_SELF_GENERATOR_CPP_FORMAT_METHOD_COMPIL_H_
| [
"george.georgiev@hotmail.com"
] | george.georgiev@hotmail.com |
8c0eadfc160f0f0614ea25f533f60b369908f92f | 03dab1de4229596fb7dd5eb530dd5ee986f7ef64 | /obstacleavoider.ino | 66fcdf728b03ce1ea33a76dbb1424494e965e0c7 | [] | no_license | Thebackyardelectricks/obstacle-avoider | c3d6cb45d4a9a44b1cfb741a2008095542c3791c | 9cffb30d579db42e191aa27f2fda77b12da57c92 | refs/heads/main | 2023-01-01T23:49:34.434216 | 2020-10-17T06:15:37 | 2020-10-17T06:15:37 | 304,811,029 | 0 | 0 | null | 2020-10-17T06:16:04 | 2020-10-17T06:16:04 | null | UTF-8 | C++ | false | false | 2,135 | ino | int trigPin = 5; // trig pin of HC-SR04
int echoPin = 4; // Echo pin of HC-SR04
int LMP1 = 8; //REVerse motion of Left motor
int LMN2 = 9; //ForWarD motion of Left motor
int RMP3 = 10; //REVerse motion of Right motor
int RMN4 = 11; //ForWarD motion of Right motor
long duration, distance;
void setup() {
delay(random(500,2000)); // delay for random time
Serial.begin(9600);
pinMode(LMP1, ); // set Motor pins as output
pinMode(LMN2, OUTPUT);
pinMode(RMP3, OUTPUT);
pinMode(RMN4, OUTPUT);
pinMode(trigPin, OUTPUT); // set trig pin as output
pinMode(echoPin, INPUT); //set echo pin as input to capture reflected waves
}
void loop() {
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH); // send waves for 10 us
delayMicroseconds(10);
duration = pulseIn(echoPin, HIGH); // receive reflected waves
distance = duration / 58.2; // convert to distance
delay(10);
// If you dont get proper movements of your robot then alter the pin numbers
if (distance > 19)
{
digitalWrite(RMN4, HIGH); // move forward
digitalWrite(RMP3, LOW);
digitalWrite(LMN2, HIGH);
digitalWrite(LMP1, LOW);
}
if (distance < 18)
{
digitalWrite(RMN4, LOW); //Stop
digitalWrite(RMP3, LOW);
digitalWrite(LMN2, LOW);
digitalWrite(LMP1, LOW);
delay(500);
digitalWrite(RMN4, LOW); //movebackword
digitalWrite(RMP3, HIGH);
digitalWrite(LMN2, LOW);
digitalWrite(LMP1, HIGH);
delay(500);
digitalWrite(RMN4, LOW); //Stop
digitalWrite(RMP3, LOW);
digitalWrite(LMN2, LOW);
digitalWrite(LMP1, LOW);
delay(100);
digitalWrite(RMN4, HIGH);
digitalWrite(RMP3, LOW);
digitalWrite(LMN2, LOW);
digitalWrite(LMP1, LOW);
delay(500);
}
}
| [
"noreply@github.com"
] | Thebackyardelectricks.noreply@github.com |
07ebf48b2e00e150a1add18ff739aeb64718fa0b | f986f173065c6a8bdd7f61d6ce25101553570499 | /matrices_stream.h | 44736f15f6741dea928260c277f4fdd58d7162ae | [] | no_license | jfbaer/MinimalResolution | fe6f4d14999ab22cf2a070260e07cfce8e4449e4 | 3006529b9c4cad41715bf46ff749263c60441889 | refs/heads/master | 2023-04-23T10:39:30.426695 | 2020-06-17T02:22:06 | 2020-06-17T02:22:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,132 | h | //matrices_stream.h
#pragma once
#include"matrices.h"
#include"matrices_mem.h"
#include"streams.h"
//matrix stored in streams
template<typename ring>
class matrix_stream : public matrix<ring>{
//the data for a matrix, consisting of a stream and an array of positions
con_streams *datas;
std::vector<std::ios::streampos> datapos;
public:
//the constructor
matrix_stream(con_streams *ds){
datas = ds;
this->rank = 0;
}
//clear the contents
void clear(){
datas->fclear();
datapos.clear();
this->rank = 0;
}
//find the n-th row
vectors<matrix_index,ring> find(matrix_index n) const{
auto pos = datapos[n];
std::function<vectors<matrix_index,ring>(std::iostream&)> reader = [this](std::iostream &is){
return this->moduleOper->load(is); };
return datas->read(reader, pos);
}
//insert a new row
void insert(matrix_index i, vectors<matrix_index,ring> const& x){
if(i>=datapos.size()){
datapos.resize(i+1);
this->rank = i+1;
}
std::function<void(std::iostream&)> writer = [this,&x](std::iostream &os){
this->moduleOper->save(x, os); };
datapos[i] = datas->write(writer);
}
//set the rank, note that the state is invalid after this operation
void set_rank(unsigned n){
this->rank = n;
datapos.resize(n);
}
//update all rows
void update_all(std::function<void(vectors<matrix_index,ring>&,matrix_index)> action){
std::cerr << "action not supported!";
}
//Gaussian ellimination, with given rows and colums
void gaussian(std::vector<std::pair<matrix_index,matrix_index>> const &row_cols){
matrix_mem<ring> M;
M.construct(this);
M.gaussian(row_cols);
this->construct(&M);
}
//delete some columns and then do Gaussion
void del_and_gaussian(std::vector<std::pair<matrix_index,matrix_index>> const &row_cols, std::set<int> const &to_del){
matrix_mem<ring> M;
M.construct(this);
M.del_and_gaussian(row_cols,to_del);
this->construct(&M);
}
};
//matrix stored in files
template<typename ring>
class matrix_file : public matrix_stream<ring>{
con_fstreams files;
public:
matrix_file(string filename) : matrix_stream<ring>(&files), files(filename){}
};
| [
"noreply@github.com"
] | jfbaer.noreply@github.com |
c6df620c8353d0682e6b1560d6723d8134cbeb6a | 1ad6afd3a08c5487701038af3ad4511420d7d410 | /llvm/tools/clang/tools/extra/clangd/Protocol.cpp | 566104ba25847f8eaf0e3328e72986d5ff550a7d | [
"NCSA"
] | permissive | geekwish/Bitype | a12a42337d74328f2559513c2b1f3bee4549a63d | 4b9605b6ba4d09efcdc97982ccd8b36e48d253cd | refs/heads/master | 2020-08-19T12:35:44.141934 | 2018-12-23T04:53:26 | 2018-12-23T04:53:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,125 | cpp | //===--- Protocol.cpp - Language Server Protocol Implementation -----------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the serialization code for the LSP structs.
//
//===----------------------------------------------------------------------===//
#include "Protocol.h"
#include "Logger.h"
#include "URI.h"
#include "clang/Basic/LLVM.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"
namespace clang {
namespace clangd {
URIForFile::URIForFile(std::string AbsPath) {
assert(llvm::sys::path::is_absolute(AbsPath) && "the path is relative");
File = std::move(AbsPath);
}
bool fromJSON(const json::Expr &E, URIForFile &R) {
if (auto S = E.asString()) {
auto U = URI::parse(*S);
if (!U) {
log("Failed to parse URI " + *S + ": " + llvm::toString(U.takeError()));
return false;
}
if (U->scheme() != "file" && U->scheme() != "test") {
log("Clangd only supports 'file' URI scheme for workspace files: " + *S);
return false;
}
auto Path = URI::resolve(*U);
if (!Path) {
log(llvm::toString(Path.takeError()));
return false;
}
R = URIForFile(*Path);
return true;
}
return false;
}
json::Expr toJSON(const URIForFile &U) { return U.uri(); }
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const URIForFile &U) {
return OS << U.uri();
}
json::Expr toJSON(const TextDocumentIdentifier &R) {
return json::obj{{"uri", R.uri}};
}
bool fromJSON(const json::Expr &Params, TextDocumentIdentifier &R) {
json::ObjectMapper O(Params);
return O && O.map("uri", R.uri);
}
bool fromJSON(const json::Expr &Params, Position &R) {
json::ObjectMapper O(Params);
return O && O.map("line", R.line) && O.map("character", R.character);
}
json::Expr toJSON(const Position &P) {
return json::obj{
{"line", P.line},
{"character", P.character},
};
}
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Position &P) {
return OS << P.line << ':' << P.character;
}
bool fromJSON(const json::Expr &Params, Range &R) {
json::ObjectMapper O(Params);
return O && O.map("start", R.start) && O.map("end", R.end);
}
json::Expr toJSON(const Range &P) {
return json::obj{
{"start", P.start},
{"end", P.end},
};
}
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Range &R) {
return OS << R.start << '-' << R.end;
}
json::Expr toJSON(const Location &P) {
return json::obj{
{"uri", P.uri},
{"range", P.range},
};
}
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Location &L) {
return OS << L.range << '@' << L.uri;
}
bool fromJSON(const json::Expr &Params, TextDocumentItem &R) {
json::ObjectMapper O(Params);
return O && O.map("uri", R.uri) && O.map("languageId", R.languageId) &&
O.map("version", R.version) && O.map("text", R.text);
}
bool fromJSON(const json::Expr &Params, Metadata &R) {
json::ObjectMapper O(Params);
if (!O)
return false;
O.map("extraFlags", R.extraFlags);
return true;
}
bool fromJSON(const json::Expr &Params, TextEdit &R) {
json::ObjectMapper O(Params);
return O && O.map("range", R.range) && O.map("newText", R.newText);
}
json::Expr toJSON(const TextEdit &P) {
return json::obj{
{"range", P.range},
{"newText", P.newText},
};
}
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const TextEdit &TE) {
OS << TE.range << " => \"";
PrintEscapedString(TE.newText, OS);
return OS << '"';
}
bool fromJSON(const json::Expr &E, TraceLevel &Out) {
if (auto S = E.asString()) {
if (*S == "off") {
Out = TraceLevel::Off;
return true;
} else if (*S == "messages") {
Out = TraceLevel::Messages;
return true;
} else if (*S == "verbose") {
Out = TraceLevel::Verbose;
return true;
}
}
return false;
}
bool fromJSON(const json::Expr &Params, CompletionItemClientCapabilities &R) {
json::ObjectMapper O(Params);
if (!O)
return false;
O.map("snippetSupport", R.snippetSupport);
O.map("commitCharacterSupport", R.commitCharacterSupport);
return true;
}
bool fromJSON(const json::Expr &Params, CompletionClientCapabilities &R) {
json::ObjectMapper O(Params);
if (!O)
return false;
O.map("dynamicRegistration", R.dynamicRegistration);
O.map("completionItem", R.completionItem);
O.map("contextSupport", R.contextSupport);
return true;
}
bool fromJSON(const json::Expr &Params, TextDocumentClientCapabilities &R) {
json::ObjectMapper O(Params);
if (!O)
return false;
O.map("completion", R.completion);
return true;
}
bool fromJSON(const json::Expr &Params, ClientCapabilities &R) {
json::ObjectMapper O(Params);
if (!O)
return false;
O.map("textDocument", R.textDocument);
return true;
}
bool fromJSON(const json::Expr &Params, InitializeParams &R) {
json::ObjectMapper O(Params);
if (!O)
return false;
// We deliberately don't fail if we can't parse individual fields.
// Failing to handle a slightly malformed initialize would be a disaster.
O.map("processId", R.processId);
O.map("rootUri", R.rootUri);
O.map("rootPath", R.rootPath);
O.map("capabilities", R.capabilities);
O.map("trace", R.trace);
// initializationOptions, capabilities unused
return true;
}
bool fromJSON(const json::Expr &Params, DidOpenTextDocumentParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("metadata", R.metadata);
}
bool fromJSON(const json::Expr &Params, DidCloseTextDocumentParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument);
}
bool fromJSON(const json::Expr &Params, DidChangeTextDocumentParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("contentChanges", R.contentChanges) &&
O.map("wantDiagnostics", R.wantDiagnostics);
}
bool fromJSON(const json::Expr &E, FileChangeType &Out) {
if (auto T = E.asInteger()) {
if (*T < static_cast<int>(FileChangeType::Created) ||
*T > static_cast<int>(FileChangeType::Deleted))
return false;
Out = static_cast<FileChangeType>(*T);
return true;
}
return false;
}
bool fromJSON(const json::Expr &Params, FileEvent &R) {
json::ObjectMapper O(Params);
return O && O.map("uri", R.uri) && O.map("type", R.type);
}
bool fromJSON(const json::Expr &Params, DidChangeWatchedFilesParams &R) {
json::ObjectMapper O(Params);
return O && O.map("changes", R.changes);
}
bool fromJSON(const json::Expr &Params, TextDocumentContentChangeEvent &R) {
json::ObjectMapper O(Params);
return O && O.map("range", R.range) && O.map("rangeLength", R.rangeLength) &&
O.map("text", R.text);
}
bool fromJSON(const json::Expr &Params, FormattingOptions &R) {
json::ObjectMapper O(Params);
return O && O.map("tabSize", R.tabSize) &&
O.map("insertSpaces", R.insertSpaces);
}
json::Expr toJSON(const FormattingOptions &P) {
return json::obj{
{"tabSize", P.tabSize},
{"insertSpaces", P.insertSpaces},
};
}
bool fromJSON(const json::Expr &Params, DocumentRangeFormattingParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("range", R.range) && O.map("options", R.options);
}
bool fromJSON(const json::Expr &Params, DocumentOnTypeFormattingParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("position", R.position) && O.map("ch", R.ch) &&
O.map("options", R.options);
}
bool fromJSON(const json::Expr &Params, DocumentFormattingParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("options", R.options);
}
bool fromJSON(const json::Expr &Params, Diagnostic &R) {
json::ObjectMapper O(Params);
if (!O || !O.map("range", R.range) || !O.map("message", R.message))
return false;
O.map("severity", R.severity);
return true;
}
bool fromJSON(const json::Expr &Params, CodeActionContext &R) {
json::ObjectMapper O(Params);
return O && O.map("diagnostics", R.diagnostics);
}
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Diagnostic &D) {
OS << D.range << " [";
switch (D.severity) {
case 1:
OS << "error";
break;
case 2:
OS << "warning";
break;
case 3:
OS << "note";
break;
case 4:
OS << "remark";
break;
default:
OS << "diagnostic";
break;
}
return OS << '(' << D.severity << "): " << D.message << "]";
}
bool fromJSON(const json::Expr &Params, CodeActionParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("range", R.range) && O.map("context", R.context);
}
bool fromJSON(const json::Expr &Params, WorkspaceEdit &R) {
json::ObjectMapper O(Params);
return O && O.map("changes", R.changes);
}
const llvm::StringLiteral ExecuteCommandParams::CLANGD_APPLY_FIX_COMMAND =
"clangd.applyFix";
const llvm::StringLiteral ExecuteCommandParams::CLANGD_INSERT_HEADER_INCLUDE =
"clangd.insertInclude";
bool fromJSON(const json::Expr &Params, ExecuteCommandParams &R) {
json::ObjectMapper O(Params);
if (!O || !O.map("command", R.command))
return false;
auto Args = Params.asObject()->getArray("arguments");
if (R.command == ExecuteCommandParams::CLANGD_APPLY_FIX_COMMAND) {
return Args && Args->size() == 1 &&
fromJSON(Args->front(), R.workspaceEdit);
} else if (R.command == ExecuteCommandParams::CLANGD_INSERT_HEADER_INCLUDE) {
return Args && Args->size() == 1 &&
fromJSON(Args->front(), R.includeInsertion);
}
return false; // Unrecognized command.
}
json::Expr toJSON(const Command &C) {
auto Cmd = json::obj{{"title", C.title}, {"command", C.command}};
if (C.workspaceEdit)
Cmd["arguments"] = {*C.workspaceEdit};
else if (C.includeInsertion)
Cmd["arguments"] = {*C.includeInsertion};
return std::move(Cmd);
}
json::Expr toJSON(const WorkspaceEdit &WE) {
if (!WE.changes)
return json::obj{};
json::obj FileChanges;
for (auto &Change : *WE.changes)
FileChanges[Change.first] = json::ary(Change.second);
return json::obj{{"changes", std::move(FileChanges)}};
}
bool fromJSON(const json::Expr &II, IncludeInsertion &R) {
json::ObjectMapper O(II);
return O && O.map("textDocument", R.textDocument) &&
O.map("declaringHeader", R.declaringHeader) &&
O.map("preferredHeader", R.preferredHeader);
}
json::Expr toJSON(const IncludeInsertion &II) {
return json::obj{{"textDocument", II.textDocument},
{"declaringHeader", II.declaringHeader},
{"preferredHeader", II.preferredHeader}};
}
json::Expr toJSON(const ApplyWorkspaceEditParams &Params) {
return json::obj{{"edit", Params.edit}};
}
bool fromJSON(const json::Expr &Params, TextDocumentPositionParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("position", R.position);
}
static StringRef toTextKind(MarkupKind Kind) {
switch (Kind) {
case MarkupKind::PlainText:
return "plaintext";
case MarkupKind::Markdown:
return "markdown";
}
llvm_unreachable("Invalid MarkupKind");
}
json::Expr toJSON(const MarkupContent &MC) {
if (MC.value.empty())
return nullptr;
return json::obj{
{"kind", toTextKind(MC.kind)},
{"value", MC.value},
};
}
json::Expr toJSON(const Hover &H) {
json::obj Result{{"contents", toJSON(H.contents)}};
if (H.range.hasValue())
Result["range"] = toJSON(*H.range);
return std::move(Result);
}
json::Expr toJSON(const CompletionItem &CI) {
assert(!CI.label.empty() && "completion item label is required");
json::obj Result{{"label", CI.label}};
if (CI.kind != CompletionItemKind::Missing)
Result["kind"] = static_cast<int>(CI.kind);
if (!CI.detail.empty())
Result["detail"] = CI.detail;
if (!CI.documentation.empty())
Result["documentation"] = CI.documentation;
if (!CI.sortText.empty())
Result["sortText"] = CI.sortText;
if (!CI.filterText.empty())
Result["filterText"] = CI.filterText;
if (!CI.insertText.empty())
Result["insertText"] = CI.insertText;
if (CI.insertTextFormat != InsertTextFormat::Missing)
Result["insertTextFormat"] = static_cast<int>(CI.insertTextFormat);
if (CI.textEdit)
Result["textEdit"] = *CI.textEdit;
if (!CI.additionalTextEdits.empty())
Result["additionalTextEdits"] = json::ary(CI.additionalTextEdits);
if (CI.command)
Result["command"] = *CI.command;
return std::move(Result);
}
bool operator<(const CompletionItem &L, const CompletionItem &R) {
return (L.sortText.empty() ? L.label : L.sortText) <
(R.sortText.empty() ? R.label : R.sortText);
}
json::Expr toJSON(const CompletionList &L) {
return json::obj{
{"isIncomplete", L.isIncomplete},
{"items", json::ary(L.items)},
};
}
json::Expr toJSON(const ParameterInformation &PI) {
assert(!PI.label.empty() && "parameter information label is required");
json::obj Result{{"label", PI.label}};
if (!PI.documentation.empty())
Result["documentation"] = PI.documentation;
return std::move(Result);
}
json::Expr toJSON(const SignatureInformation &SI) {
assert(!SI.label.empty() && "signature information label is required");
json::obj Result{
{"label", SI.label},
{"parameters", json::ary(SI.parameters)},
};
if (!SI.documentation.empty())
Result["documentation"] = SI.documentation;
return std::move(Result);
}
json::Expr toJSON(const SignatureHelp &SH) {
assert(SH.activeSignature >= 0 &&
"Unexpected negative value for number of active signatures.");
assert(SH.activeParameter >= 0 &&
"Unexpected negative value for active parameter index");
return json::obj{
{"activeSignature", SH.activeSignature},
{"activeParameter", SH.activeParameter},
{"signatures", json::ary(SH.signatures)},
};
}
bool fromJSON(const json::Expr &Params, RenameParams &R) {
json::ObjectMapper O(Params);
return O && O.map("textDocument", R.textDocument) &&
O.map("position", R.position) && O.map("newName", R.newName);
}
json::Expr toJSON(const DocumentHighlight &DH) {
return json::obj{
{"range", toJSON(DH.range)},
{"kind", static_cast<int>(DH.kind)},
};
}
bool fromJSON(const json::Expr &Params, DidChangeConfigurationParams &CCP) {
json::ObjectMapper O(Params);
return O && O.map("settings", CCP.settings);
}
bool fromJSON(const json::Expr &Params, ClangdConfigurationParamsChange &CCPC) {
json::ObjectMapper O(Params);
return O && O.map("compilationDatabasePath", CCPC.compilationDatabasePath);
}
} // namespace clangd
} // namespace clang
| [
"1131252124@qq.com"
] | 1131252124@qq.com |
2d3f24179696e896f898d33d0fd594d04cdba742 | ed1343271e50e9feeefffebde8fe0d49c1de13e0 | /GL/src/picopng.h | 46e86d724194f6ae9b16f3c220449ad8c9b29b5d | [] | no_license | alxklk/OGLBase | 7bad233017c905826ce008af1db18663ac05040e | d0605c02f8d3742828491e2854a2ac707868649e | refs/heads/master | 2021-01-10T14:28:50.658502 | 2015-10-17T13:47:33 | 2015-10-17T13:47:33 | 43,898,260 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,068 | h | #include <stddef.h>
namespace ppng
{
template <typename T>struct iter
{
int pos;
iter(int i=-1) :pos(i) {};
};
template <typename T> class varray
{
T dummy;
T* buf;
unsigned int sz;
unsigned int cap;
public:
~varray()
{
delete[] buf;
}
varray()
{
cap=1024;
buf=new T[cap];
sz=0;
}
varray(const varray<T>& right)
{
cap=right.cap;
T* newBuf=new T[cap];
sz=right.sz;
for(unsigned int i=0;i<sz;i++)
{
newBuf[i]=right.buf[i];
}
buf=newBuf;
}
varray(size_t newSize, const T& newVal=T())
{
cap=newSize*2;
buf=new T[cap];
sz=newSize;
for(size_t i=0;i<cap;i++)
buf[i]=newVal;
}
size_t size()const{return sz;};
T& operator[](size_t index)
{
if(index>=sz)
return dummy;
return buf[index];
}
const T& operator[](size_t index)const
{
if(index>=sz)
return dummy;
return buf[index];
}
void resize(size_t newsz, const T& newVal=T())
{
if(sz<newsz)
{
bool swapBufs=false;
T* newBuf=buf;
if(cap<newsz)
{
swapBufs=true;
cap=newsz*2;
newBuf=new T[cap];
for(size_t i=0;i<sz;i++)
{
newBuf[i]=buf[i];
}
}
for(size_t i=sz;i<newsz;i++)
{
newBuf[i]=newVal;
}
if(swapBufs)
{
if(buf)
delete[] buf;
buf=newBuf;
}
sz=newsz;
}
else
{
sz=newsz;
}
}
void clear(){sz=0;}
iter <T> end(){return iter<T>(-1);};
bool empty()const{return sz==0;}
void insert(iter<T> into, const T* from, const T* to)
{
int oldsz=sz;
resize(sz+(to-from));
while(from!=to)
{
buf[oldsz]=*from;
from++;
oldsz++;
}
}
};
}
/*
decodePNG: The picoPNG function, decodes a PNG file buffer in memory, into a raw pixel buffer.
out_image: output parameter, this will contain the raw pixels after decoding.
By default the output is 32-bit RGBA color.
The ppng::varray is automatically resized to the correct size.
image_width: output_parameter, this will contain the width of the image in pixels.
image_height: output_parameter, this will contain the height of the image in pixels.
in_png: pointer to the buffer of the PNG file in memory. To get it from a file on
disk, load it and store it in a memory buffer yourself first.
in_size: size of the input PNG file in bytes.
convert_to_rgba32: optional parameter, true by default.
Set to true to get the output in RGBA 32-bit (8 bit per channel) color format
no matter what color type the original PNG image had. This gives predictable,
useable data from any random input PNG.
Set to false to do no color conversion at all. The result then has the same data
type as the PNG image, which can range from 1 bit to 64 bits per pixel.
Information about the color type or palette colors are not provided. You need
to know this information yourself to be able to use the data so this only
works for trusted PNG files. Use LodePNG instead of picoPNG if you need this information.
return: 0 if success, not 0 if some error occured.
*/
inline int decodePNG(ppng::varray<unsigned char>& out_image, unsigned long& image_width, unsigned long& image_height, const unsigned char* in_png, size_t in_size, bool convert_to_rgba32 = true)
{
// picoPNG version 20101224
// Copyright (c) 2005-2010 Lode Vandevenne
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
// picoPNG is a PNG decoder in one C++ function of around 500 lines. Use picoPNG for
// programs that need only 1 .cpp file. Since it's a single function, it's very limited,
// it can convert a PNG to raw pixel data either converted to 32-bit RGBA color or
// with no color conversion at all. For anything more complex, another tiny library
// is available: LodePNG (lodepng.c(pp)), which is a single source and header file.
// Apologies for the compact code style, it's to make this tiny.
static const unsigned long LENBASE[29] = {3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258};
static const unsigned long LENEXTRA[29] = {0,0,0,0,0,0,0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
static const unsigned long DISTBASE[30] = {1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577};
static const unsigned long DISTEXTRA[30] = {0,0,0,0,1,1,2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
static const unsigned long CLCL[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; //code length code lengths
struct Zlib //nested functions for zlib decompression
{
static unsigned long readBitFromStream(size_t& bitp, const unsigned char* bits) { unsigned long result = (bits[bitp >> 3] >> (bitp & 0x7)) & 1; bitp++; return result;}
static unsigned long readBitsFromStream(size_t& bitp, const unsigned char* bits, size_t nbits)
{
unsigned long result = 0;
for(size_t i = 0; i < nbits; i++) result += (readBitFromStream(bitp, bits)) << i;
return result;
}
struct HuffmanTree
{
int makeFromLengths(const ppng::varray<unsigned long>& bitlen, unsigned long maxbitlen)
{ //make tree given the lengths
unsigned long numcodes = (unsigned long)(bitlen.size()), treepos = 0, nodefilled = 0;
ppng::varray<unsigned long> tree1d(numcodes), blcount(maxbitlen + 1, 0), nextcode(maxbitlen + 1, 0);
for(unsigned long bits = 0; bits < numcodes; bits++) blcount[bitlen[bits]]++; //count number of instances of each code length
for(unsigned long bits = 1; bits <= maxbitlen; bits++) nextcode[bits] = (nextcode[bits - 1] + blcount[bits - 1]) << 1;
for(unsigned long n = 0; n < numcodes; n++) if(bitlen[n] != 0) tree1d[n] = nextcode[bitlen[n]]++; //generate all the codes
tree2d.clear(); tree2d.resize(numcodes * 2, 32767); //32767 here means the tree2d isn't filled there yet
for(unsigned long n = 0; n < numcodes; n++) //the codes
for(unsigned long i = 0; i < bitlen[n]; i++) //the bits for this code
{
unsigned long bit = (tree1d[n] >> (bitlen[n] - i - 1)) & 1;
if(treepos > numcodes - 2) return 55;
if(tree2d[2 * treepos + bit] == 32767) //not yet filled in
{
if(i + 1 == bitlen[n]) { tree2d[2 * treepos + bit] = n; treepos = 0; } //last bit
else { tree2d[2 * treepos + bit] = ++nodefilled + numcodes; treepos = nodefilled; } //addresses are encoded as values > numcodes
}
else treepos = tree2d[2 * treepos + bit] - numcodes; //subtract numcodes from address to get address value
}
return 0;
}
int decode(bool& decoded, unsigned long& result, size_t& treepos, unsigned long bit) const
{ //Decodes a symbol from the tree
unsigned long numcodes = (unsigned long)tree2d.size() / 2;
if(treepos >= numcodes) return 11; //error: you appeared outside the codetree
result = tree2d[2 * treepos + bit];
decoded = (result < numcodes);
treepos = decoded ? 0 : result - numcodes;
return 0;
}
ppng::varray<unsigned long> tree2d; //2D representation of a huffman tree: The one dimension is "0" or "1", the other contains all nodes and leaves of the tree.
};
struct Inflator
{
int error;
void inflate(ppng::varray<unsigned char>& out, const ppng::varray<unsigned char>& in, size_t inpos = 0)
{
size_t bp = 0, pos = 0; //bit pointer and byte pointer
error = 0;
unsigned long BFINAL = 0;
while(!BFINAL && !error)
{
if(bp >> 3 >= in.size()) { error = 52; return; } //error, bit pointer will jump past memory
BFINAL = readBitFromStream(bp, &in[inpos]);
unsigned long BTYPE = readBitFromStream(bp, &in[inpos]); BTYPE += 2 * readBitFromStream(bp, &in[inpos]);
if(BTYPE == 3) { error = 20; return; } //error: invalid BTYPE
else if(BTYPE == 0) inflateNoCompression(out, &in[inpos], bp, pos, in.size());
else inflateHuffmanBlock(out, &in[inpos], bp, pos, in.size(), BTYPE);
}
if(!error) out.resize(pos); //Only now we know the true size of out, resize it to that
}
void generateFixedTrees(HuffmanTree& tree, HuffmanTree& treeD) //get the tree of a deflated block with fixed tree
{
ppng::varray<unsigned long> bitlen(288, 8), bitlenD(32, 5);;
for(size_t i = 144; i <= 255; i++) bitlen[i] = 9;
for(size_t i = 256; i <= 279; i++) bitlen[i] = 7;
tree.makeFromLengths(bitlen, 15);
treeD.makeFromLengths(bitlenD, 15);
}
HuffmanTree codetree, codetreeD, codelengthcodetree; //the code tree for Huffman codes, dist codes, and code length codes
unsigned long huffmanDecodeSymbol(const unsigned char* in, size_t& bp, const HuffmanTree& codetree, size_t inlength)
{ //decode a single symbol from given list of bits with given code tree. return value is the symbol
bool decoded; unsigned long ct;
for(size_t treepos = 0;;)
{
if((bp & 0x07) == 0 && (bp >> 3) > inlength) { error = 10; return 0; } //error: end reached without endcode
error = codetree.decode(decoded, ct, treepos, readBitFromStream(bp, in)); if(error) return 0; //stop, an error happened
if(decoded) return ct;
}
}
void getTreeInflateDynamic(HuffmanTree& tree, HuffmanTree& treeD, const unsigned char* in, size_t& bp, size_t inlength)
{ //get the tree of a deflated block with dynamic tree, the tree itself is also Huffman compressed with a known tree
ppng::varray<unsigned long> bitlen(288, 0), bitlenD(32, 0);
if(bp >> 3 >= inlength - 2) { error = 49; return; } //the bit pointer is or will go past the memory
size_t HLIT = readBitsFromStream(bp, in, 5) + 257; //number of literal/length codes + 257
size_t HDIST = readBitsFromStream(bp, in, 5) + 1; //number of dist codes + 1
size_t HCLEN = readBitsFromStream(bp, in, 4) + 4; //number of code length codes + 4
ppng::varray<unsigned long> codelengthcode(19); //lengths of tree to decode the lengths of the dynamic tree
for(size_t i = 0; i < 19; i++) codelengthcode[CLCL[i]] = (i < HCLEN) ? readBitsFromStream(bp, in, 3) : 0;
error = codelengthcodetree.makeFromLengths(codelengthcode, 7); if(error) return;
size_t i = 0, replength;
while(i < HLIT + HDIST)
{
unsigned long code = huffmanDecodeSymbol(in, bp, codelengthcodetree, inlength); if(error) return;
if(code <= 15) { if(i < HLIT) bitlen[i++] = code; else bitlenD[i++ - HLIT] = code; } //a length code
else if(code == 16) //repeat previous
{
if(bp >> 3 >= inlength) { error = 50; return; } //error, bit pointer jumps past memory
replength = 3 + readBitsFromStream(bp, in, 2);
unsigned long value; //set value to the previous code
if((i - 1) < HLIT) value = bitlen[i - 1];
else value = bitlenD[i - HLIT - 1];
for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
{
if(i >= HLIT + HDIST) { error = 13; return; } //error: i is larger than the amount of codes
if(i < HLIT) bitlen[i++] = value; else bitlenD[i++ - HLIT] = value;
}
}
else if(code == 17) //repeat "0" 3-10 times
{
if(bp >> 3 >= inlength) { error = 50; return; } //error, bit pointer jumps past memory
replength = 3 + readBitsFromStream(bp, in, 3);
for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
{
if(i >= HLIT + HDIST) { error = 14; return; } //error: i is larger than the amount of codes
if(i < HLIT) bitlen[i++] = 0; else bitlenD[i++ - HLIT] = 0;
}
}
else if(code == 18) //repeat "0" 11-138 times
{
if(bp >> 3 >= inlength) { error = 50; return; } //error, bit pointer jumps past memory
replength = 11 + readBitsFromStream(bp, in, 7);
for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
{
if(i >= HLIT + HDIST) { error = 15; return; } //error: i is larger than the amount of codes
if(i < HLIT) bitlen[i++] = 0; else bitlenD[i++ - HLIT] = 0;
}
}
else { error = 16; return; } //error: somehow an unexisting code appeared. This can never happen.
}
if(bitlen[256] == 0) { error = 64; return; } //the length of the end code 256 must be larger than 0
error = tree.makeFromLengths(bitlen, 15); if(error) return; //now we've finally got HLIT and HDIST, so generate the code trees, and the function is done
error = treeD.makeFromLengths(bitlenD, 15); if(error) return;
}
void inflateHuffmanBlock(ppng::varray<unsigned char>& out, const unsigned char* in, size_t& bp, size_t& pos, size_t inlength, unsigned long btype)
{
if(btype == 1) { generateFixedTrees(codetree, codetreeD); }
else if(btype == 2) { getTreeInflateDynamic(codetree, codetreeD, in, bp, inlength); if(error) return; }
for(;;)
{
unsigned long code = huffmanDecodeSymbol(in, bp, codetree, inlength); if(error) return;
if(code == 256) return; //end code
else if(code <= 255) //literal symbol
{
if(pos >= out.size()) out.resize((pos + 1) * 2); //reserve more room
out[pos++] = (unsigned char)(code);
}
else if(code >= 257 && code <= 285) //length code
{
size_t length = LENBASE[code - 257], numextrabits = LENEXTRA[code - 257];
if((bp >> 3) >= inlength) { error = 51; return; } //error, bit pointer will jump past memory
length += readBitsFromStream(bp, in, numextrabits);
unsigned long codeD = huffmanDecodeSymbol(in, bp, codetreeD, inlength); if(error) return;
if(codeD > 29) { error = 18; return; } //error: invalid dist code (30-31 are never used)
unsigned long dist = DISTBASE[codeD], numextrabitsD = DISTEXTRA[codeD];
if((bp >> 3) >= inlength) { error = 51; return; } //error, bit pointer will jump past memory
dist += readBitsFromStream(bp, in, numextrabitsD);
size_t start = pos, back = start - dist; //backwards
if(pos + length >= out.size()) out.resize((pos + length) * 2); //reserve more room
for(size_t i = 0; i < length; i++) { out[pos++] = out[back++]; if(back >= start) back = start - dist; }
}
}
}
void inflateNoCompression(ppng::varray<unsigned char>& out, const unsigned char* in, size_t& bp, size_t& pos, size_t inlength)
{
while((bp & 0x7) != 0) bp++; //go to first boundary of byte
size_t p = bp / 8;
if(p >= inlength - 4) { error = 52; return; } //error, bit pointer will jump past memory
unsigned long LEN = in[p] + 256 * in[p + 1], NLEN = in[p + 2] + 256 * in[p + 3]; p += 4;
if(LEN + NLEN != 65535) { error = 21; return; } //error: NLEN is not one's complement of LEN
if(pos + LEN >= out.size()) out.resize(pos + LEN);
if(p + LEN > inlength) { error = 23; return; } //error: reading outside of in buffer
for(unsigned long n = 0; n < LEN; n++) out[pos++] = in[p++]; //read LEN bytes of literal data
bp = p * 8;
}
};
int decompress(ppng::varray<unsigned char>& out, const ppng::varray<unsigned char>& in) //returns error value
{
Inflator inflator;
if(in.size() < 2) { return 53; } //error, size of zlib data too small
if((in[0] * 256 + in[1]) % 31 != 0) { return 24; } //error: 256 * in[0] + in[1] must be a multiple of 31, the FCHECK value is supposed to be made that way
unsigned long CM = in[0] & 15, CINFO = (in[0] >> 4) & 15, FDICT = (in[1] >> 5) & 1;
if(CM != 8 || CINFO > 7) { return 25; } //error: only compression method 8: inflate with sliding window of 32k is supported by the PNG spec
if(FDICT != 0) { return 26; } //error: the specification of PNG says about the zlib stream: "The additional flags shall not specify a preset dictionary."
inflator.inflate(out, in, 2);
return inflator.error; //note: adler32 checksum was skipped and ignored
}
};
struct PNG //nested functions for PNG decoding
{
struct Info
{
unsigned long width, height, colorType, bitDepth, compressionMethod, filterMethod, interlaceMethod, key_r, key_g, key_b;
bool key_defined; //is a transparent color key given?
ppng::varray<unsigned char> palette;
} info;
int error;
void decode(ppng::varray<unsigned char>& out, const unsigned char* in, size_t size, bool convert_to_rgba32)
{
error = 0;
if(size == 0 || in == 0) { error = 48; return; } //the given data is empty
readPngHeader(&in[0], size); if(error) return;
size_t pos = 33; //first byte of the first chunk after the header
ppng::varray<unsigned char> idat; //the data from idat chunks
bool IEND = false;
info.key_defined = false;
while(!IEND) //loop through the chunks, ignoring unknown chunks and stopping at IEND chunk. IDAT data is put at the start of the in buffer
{
if(pos + 8 >= size) { error = 30; return; } //error: size of the in buffer too small to contain next chunk
size_t chunkLength = read32bitInt(&in[pos]); pos += 4;
if(chunkLength > 2147483647) { error = 63; return; }
if(pos + chunkLength >= size) { error = 35; return; } //error: size of the in buffer too small to contain next chunk
if(in[pos + 0] == 'I' && in[pos + 1] == 'D' && in[pos + 2] == 'A' && in[pos + 3] == 'T') //IDAT chunk, containing compressed image data
{
idat.insert(idat.end(), &in[pos + 4], &in[pos + 4 + chunkLength]);
pos += (4 + chunkLength);
}
else if(in[pos + 0] == 'I' && in[pos + 1] == 'E' && in[pos + 2] == 'N' && in[pos + 3] == 'D') { pos += 4; IEND = true; }
else if(in[pos + 0] == 'P' && in[pos + 1] == 'L' && in[pos + 2] == 'T' && in[pos + 3] == 'E') //palette chunk (PLTE)
{
pos += 4; //go after the 4 letters
info.palette.resize(4 * (chunkLength / 3));
if(info.palette.size() > (4 * 256)) { error = 38; return; } //error: palette too big
for(size_t i = 0; i < info.palette.size(); i += 4)
{
for(size_t j = 0; j < 3; j++) info.palette[i + j] = in[pos++]; //RGB
info.palette[i + 3] = 255; //alpha
}
}
else if(in[pos + 0] == 't' && in[pos + 1] == 'R' && in[pos + 2] == 'N' && in[pos + 3] == 'S') //palette transparency chunk (tRNS)
{
pos += 4; //go after the 4 letters
if(info.colorType == 3)
{
if(4 * chunkLength > info.palette.size()) { error = 39; return; } //error: more alpha values given than there are palette entries
for(size_t i = 0; i < chunkLength; i++) info.palette[4 * i + 3] = in[pos++];
}
else if(info.colorType == 0)
{
if(chunkLength != 2) { error = 40; return; } //error: this chunk must be 2 bytes for greyscale image
info.key_defined = 1; info.key_r = info.key_g = info.key_b = 256 * in[pos] + in[pos + 1]; pos += 2;
}
else if(info.colorType == 2)
{
if(chunkLength != 6) { error = 41; return; } //error: this chunk must be 6 bytes for RGB image
info.key_defined = 1;
info.key_r = 256 * in[pos] + in[pos + 1]; pos += 2;
info.key_g = 256 * in[pos] + in[pos + 1]; pos += 2;
info.key_b = 256 * in[pos] + in[pos + 1]; pos += 2;
}
else { error = 42; return; } //error: tRNS chunk not allowed for other color models
}
else //it's not an implemented chunk type, so ignore it: skip over the data
{
if(!(in[pos + 0] & 32)) { error = 69; return; } //error: unknown critical chunk (5th bit of first byte of chunk type is 0)
pos += (chunkLength + 4); //skip 4 letters and uninterpreted data of unimplemented chunk
}
pos += 4; //step over CRC (which is ignored)
}
unsigned long bpp = getBpp(info);
ppng::varray<unsigned char> scanlines(((info.width * (info.height * bpp + 7)) / 8) + info.height); //now the out buffer will be filled
Zlib zlib; //decompress with the Zlib decompressor
error = zlib.decompress(scanlines, idat); if(error) return; //stop if the zlib decompressor returned an error
size_t bytewidth = (bpp + 7) / 8, outlength = (info.height * info.width * bpp + 7) / 8;
out.resize(outlength); //time to fill the out buffer
unsigned char* out_ = outlength ? &out[0] : 0; //use a regular pointer to the ppng::varray for faster code if compiled without optimization
if(info.interlaceMethod == 0) //no interlace, just filter
{
size_t linestart = 0, linelength = (info.width * bpp + 7) / 8; //length in bytes of a scanline, excluding the filtertype byte
if(bpp >= 8) //byte per byte
for(unsigned long y = 0; y < info.height; y++)
{
unsigned long filterType = scanlines[linestart];
const unsigned char* prevline = (y == 0) ? 0 : &out_[(y - 1) * info.width * bytewidth];
unFilterScanline(&out_[linestart - y], &scanlines[linestart + 1], prevline, bytewidth, filterType, linelength); if(error) return;
linestart += (1 + linelength); //go to start of next scanline
}
else //less than 8 bits per pixel, so fill it up bit per bit
{
ppng::varray<unsigned char> templine((info.width * bpp + 7) >> 3); //only used if bpp < 8
for(size_t y = 0, obp = 0; y < info.height; y++)
{
unsigned long filterType = scanlines[linestart];
const unsigned char* prevline = (y == 0) ? 0 : &out_[(y - 1) * info.width * bytewidth];
unFilterScanline(&templine[0], &scanlines[linestart + 1], prevline, bytewidth, filterType, linelength); if(error) return;
for(size_t bp = 0; bp < info.width * bpp;) setBitOfReversedStream(obp, out_, readBitFromReversedStream(bp, &templine[0]));
linestart += (1 + linelength); //go to start of next scanline
}
}
}
else //interlaceMethod is 1 (Adam7)
{
size_t passw[7] = { (info.width + 7) / 8, (info.width + 3) / 8, (info.width + 3) / 4, (info.width + 1) / 4, (info.width + 1) / 2, (info.width + 0) / 2, (info.width + 0) / 1 };
size_t passh[7] = { (info.height + 7) / 8, (info.height + 7) / 8, (info.height + 3) / 8, (info.height + 3) / 4, (info.height + 1) / 4, (info.height + 1) / 2, (info.height + 0) / 2 };
size_t passstart[7] = {0};
size_t pattern[28] = {0,4,0,2,0,1,0,0,0,4,0,2,0,1,8,8,4,4,2,2,1,8,8,8,4,4,2,2}; //values for the adam7 passes
for(int i = 0; i < 6; i++) passstart[i + 1] = passstart[i] + passh[i] * ((passw[i] ? 1 : 0) + (passw[i] * bpp + 7) / 8);
ppng::varray<unsigned char> scanlineo((info.width * bpp + 7) / 8), scanlinen((info.width * bpp + 7) / 8); //"old" and "new" scanline
for(int i = 0; i < 7; i++)
adam7Pass(&out_[0], &scanlinen[0], &scanlineo[0], &scanlines[passstart[i]], info.width, pattern[i], pattern[i + 7], pattern[i + 14], pattern[i + 21], passw[i], passh[i], bpp);
}
if(convert_to_rgba32 && (info.colorType != 6 || info.bitDepth != 8)) //conversion needed
{
ppng::varray<unsigned char> data = out;
error = convert(out, &data[0], info, info.width, info.height);
}
}
void readPngHeader(const unsigned char* in, size_t inlength) //read the information from the header and store it in the Info
{
if(inlength < 29) { error = 27; return; } //error: the data length is smaller than the length of the header
if(in[0] != 137 || in[1] != 80 || in[2] != 78 || in[3] != 71 || in[4] != 13 || in[5] != 10 || in[6] != 26 || in[7] != 10) { error = 28; return; } //no PNG signature
if(in[12] != 'I' || in[13] != 'H' || in[14] != 'D' || in[15] != 'R') { error = 29; return; } //error: it doesn't start with a IHDR chunk!
info.width = read32bitInt(&in[16]); info.height = read32bitInt(&in[20]);
info.bitDepth = in[24]; info.colorType = in[25];
info.compressionMethod = in[26]; if(in[26] != 0) { error = 32; return; } //error: only compression method 0 is allowed in the specification
info.filterMethod = in[27]; if(in[27] != 0) { error = 33; return; } //error: only filter method 0 is allowed in the specification
info.interlaceMethod = in[28]; if(in[28] > 1) { error = 34; return; } //error: only interlace methods 0 and 1 exist in the specification
error = checkColorValidity(info.colorType, info.bitDepth);
}
void unFilterScanline(unsigned char* recon, const unsigned char* scanline, const unsigned char* precon, size_t bytewidth, unsigned long filterType, size_t length)
{
switch(filterType)
{
case 0: for(size_t i = 0; i < length; i++) recon[i] = scanline[i]; break;
case 1:
for(size_t i = 0; i < bytewidth; i++) recon[i] = scanline[i];
for(size_t i = bytewidth; i < length; i++) recon[i] = scanline[i] + recon[i - bytewidth];
break;
case 2:
if(precon) for(size_t i = 0; i < length; i++) recon[i] = scanline[i] + precon[i];
else for(size_t i = 0; i < length; i++) recon[i] = scanline[i];
break;
case 3:
if(precon)
{
for(size_t i = 0; i < bytewidth; i++) recon[i] = scanline[i] + precon[i] / 2;
for(size_t i = bytewidth; i < length; i++) recon[i] = scanline[i] + ((recon[i - bytewidth] + precon[i]) / 2);
}
else
{
for(size_t i = 0; i < bytewidth; i++) recon[i] = scanline[i];
for(size_t i = bytewidth; i < length; i++) recon[i] = scanline[i] + recon[i - bytewidth] / 2;
}
break;
case 4:
if(precon)
{
for(size_t i = 0; i < bytewidth; i++) recon[i] = scanline[i] + paethPredictor(0, precon[i], 0);
for(size_t i = bytewidth; i < length; i++) recon[i] = scanline[i] + paethPredictor(recon[i - bytewidth], precon[i], precon[i - bytewidth]);
}
else
{
for(size_t i = 0; i < bytewidth; i++) recon[i] = scanline[i];
for(size_t i = bytewidth; i < length; i++) recon[i] = scanline[i] + paethPredictor(recon[i - bytewidth], 0, 0);
}
break;
default: error = 36; return; //error: unexisting filter type given
}
}
void adam7Pass(unsigned char* out, unsigned char* linen, unsigned char* lineo, const unsigned char* in, unsigned long w, size_t passleft, size_t passtop, size_t spacex, size_t spacey, size_t passw, size_t passh, unsigned long bpp)
{ //filter and reposition the pixels into the output when the image is Adam7 interlaced. This function can only do it after the full image is already decoded. The out buffer must have the correct allocated memory size already.
if(passw == 0) return;
size_t bytewidth = (bpp + 7) / 8, linelength = 1 + ((bpp * passw + 7) / 8);
for(unsigned long y = 0; y < passh; y++)
{
unsigned char filterType = in[y * linelength], *prevline = (y == 0) ? 0 : lineo;
unFilterScanline(linen, &in[y * linelength + 1], prevline, bytewidth, filterType, (w * bpp + 7) / 8); if(error) return;
if(bpp >= 8) for(size_t i = 0; i < passw; i++) for(size_t b = 0; b < bytewidth; b++) //b = current byte of this pixel
out[bytewidth * w * (passtop + spacey * y) + bytewidth * (passleft + spacex * i) + b] = linen[bytewidth * i + b];
else for(size_t i = 0; i < passw; i++)
{
size_t obp = bpp * w * (passtop + spacey * y) + bpp * (passleft + spacex * i), bp = i * bpp;
for(size_t b = 0; b < bpp; b++) setBitOfReversedStream(obp, out, readBitFromReversedStream(bp, &linen[0]));
}
unsigned char* temp = linen; linen = lineo; lineo = temp; //swap the two buffer pointers "line old" and "line new"
}
}
static unsigned long readBitFromReversedStream(size_t& bitp, const unsigned char* bits) { unsigned long result = (bits[bitp >> 3] >> (7 - (bitp & 0x7))) & 1; bitp++; return result;}
static unsigned long readBitsFromReversedStream(size_t& bitp, const unsigned char* bits, unsigned long nbits)
{
unsigned long result = 0;
for(size_t i = nbits - 1; i < nbits; i--) result += ((readBitFromReversedStream(bitp, bits)) << i);
return result;
}
void setBitOfReversedStream(size_t& bitp, unsigned char* bits, unsigned long bit) { bits[bitp >> 3] |= (bit << (7 - (bitp & 0x7))); bitp++; }
unsigned long read32bitInt(const unsigned char* buffer) { return (buffer[0] << 24) | (buffer[1] << 16) | (buffer[2] << 8) | buffer[3]; }
int checkColorValidity(unsigned long colorType, unsigned long bd) //return type is a LodePNG error code
{
if((colorType == 2 || colorType == 4 || colorType == 6)) { if(!(bd == 8 || bd == 16)) return 37; else return 0; }
else if(colorType == 0) { if(!(bd == 1 || bd == 2 || bd == 4 || bd == 8 || bd == 16)) return 37; else return 0; }
else if(colorType == 3) { if(!(bd == 1 || bd == 2 || bd == 4 || bd == 8 )) return 37; else return 0; }
else return 31; //unexisting color type
}
unsigned long getBpp(const Info& info)
{
if(info.colorType == 2) return (3 * info.bitDepth);
else if(info.colorType >= 4) return (info.colorType - 2) * info.bitDepth;
else return info.bitDepth;
}
int convert(ppng::varray<unsigned char>& out, const unsigned char* in, Info& infoIn, unsigned long w, unsigned long h)
{ //converts from any color type to 32-bit. return value = LodePNG error code
size_t numpixels = w * h, bp = 0;
out.resize(numpixels * 4);
unsigned char* out_ = out.empty() ? 0 : &out[0]; //faster if compiled without optimization
if(infoIn.bitDepth == 8 && infoIn.colorType == 0) //greyscale
for(size_t i = 0; i < numpixels; i++)
{
out_[4 * i + 0] = out_[4 * i + 1] = out_[4 * i + 2] = in[i];
out_[4 * i + 3] = (infoIn.key_defined && in[i] == infoIn.key_r) ? 0 : 255;
}
else if(infoIn.bitDepth == 8 && infoIn.colorType == 2) //RGB color
for(size_t i = 0; i < numpixels; i++)
{
for(size_t c = 0; c < 3; c++) out_[4 * i + c] = in[3 * i + c];
out_[4 * i + 3] = (infoIn.key_defined == 1 && in[3 * i + 0] == infoIn.key_r && in[3 * i + 1] == infoIn.key_g && in[3 * i + 2] == infoIn.key_b) ? 0 : 255;
}
else if(infoIn.bitDepth == 8 && infoIn.colorType == 3) //indexed color (palette)
for(size_t i = 0; i < numpixels; i++)
{
if(4U * in[i] >= infoIn.palette.size()) return 46;
for(size_t c = 0; c < 4; c++) out_[4 * i + c] = infoIn.palette[4 * in[i] + c]; //get rgb colors from the palette
}
else if(infoIn.bitDepth == 8 && infoIn.colorType == 4) //greyscale with alpha
for(size_t i = 0; i < numpixels; i++)
{
out_[4 * i + 0] = out_[4 * i + 1] = out_[4 * i + 2] = in[2 * i + 0];
out_[4 * i + 3] = in[2 * i + 1];
}
else if(infoIn.bitDepth == 8 && infoIn.colorType == 6) for(size_t i = 0; i < numpixels; i++) for(size_t c = 0; c < 4; c++) out_[4 * i + c] = in[4 * i + c]; //RGB with alpha
else if(infoIn.bitDepth == 16 && infoIn.colorType == 0) //greyscale
for(size_t i = 0; i < numpixels; i++)
{
out_[4 * i + 0] = out_[4 * i + 1] = out_[4 * i + 2] = in[2 * i];
out_[4 * i + 3] = (infoIn.key_defined && 256U * in[i] + in[i + 1] == infoIn.key_r) ? 0 : 255;
}
else if(infoIn.bitDepth == 16 && infoIn.colorType == 2) //RGB color
for(size_t i = 0; i < numpixels; i++)
{
for(size_t c = 0; c < 3; c++) out_[4 * i + c] = in[6 * i + 2 * c];
out_[4 * i + 3] = (infoIn.key_defined && 256U*in[6*i+0]+in[6*i+1] == infoIn.key_r && 256U*in[6*i+2]+in[6*i+3] == infoIn.key_g && 256U*in[6*i+4]+in[6*i+5] == infoIn.key_b) ? 0 : 255;
}
else if(infoIn.bitDepth == 16 && infoIn.colorType == 4) //greyscale with alpha
for(size_t i = 0; i < numpixels; i++)
{
out_[4 * i + 0] = out_[4 * i + 1] = out_[4 * i + 2] = in[4 * i]; //most significant byte
out_[4 * i + 3] = in[4 * i + 2];
}
else if(infoIn.bitDepth == 16 && infoIn.colorType == 6) for(size_t i = 0; i < numpixels; i++) for(size_t c = 0; c < 4; c++) out_[4 * i + c] = in[8 * i + 2 * c]; //RGB with alpha
else if(infoIn.bitDepth < 8 && infoIn.colorType == 0) //greyscale
for(size_t i = 0; i < numpixels; i++)
{
unsigned long value = (readBitsFromReversedStream(bp, in, infoIn.bitDepth) * 255) / ((1 << infoIn.bitDepth) - 1); //scale value from 0 to 255
out_[4 * i + 0] = out_[4 * i + 1] = out_[4 * i + 2] = (unsigned char)(value);
out_[4 * i + 3] = (infoIn.key_defined && value && ((1U << infoIn.bitDepth) - 1U) == infoIn.key_r && ((1U << infoIn.bitDepth) - 1U)) ? 0 : 255;
}
else if(infoIn.bitDepth < 8 && infoIn.colorType == 3) //palette
for(size_t i = 0; i < numpixels; i++)
{
unsigned long value = readBitsFromReversedStream(bp, in, infoIn.bitDepth);
if(4 * value >= infoIn.palette.size()) return 47;
for(size_t c = 0; c < 4; c++) out_[4 * i + c] = infoIn.palette[4 * value + c]; //get rgb colors from the palette
}
return 0;
}
unsigned char paethPredictor(short a, short b, short c) //Paeth predicter, used by PNG filter type 4
{
short p = a + b - c, pa = p > a ? (p - a) : (a - p), pb = p > b ? (p - b) : (b - p), pc = p > c ? (p - c) : (c - p);
return (unsigned char)((pa <= pb && pa <= pc) ? a : pb <= pc ? b : c);
}
};
PNG decoder; decoder.decode(out_image, in_png, in_size, convert_to_rgba32);
image_width = decoder.info.width; image_height = decoder.info.height;
return decoder.error;
}
/*
//an example using the PNG loading function:
#include <iostream>
#include <fstream>
void loadFile(ppng::varray<unsigned char>& buffer, const ppng::string& filename) //designed for loading files from hard disk in an ppng::varray
{
ppng::ifstream file(filename.c_str(), ppng::ios::in|ppng::ios::binary|ppng::ios::ate);
//get filesize
ppng::streamsize size = 0;
if(file.seekg(0, ppng::ios::end).good()) size = file.tellg();
if(file.seekg(0, ppng::ios::beg).good()) size -= file.tellg();
//read contents of the file into the varray
if(size > 0)
{
buffer.resize((size_t)size);
file.read((char*)(&buffer[0]), size);
}
else buffer.clear();
}
int main(int argc, char *argv[])
{
const char* filename = argc > 1 ? argv[1] : "test.png";
//load and decode
ppng::varray<unsigned char> buffer, image;
loadFile(buffer, filename);
unsigned long w, h;
int error = decodePNG(image, w, h, buffer.empty() ? 0 : &buffer[0], (unsigned long)buffer.size());
//if there's an error, display it
if(error != 0) ppng::cout << "error: " << error << ppng::endl;
//the pixels are now in the varray "image", use it as texture, draw it, ...
if(image.size() > 4) ppng::cout << "width: " << w << " height: " << h << " first pixel: " << ppng::hex << int(image[0]) << int(image[1]) << int(image[2]) << int(image[3]) << ppng::endl;
}
*/
/*
//this is test code, it displays the pixels of a 1 bit PNG. To use it, set the flag convert_to_rgba32 to false and load a 1-bit PNG image with a small size (so that its ASCII representation can fit in a console window)
for(int y = 0; y < h; y++)
{
for(int x = 0; x < w; x++)
{
int i = y * h + x;
ppng::cout << (((image[i/8] >> (7-i%8)) & 1) ? '.' : '#');
}
ppng::cout << ppng::endl;
}
*/
| [
"Cinemafarm115%"
] | Cinemafarm115% |
2ab060697f3617755fa1c41870b10b6fa15003d2 | c80bd757f18735452eef1f0f7cd7bd305d4313c7 | /src/Modules/Legacy/Fields/GenerateElectrode.cc | 099b2e92437dbf760090d06908b63b96c10a918d | [
"MIT"
] | permissive | kenlouie/SCIRunGUIPrototype | 956449f4b4ce3ed76ccc1fa23a6656f084c3a9b1 | 062ff605839b076177c4e50f08cf36d83a6a9220 | refs/heads/master | 2020-12-25T03:11:44.510875 | 2013-10-01T05:51:39 | 2013-10-01T05:51:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,560 | cc | /*
* The MIT License
*
* Copyright (c) 2008 Scientific Computing and Imaging Institute,
* University of Utah.
*
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
//This module makes a mesh that looks like a wire
#include <Dataflow/Network/Module.h>
#include <Dataflow/Network/Ports/GeometryPort.h>
#include <Dataflow/Network/Ports/FieldPort.h>
#include <Dataflow/Network/Ports/MatrixPort.h>
#include <Core/Datatypes/Field.h>
#include <Core/Datatypes/Mesh.h>
#include <Core/Datatypes/MeshTypes.h>
#include <Core/Datatypes/Matrix.h>
#include <Core/Datatypes/DenseMatrix.h>
#include <Core/Geometry/Point.h>
#include <Core/Datatypes/PointCloudMesh.h>
#include <Core/Datatypes/VMesh.h>
#include <Core/Datatypes/FieldInformation.h>
#include <Core/Thread/CrowdMonitor.h>
#include <Dataflow/Widgets/PointWidget.h>
#include <Dataflow/Widgets/ArrowWidget.h>
#include <iostream>
#include <list>
#include <string>
#include <stack>
namespace SCIRun {
// equivalent to the interp1 command in matlab. uses the parameters p and t to perform a cubic spline interpolation pp in one direction.
bool
CalculateSpline(std::vector<double>& t, std::vector<double>& x, std::vector<double>& tt, std::vector<double>& xx)
{
// need to have at least 3 nodes
if (t.size() < 3) return (false);
if (x.size() != t.size()) return (false);
//cout<<"------beginning spline algorithm"<<endl;
size_t size = x.size();
std::vector<double> z(size), h(size-1), b(size-1), v(size-1), u(size-1);
for (size_t k=0;k<size-1;k++)
{
h[k]=(t[k+1]-t[k]);
b[k]=(6*(x[k+1]-x[k])/h[k]);
//cout<<"--- h="<<h[k]<<", b="<<b[k]<<" and k = "<< k<< endl;
}
//cout<<"-----h and b calculated"<<endl;
u[1]=2*(h[0]+h[1]);
v[1]=b[1]-b[0];
for (size_t k=2;k<size-1;k++)
{
u[k]=2*(h[k]+h[k-1])-(h[k-1]*h[k-1])/u[k-1];
v[k]=b[k]-b[k-1]-h[k-1]*v[k-1]/u[k-1];
//cout<<"--- u="<<u[k]<<", v="<<v[k]<<" and k = "<< k<< endl;
}
//cout<<"----- u and v calculated"<<endl;
z[size-1]=0;
for (size_t k=size-2;k>0;k--)
{
z[k]=(v[k]-h[k]*z[k+1])/u[k];
//cout<<"--- z="<<z[k]<<" and k = "<< k<< endl;
}
z[0]=0;
//cout<<"----- z calculated"<<endl;
size_t segment = 0;
xx.resize(tt.size());
for(size_t k = 0; k < tt.size(); k++)
{
while (segment < (size-2) && t[segment+1] < tt[k])
{
segment++;
//cout<<"----- segment number "<<segment<<endl;
}
double w0,w1,w2,w3,a,b,c,d;
w3=(t[segment+1]-tt[k]);
w0=w3*w3*w3;
w2=(tt[k]-t[segment]);
w1=w2*w2*w2;
a=z[segment]/(6*h[segment]);
b=z[segment+1]/(6*h[segment]);
c=(x[segment+1]/h[segment]-(z[segment+1]*h[segment])/6);
d=(x[segment]/h[segment]-z[segment]*h[segment]/6);
xx[k]=a*w0+b*w1+c*w2+d*w3;
}
//cout<<"----- xx calculated"<<endl;
return (true);
}
// this is a sline function. pp is the final points that are in between the original points p.
// t and tt are the original and final desired spacing, respectively.
bool
CalculateSpline(std::vector<double>& t, std::vector<Point>& p, std::vector<double>& tt, std::vector<Point>& pp)
{
// need to have at least 3 nodes
if (t.size() < 3) return (false);
if (p.size() != t.size()) return (false);
size_t size=p.size();
std::vector<double> x(size), y(size), z(size);
std::vector<double> xx, yy, zz;
for (size_t k=0;k<p.size();k++)
{
x[k]=p[k].x();
y[k]=p[k].y();
z[k]=p[k].z();
}
//cout<< "-----widget points reassigned"<< endl;
CalculateSpline(t,x,tt,xx);
CalculateSpline(t,y,tt,yy);
CalculateSpline(t,z,tt,zz);
//cout<< "-----executed interpolation commands"<< endl;
for (size_t k=0;k<tt.size();k++) pp.push_back(Point(xx[k],yy[k],zz[k]));
//cout<< "----spline interpolation done!!"<< endl;
return (true);
}
class GenerateElectrode : public Module
{
public:
GenerateElectrode(GuiContext* ctx);
~GenerateElectrode(){};
virtual void execute();
virtual void widget_moved(bool, BaseWidget*);
virtual void tcl_command(GuiArgs& args, void* userdata);
virtual void post_read(); // get the widget state...
virtual void presave();
void add_point(std::vector<Point>& p);
bool remove_point();
//void reset();
void create_widgets(std::vector<Point>& points);
void create_widgets(std::vector<Point>& points,Vector& direction);
void get_points(std::vector<Point>& points);
void get_centers(std::vector<Point>& p,std::vector<Point>& pp);
void Make_Mesh_Wire(std::vector<Point>& points, FieldHandle& ofield);
void Make_Mesh_Planar(std::vector<Point>& points, FieldHandle& ofield, Vector& direction);
private:
CrowdMonitor widget_lock_;
GeomHandle widget_switch_;
GeometryOPortHandle geom_oport_;
std::vector<PointWidget*> widget_;
ArrowWidget* arrow_widget_;
GuiVectorHandle widget_direction_;
std::vector<GuiPointHandle> widget_point_;
GuiDouble gui_probe_scale_;
GuiDouble gui_color_r_;
GuiDouble gui_color_g_;
GuiDouble gui_color_b_;
GuiInt gui_widget_points_;
GuiDouble gui_length_;
GuiDouble gui_width_;
GuiDouble gui_thick_;
GuiString gui_moveto_;
GuiString gui_type_;
GuiString gui_project_;
GuiInt gui_use_field_;
GuiInt gui_move_all_;
GuiInt gui_wire_res_;
bool color_changed_;
bool move_all_;
std::vector<Point> Previous_points_;
};
DECLARE_MAKER(GenerateElectrode)
GenerateElectrode::GenerateElectrode(GuiContext* ctx)
: Module("GenerateElectrode", ctx, Source, "NewField", "SCIRun"),
widget_lock_("GenerateElectrode widget lock"),
arrow_widget_(0),
gui_probe_scale_(get_ctx()->subVar("probe_scale"), 3.0),
gui_color_r_(get_ctx()->subVar("color-r"), 1.0),
gui_color_g_(get_ctx()->subVar("color-g"), 1.0),
gui_color_b_(get_ctx()->subVar("color-b"), 1.0),
gui_widget_points_(get_ctx()->subVar("num_points"),5),
gui_length_(get_ctx()->subVar("length"),.1),
gui_width_(get_ctx()->subVar("width"),.02),
gui_thick_(get_ctx()->subVar("thick"),.003),
gui_moveto_(get_ctx()->subVar("moveto"), ""),
gui_type_(get_ctx()->subVar("electrode_type"),"wire"),
gui_project_(get_ctx()->subVar("project"),"midway"),
gui_use_field_(get_ctx()->subVar("use-field"),1),
gui_move_all_(get_ctx()->subVar("move-all"),0),
gui_wire_res_(get_ctx()->subVar("wire_res"),10)
{
get_oport_handle("Electrode Widget",geom_oport_);
}
void
GenerateElectrode::execute()
{
//cout<< "----begin execute" << endl;
FieldHandle source, ofield, pfield;
MatrixHandle source_matrix;
const bool input_field_p =get_input_handle("Input Field",source,false);
const bool input_matrix_p =get_input_handle("Parameter Matrix",source_matrix,false);
update_state(Executing);
//cout<< "----matrix stuff one start" << endl;
size_type num_para=0;
size_type num_col=0;
if (input_matrix_p)
{
//cout<< "----matrix input" << endl;
num_para=source_matrix->nrows();
num_col=source_matrix->ncols();
}
//cout<< "----matrix stuff one start " << endl;
if (input_matrix_p && num_para == 5 && num_col == 1)
{
double* sm=source_matrix->get_data_pointer();
double temp=sm[0];
gui_length_.set(temp);
temp=sm[1];
gui_width_.set(temp);
temp=sm[2];
gui_thick_.set(temp);
temp=sm[3];
gui_wire_res_.set(static_cast<int> (temp));
temp=sm[4];
if (temp==1) gui_type_.set("planar");
else if (temp==0) gui_type_.set("wire");
else
{
error("Last value in the input matrix needs to be 1 or 0");
return;
}
}
if (input_matrix_p && (num_para != 5 || num_col != 1))
{
error("Parameter matrix needs to be right size (1x5). This input is optional, but remember: Length, Width, Thickness, Resolution, Type (1=planar, 0=wire)");
return;
}
FieldInformation fis(source);
std::vector<Point> orig_points;
Vector direction;
Vector defdir=Vector(-10,10,10);
const std::string &moveto = gui_moveto_.get();
//cout<<"moveto="<<moveto<<endl;
int use_field=gui_use_field_.get();
const std::string &electrode_type=gui_type_.get();
if (input_field_p && (use_field==1) && (moveto=="default" || widget_.size()==0 || inputs_changed_))
{
//cout<< "----using field data"<< endl;
VMesh* smesh = source->vmesh();
smesh->synchronize(Mesh::ELEM_LOCATE_E);
VMesh::Node::size_type num_nodes = smesh->num_nodes();
if (num_nodes>50)
{
error("Why would you want to use that many nodes to make an electrode? Do you want to crash you system? That's way to many.");
return;
}
VMesh::Node::array_type a;
orig_points.resize(num_nodes);
for (VMesh::Node::index_type idx=0;idx<num_nodes;idx++)
{
Point ap;
smesh->get_center(ap,idx);
orig_points[idx]=ap;
direction=defdir;
}
gui_moveto_.set("");
}
else if ((!input_field_p || use_field==0) && (moveto=="default" || widget_.size()==0))
{
double l, lx;
l=gui_length_.get();
lx=l*.5774;
orig_points.resize(5);
orig_points[0]=(Point(0,0,0));
orig_points[1]=(Point(lx*.25,lx*.25,lx*.25));
orig_points[2]=(Point(lx*.5,lx*.5,lx*.5));
orig_points[3]=(Point(lx*.75,lx*.75,lx*.75));
orig_points[4]=(Point(lx,lx,lx));
direction=defdir;
//cout<<"----using default positions"<<endl;
gui_moveto_.set("");
}
else if (moveto=="add_point")
{
add_point(orig_points);
if(electrode_type=="planar"){
direction=arrow_widget_->GetDirection();
}
else{
direction=defdir;
}
gui_moveto_.set("");
//return;
}
else if (moveto=="remove_point")
{
remove_point();
gui_moveto_.set("");
return;
}
else
{
//cout<< "---- case 3"<< endl;
size_t n=widget_.size(), s=0;
orig_points.resize(n);
direction=defdir;
if(arrow_widget_)
{
n=n+1;
s=1;
orig_points.resize(n);
direction=arrow_widget_->GetDirection();
orig_points[0]=arrow_widget_->GetPosition();
}
for (size_t k = s; k < n; k++)
{
orig_points[k] = widget_[k-s]->GetPosition();
//cout<<"---- position "<<k<<" = "<<orig_points[k]<<endl;
}
//cout<<"---using widget position"<<endl;
}
gui_widget_points_.set(orig_points.size());
if(electrode_type=="wire") arrow_widget_=0;
if (Previous_points_.size()<3)
{
Previous_points_=orig_points;
//cout<<"no Previous_points_"<<endl;
}
//cout<<"--- original point vector size="<<orig_points.size()<<endl;
size_type size=orig_points.size();
Vector move_dist;
size_t move_idx;
std::vector<Point> temp_points;
//for (size_t k=0;k<size;k++) cout<<"---- Previous_points_= "<<Previous_points_[k]<<". orig_point ="<<orig_points[k]<<endl;
//cout<<"-------------"<<endl;
if(move_all_==true)
{
for (size_t k=0;k<size;k++)
{
//cout<<"---- Previous_points_= "<<Previous_points_[k]<<endl;
if(orig_points[k]!=Previous_points_[k])
{
move_dist=orig_points[k]-Previous_points_[k];
move_idx=k;
}
//cout<<"----move_dist = "<<move_dist<<endl;
}
for (size_t k=0;k<size;k++)
{
if (k==move_idx) temp_points.push_back(orig_points[k]);
else temp_points.push_back(orig_points[k]+move_dist);
//cout<<"----second time move_dist = "<<move_dist<<endl;
}
orig_points=temp_points;
move_all_=false;
}
std::vector<Point> final_points;
std::vector<Point> points(size);
if(electrode_type=="wire") create_widgets(orig_points);
if(electrode_type=="planar") create_widgets(orig_points,direction);
Previous_points_=orig_points;
FieldInformation pi("PointCloudMesh",0,"double");
MeshHandle pmesh = CreateMesh(pi);
for (VMesh::Node::index_type idx=0;idx<orig_points.size();idx++) pmesh->vmesh()->add_point(orig_points[idx]);
pi.make_double();
pfield = CreateField(pi,pmesh);
send_output_handle("Control Points",pfield);
//cout<<"widgets created"<<endl;
get_centers(points,final_points);
//cout<<"spline done"<<endl;
if(electrode_type=="wire") Make_Mesh_Wire(final_points,ofield);
if(electrode_type=="planar") Make_Mesh_Planar(final_points,ofield,direction);
MatrixHandle Parameters = new DenseMatrix(5,1);
double* P=Parameters->get_data_pointer();
double temp=gui_length_.get();
P[0]=temp;
temp=gui_width_.get();
P[1]=temp;
temp=gui_thick_.get();
P[2]=temp;
temp=static_cast<double> (gui_wire_res_.get());
P[3]=temp;
if (electrode_type=="wire") temp=0;
else if (electrode_type=="planar") temp=1;
P[4]=temp;
send_output_handle("Parameter Matrix", Parameters);
//cout<< "----matrix stuff two" << endl;
//}
}
void
GenerateElectrode::Make_Mesh_Wire(std::vector<Point>& final_points, FieldHandle& ofield)
{
//-------make wire mesh---------
FieldInformation fi("TetVolMesh",0,"double");
MeshHandle mesh = CreateMesh(fi);
VMesh::Node::array_type nodes;
double Pi=3.14159;
double radius=gui_thick_.get()*.5;
size_t DN=gui_wire_res_.get();
Vector Vold1, Vold2;
Vector V1, V2, V, Vx, Vy;
Vold1[0]=1;
Vold1[1]=0;
Vold1[2]=0;
Vold2[0]=0;
Vold2[1]=1;
Vold2[2]=0;
size_t N=final_points.size();
std::vector<Point> p=final_points;
std::vector<double> phi(DN);
std::vector<Point> fin_nodes;
for (size_t q=0;q<DN;q++)
{
phi[q]=q*(2*Pi/(static_cast<double> (DN)));
//cout <<"q= "<<q<< ". phi= "<<phi[q]<<". DN= "<<DN<<endl;
}
for (size_t k=0;k<N;k++)
{
if (k==N-1)
{
V1=p[k]-p[k-1];
V2=V1;
}
else if (k==0)
{
V2=p[k+1]-p[k];
V1=V2;
}
else
{
V1=p[k]-p[k-1];
V2=p[k+1]-p[k];
}
if (sqrt(V1[0]*V1[0] + V1[1]*V1[1] + V1[2]*V1[2])>0)
{
V1.normalize();
}
else
{
V1[0]=1; V1[1]=0; V1[2]=0;
}
if (sqrt(V2[0]*V2[0] + V2[1]*V2[1] + V2[2]*V2[2])>0)
{
V2.normalize();
}
else
{
V2[0]=0; V2[1]=1; V2[2]=0;
}
V=(V1+V2)*.5;
V.normalize();
//cout<<"k= "<<k<<". V1= "<<V1<<". V2= "<<V2<<". V= "<<V<<endl;
if (Dot(V,Vold1)<.9)
{
Vx=Cross(V,Vold1);
Vy=Cross(V,Vx);
}
else
{
Vx=Cross(V,Vold2);
Vy=Cross(V,Vx);
}
Vx.normalize();
Vy.normalize();
Vold1=-Vy;
Vold2=Vx;
fin_nodes.push_back(p[k]);
for (size_t q=0;q<DN;q++)
{
fin_nodes.push_back(Point(p[k]+Vx*radius*cos(phi[q])+Vy*radius*sin(phi[q])));
//cout<<"last Point: "<<fin_nodes[k]<<". q= "<<q<<endl;
}
}
for (VMesh::Node::index_type idx=0;idx<fin_nodes.size();idx++)
{
mesh->vmesh()->add_point(fin_nodes[idx]);
mesh->vmesh()->get_nodes(nodes,idx);
}
VMesh::Node::index_type SE=0, EE=0, SE1, SE2, EE1, EE2;
std::vector<size_t> L(DN+1);
for (size_t k=0;k<DN;k++)
{
L[k]=k+1;
}
L[DN]=1;
for (VMesh::Node::index_type idx=0;idx<final_points.size()-1;idx++)
{
SE=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+(static_cast<int> (DN))+1);
for (VMesh::Node::index_type k=0;k<DN;k++)
{
SE1=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+(static_cast<int> (L[k])));
SE2=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+(static_cast<int> (L[k+1])));
EE1=static_cast<VMesh::Node::index_type> (static_cast<int> (EE)+(static_cast<int> (L[k])));
EE2=static_cast<VMesh::Node::index_type> (static_cast<int> (EE)+(static_cast<int> (L[k+1])));
VMesh::Node::array_type elem_nodes(4);
elem_nodes[0]=EE;
elem_nodes[1]=EE1;
elem_nodes[2]=EE2;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=EE1;
elem_nodes[1]=EE2;
elem_nodes[2]=SE2;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=EE1;
elem_nodes[1]=SE1;
elem_nodes[2]=SE2;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
}
EE=static_cast<VMesh::Node::index_type> (static_cast<int> (EE)+(static_cast<int> (DN))+1);
}
//add_edge(nodes);
fi.make_double();
ofield = CreateField(fi,mesh);
send_output_handle("Output Field",ofield);
}
void
GenerateElectrode::Make_Mesh_Planar(std::vector<Point>& final_points, FieldHandle& ofield, Vector& direction)
{
//-------make planar mesh---------
FieldInformation fi("TetVolMesh",0,"double");
MeshHandle mesh = CreateMesh(fi);
VMesh::Node::array_type nodes;
bool vect_strangeness=false;
bool res_strangeness=false;
const std::string &proj=gui_project_.get();
double aa, bb;
if (proj=="positive")
{
aa=0;
bb=1;
}
else if (proj=="midway")
{
aa=.5;
bb=1;
}
else if (proj=="negative")
{
aa=0;
bb=-1;
}
//cout <<"proj= "<<proj<<". aa = "<<aa<<". bb "<<bb<<endl;
Vector V1, V2, V, Vx, Vy, Vxold;
double width=gui_width_.get()/2;
double thick=gui_thick_.get();
size_t N=final_points.size();
std::vector<Point> fin_nodes;
Vector direc=arrow_widget_->GetDirection();
direction.normalize();
std::vector<Point> p=final_points;
Point srp_old, srn_old, pr_old;
Vector temp1, temp2;
double temp1_mag, temp2_mag;
for (size_t k=0;k<N;k++)
{
if (k==N-1)
{
V1=p[k]-p[k-1];
V2=V1;
}
else if (k==0)
{
V2=p[k+1]-p[k];
V1=V2;
}
else
{
V1=p[k]-p[k-1];
V2=p[k+1]-p[k];
}
if (sqrt(V1[0]*V1[0] + V1[1]*V1[1] + V1[2]*V1[2])>0)
{
V1.normalize();
}
else
{
V1[0]=1; V1[1]=0; V1[2]=0;
}
if (sqrt(V2[0]*V2[0] + V2[1]*V2[1] + V2[2]*V2[2])>0)
{
V2.normalize();
}
else
{
V2[0]=0; V2[1]=1; V2[2]=0;
}
V=(V1+V2)*.5;
V.normalize();
if (Dot(V1,direc)>.8)
{
vect_strangeness=true;
//std::cout <<"V1 . direction = "<<Dot(V1,direc)<<std::endl;
}
Vx=Cross(V1,direc);
if (Dot(Vx,Vxold)<.3 && k>0)
{
vect_strangeness=true;
//std::cout <<"newx . oldx = "<<Dot(Vx,Vxold)<<std::endl;
Vx=Vxold;
}
Vy=Cross(V1,Vx);
/*
}
else
{
Vx=Cross(V2,direc);
Vy=Cross(V2,Vy);
}
*/
Vx.normalize();
Vy.normalize();
Point pr=Point(p[k]+Vy*thick*aa);
fin_nodes.push_back(pr);
fin_nodes.push_back(Point(pr-Vy*thick*bb));
Point srp=Point(pr+Vx*width);
fin_nodes.push_back(srp);
fin_nodes.push_back(Point(pr+Vx*width-Vy*thick*bb));
Point srn=Point(pr-Vx*width);
fin_nodes.push_back(srn);
fin_nodes.push_back(Point(pr-Vx*width-Vy*thick*bb));
Vxold=Vx;
if (k>0)
{
temp1=srp_old-pr;
temp2=srn_old-pr;
temp1_mag=sqrt(temp1[0]*temp1[0]+temp1[1]*temp1[1]+temp1[2]*temp1[2]);
temp2_mag=sqrt(temp2[0]*temp2[0]+temp2[1]*temp2[1]+temp2[2]*temp2[2]);
if (temp1_mag<width)
{
res_strangeness=true;
}
}
srp_old=srp;
srn_old=srn;
pr_old=pr;
}
if (vect_strangeness)
{
warning("Vector is close to parrallel to part of the spline. Consider adjusting");
}
if (res_strangeness)
{
warning("Resulting mesh elements may cross. Consider modifying control points or vector, changing width, or changing resolution");
}
for (VMesh::Node::index_type idx=0;idx<fin_nodes.size();idx++)
{
mesh->vmesh()->add_point(fin_nodes[idx]);
}
VMesh::Node::index_type EE=0, EE1=1, EE2=2,EE3=3,EE4=4,EE5=5;
VMesh::Node::index_type SE, SE1, SE2,SE3,SE4,SE5;
int DN=5;
SE=static_cast<VMesh::Node::index_type> (DN+1);
SE1=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+1);
SE2=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+2);
SE3=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+3);
SE4=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+4);
SE5=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+5);
for (VMesh::Node::index_type idx=0;idx<N-1;idx++)
{
EE1=static_cast<VMesh::Node::index_type> (static_cast<int> (EE)+1);
VMesh::Node::array_type elem_nodes(4);
//right side elements
elem_nodes[0]=EE;
elem_nodes[1]=EE1;
elem_nodes[2]=EE2;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=EE1;
elem_nodes[2]=EE2;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=EE2;
elem_nodes[2]=EE3;
elem_nodes[3]=EE1;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE;
elem_nodes[1]=SE1;
elem_nodes[2]=SE2;
elem_nodes[3]=EE2;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=SE2;
elem_nodes[2]=SE3;
elem_nodes[3]=EE2;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=EE2;
elem_nodes[2]=EE3;
elem_nodes[3]=SE3;
mesh->vmesh()->add_elem(elem_nodes);
//left side elements
elem_nodes[0]=EE;
elem_nodes[1]=EE1;
elem_nodes[2]=EE4;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=EE1;
elem_nodes[2]=EE4;
elem_nodes[3]=SE;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=EE4;
elem_nodes[2]=EE5;
elem_nodes[3]=EE1;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE;
elem_nodes[1]=SE1;
elem_nodes[2]=SE4;
elem_nodes[3]=EE4;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=SE4;
elem_nodes[2]=SE5;
elem_nodes[3]=EE4;
mesh->vmesh()->add_elem(elem_nodes);
elem_nodes[0]=SE1;
elem_nodes[1]=EE4;
elem_nodes[2]=EE5;
elem_nodes[3]=SE5;
mesh->vmesh()->add_elem(elem_nodes);
EE=SE;
EE1=SE1;
EE2=SE2;
EE3=SE3;
EE4=SE4;
EE5=SE5;
SE=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+(DN)+1);
SE1=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+1);
SE2=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+2);
SE3=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+3);
SE4=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+4);
SE5=static_cast<VMesh::Node::index_type> (static_cast<int> (SE)+5);
}
fi.make_double();
ofield = CreateField(fi,mesh);
send_output_handle("Output Field",ofield);
}
void
GenerateElectrode::widget_moved(bool release, BaseWidget* widget_)
{
if (release) want_to_execute();
if (gui_move_all_.get()) move_all_=true;
}
void
GenerateElectrode::create_widgets(std::vector<Point>& points)
{
GeomGroup *group = new GeomGroup;
widget_switch_ = new GeomSwitch(group);
geom_oport_->delAll();
widget_.clear();
double scale;
scale=gui_probe_scale_.get()*gui_thick_.get()*.5;
for (size_t k = 0; k < points.size(); k++)
{
PointWidget *widget = new PointWidget(this, &widget_lock_,gui_probe_scale_.get());
widget_.push_back(widget);
widget->Connect(geom_oport_.get_rep());
widget->SetCurrentMode(0);
widget->SetScale(scale);
widget->SetPosition(points[k]);
widget->SetColor(Color(gui_color_r_.get(),gui_color_g_.get(),gui_color_b_.get()));
group->add(widget->GetWidget().get_rep());
}
geom_oport_->addObj(widget_switch_,"Wire Electrode", &widget_lock_);
}
void
GenerateElectrode::create_widgets(std::vector<Point>& points,Vector& direction)
{
GeomGroup *group = new GeomGroup;
widget_switch_ = new GeomSwitch(group);
geom_oport_->delAll();
widget_.clear();
double scale;
scale=gui_probe_scale_.get()*gui_thick_.get()*.5;
ArrowWidget *awidget =new ArrowWidget(this, &widget_lock_,scale);
awidget->SetDirection(direction);
awidget->SetScale(scale);
awidget->SetLength(scale*4);
awidget->SetPosition(points[0]);
arrow_widget_=awidget;
group->add(awidget->GetWidget().get_rep());
for (size_t k = 1; k < points.size(); k++)
{
PointWidget *widget = new PointWidget(this, &widget_lock_,gui_probe_scale_.get());
widget->Connect(geom_oport_.get_rep());
widget->SetCurrentMode(0);
widget->SetScale(scale);
widget->SetPosition(points[k]);
widget->SetColor(Color(gui_color_r_.get(),gui_color_g_.get(),gui_color_b_.get()));
widget_.push_back(widget);
group->add(widget->GetWidget().get_rep());
}
geom_oport_->addObj(widget_switch_,"Wire Electrode", &widget_lock_);
}
void
GenerateElectrode::get_points(std::vector<Point>& points)
{
size_t s=0,n=widget_.size();
points.resize(n);
//cout<<"Electrode Type: "<<gui_type_.get()<<". size= "<<n<<". s= "<<s<<endl;
if(gui_type_.get()=="planar")
{
n+=1;
s=1;
points.resize(n);
points[0]=arrow_widget_->GetPosition();
}
for (size_t k = s; k < n; k++) points[k] = widget_[k-s]->GetPosition();
}
void
GenerateElectrode::get_centers(std::vector<Point>& p, std::vector<Point>& pp)
{
get_points(p);
//cout<<"get_points done"<<endl;
std::vector<double> t(p.size());
t[0]=0;
for (size_t k=1; k<p.size(); k++)
{
t[k] = (p[k]-p[k-1]).length() + t[k-1];
}
double length=gui_length_.get();
double res=gui_wire_res_.get();
std::vector<double> tt(res*(p.size()-1));
for (size_t k=0; k< tt.size(); k++) tt[k] = static_cast<double>(k)*(length/(static_cast<double>(tt.size()-1)));
CalculateSpline(t,p,tt,pp);
}
void
GenerateElectrode::tcl_command(GuiArgs& args, void* userdata)
{
if(args.count() < 2)
{
args.error("ShowString needs a minor command");
return;
}
if (args[1] == "color_change")
{
color_changed_ = true;
}
else
{
Module::tcl_command(args, userdata);
}
}
void
GenerateElectrode::presave()
{
//cout<<"Started presave()"<<endl;
//cout<<"Electrode Type: "<<gui_type_.get()<<endl;
size_t has_arrow = 0;
size_t num_points = widget_.size();
widget_point_.clear();
if(gui_type_.get()=="planar")
{
//cout<<"Started if statement"<<endl;
if (arrow_widget_)
{
has_arrow = 1;
widget_direction_=new GuiVector(get_ctx()->subVar("widget-direction-"+to_string(0)));
widget_direction_->set(arrow_widget_->GetDirection());
widget_point_.push_back(new GuiPoint(get_ctx()->subVar("widget-point-"+to_string(0))));
widget_point_[0]->set(arrow_widget_->GetPosition());
}
//cout<<"ending if statement"<<endl;
}
for (size_t k = has_arrow; k< num_points+has_arrow; k++)
{
widget_point_.push_back(new GuiPoint(get_ctx()->subVar("widget-point-"+to_string(k))));
widget_point_[k]->set(widget_[k-has_arrow]->GetPosition());
}
gui_widget_points_.set(num_points+has_arrow);
//cout<<"finished presave()"<<endl;
}
void
GenerateElectrode::post_read()
{
size_t has_arrow = 0;
size_t num_points = gui_widget_points_.get();
Vector direction;
widget_point_.clear();
std::vector<Point> points;
if(gui_type_.get()=="planar")
{
has_arrow = 1;
widget_direction_= new GuiVector(get_ctx()->subVar("widget-direction-"+to_string(0)));
widget_direction_->reset();
direction=widget_direction_->get();
widget_point_.push_back(new GuiPoint(get_ctx()->subVar("widget-point-"+to_string(0))));
widget_point_[0]->reset();
points.push_back(widget_point_[0]->get());
}
for (size_t k = has_arrow; k< num_points; k++)
{
widget_point_.push_back(new GuiPoint(get_ctx()->subVar("widget-point-"+to_string(k))));
widget_point_[k]->reset();
points.push_back(widget_point_[k]->get());
}
if(gui_type_.get()=="wire") create_widgets(points);
if(gui_type_.get()=="planar") create_widgets(points,direction);
}
void
GenerateElectrode::add_point(std::vector<Point>& p)
{
size_t size=widget_.size(), s=0;
std::vector<Point> points(size);
if(gui_type_.get()=="planar")
{
size+=1;
s=1;
points.resize(size);
points[0]=arrow_widget_->GetPosition();
}
for (size_t k = s; k < size; k++) points[k] = widget_[k-s]->GetPosition();
p.resize(size+1);
for (size_t k = 0; k < size-1; k++) p[k]=points[k];
p[size]=points[size-1];
p[size-1]=Point(points[size-2]+(points[size-1]-points[size-2])*.5);
}
bool
GenerateElectrode::remove_point()
{
//cout<<"---removing a widget with remove button"<<endl;
size_t n;
if(gui_type_.get()=="wire") n=3;
if(gui_type_.get()=="planar") n=2;
if (widget_.size() > n)
{
widget_.pop_back();
}
else
{
error("Must have at least 3 points.");
}
want_to_execute();
return (true);
}
}
| [
"dwhite@sci.utah.edu"
] | dwhite@sci.utah.edu |
67ff65785a422d7b33edf16847ec83efa8b6a271 | cc2e0a28135cab239998266a9a62e37f5256aa62 | /GraveYard/EventVertex.cc | a2b0bc77d310e84db859f98de8fc677238dd2602 | [] | no_license | AndrewShultz/AraReco | 32e1ecf27686cc717813631a06eba755de89f9f5 | 44b1cd7e6508b731da73b24ce9e13bba42146e18 | refs/heads/master | 2021-01-22T04:15:20.763997 | 2017-05-10T15:27:15 | 2017-05-10T15:27:15 | 92,447,894 | 0 | 0 | null | 2017-05-25T21:59:22 | 2017-05-25T21:59:22 | null | UTF-8 | C++ | false | false | 8,181 | cc | #include "EventVertex.h"
ClassImp(EventVertex);
int EventVertex::debug_bit=0;
EventVertex::EventVertex() : VertexPos() {
initialize();
}
EventVertex::EventVertex(ChannelCollection channels, OpticalIce *ice) : VertexPos() {
initialize();
_channels=channels;
_ice=ice;
}
EventVertex::EventVertex(ChannelCollection channels, Pos starting_position, OpticalIce *ice) : VertexPos(starting_position) {
initialize();
_channels=channels;
_ice=ice;
}
EventVertex::EventVertex(ChannelCollection channels, VertexPos *starting_position, OpticalIce *ice) : VertexPos(*starting_position) {
initialize();
_channels=channels;
_ice=ice;
}
EventVertex::~EventVertex(){
// std::cout<<__PRETTY_FUNCTION__<<std::endl;
clearFinders();
}
void EventVertex::initialize(){
_ice=0;
}
void EventVertex::printout(int coordinate_system){
std::cout<<"current position:"<<std::endl;
VertexPos::printout(coordinate_system);
for(int i=0;i<_finders.size();i++){
std::cout<<"i= "<<std::setw(2)<<i<<std::endl;
_finders[i]->printout();
}// for i
}
void EventVertex::addFinder(int type, int coordinate_system, int time_input, int lock_parameter, double par1, double par2, double par3, int variant){
// TODO: add , int variant to any finders that have multiple versions.
if(getNumChannels()<1){ cerr<<"ERROR: _channels is empty, use setChannels().\n"; return; }
VertexFinder *new_finder=0;
VertexPos *_this = this;
switch(type){
case VertexFinder::REAL_VERTEX : new_finder=new RealVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::SCAN : new_finder=new ScanVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::MINUIT : new_finder=new MinuitVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::ASM : new_finder=new AnalyticVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::MCMC : new_finder=new MCMCVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::INTMAP : new_finder=new IntMapVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::EARLIEST : new_finder=new EarliestVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::ANYWHERE : new_finder=new AnyWhereVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
case VertexFinder::UNLKUMINUIT : new_finder=new MinuitUNLKUVertexFinder(_channels, this, coordinate_system, time_input, lock_parameter, _ice, par1, par2, par3); break;
default : std::cerr<<"ERROR: no such vertex finder "<<type<<"\n"; return;
}
if(hasRealPos()) new_finder->setRealPosition(getRealPosition());
// new_finder->setupScanHist();
_finders.push_back(new_finder);
}
void EventVertex::findVertex(int starting_position){
std::cout << __PRETTY_FUNCTION__ << " " << starting_position << std::endl;
VertexPos *initial;
switch(starting_position){
case EventVertex::DEFAULT :
initial = new VertexPos();
break;
case EventVertex::PREVIOUS:
if(_finders.size() == 0){
std::cerr << "FINDERS SIZE == 0. Using default starting position"<< std::endl;
initial = new VertexPos();
}
else {
int last_index=_finders.size() -1; // to keep track of last executed method
for(int i= _finders.size()-1; i>-1; i--){
if( _finders[i]->hasExecuted() ) {
last_index = i;
break;
}
}
initial = new VertexPos(*(VertexPos*)_finders[last_index]);
}
initial->printout();
break;
case EventVertex::AVERAGE:
{
std::vector<VertexPos*> positions;
positions.reserve(_finders.size());
for(int i=0;i<_finders.size();i++){
if( !_finders[i]->hasExecuted() ) continue; // to make sure we do not add methods that have not executed
positions.push_back(_finders[i]);
}
if(positions.size() == 0) {
std::cerr <<" FINDERS SIZE == 0. Using default starting position" << std::endl;
initial = new VertexPos();
}
else {
initial = meanVertexPos(positions, VertexPos::AVERAGE);
}
}
break;
case EventVertex::BEST:
{
std::vector<VertexPos*> positions;
positions.reserve(_finders.size());
for(int i=0;i<_finders.size();i++){
if( !_finders[i]->hasExecuted() ) continue; // to make sure we do not add methods that have not executed
positions.push_back(_finders[i]);
}
if(positions.size() == 0) {
std::cerr <<" FINDERS SIZE == 0. Using default starting position" << std::endl;
initial = new VertexPos();
}
else {
initial = meanVertexPos(positions, VertexPos::AVERAGE);
}
}
break;
default:
initial = new VertexPos();
break;
}
for(int i=0; i<_finders.size(); i++){
if(_finders[i]->hasExecuted()) continue;
std::cout << "Executing : "<< _finders[i]->getFinderName() << std::endl;
if(hasRealPos()) _finders[i]->setRealPosition(getRealPosition());
_finders[i]->findVertex(initial);
if(debug_bit) _finders[i]->printout();
}
if(initial) delete initial;
initial = 0;
}
void EventVertex::findVertex(){
if(debug_bit) std::cout<<__PRETTY_FUNCTION__<<std::endl;
for(int i=0;i<_finders.size();i++){
if(_finders[i]->hasExecuted()) continue;
if(hasRealPos()) _finders[i]->setRealPosition(getRealPosition());
_finders[i]->findVertex();
if(debug_bit) _finders[i]->printout();
}// for i
std::vector<VertexPos*> positions;
positions.reserve(_finders.size());
for(int i=0;i<_finders.size();i++){
positions.push_back(_finders[i]);
}
VertexPos *pos= meanVertexPos(positions);
// adoptPreviousPos(meanVertexPos(positions));
adoptPreviousPos(pos);
if(pos) delete pos;
pos = 0;
//positions.clear();
pushFinders();
}
void EventVertex::pushFinders(){
_prev_finders.push_back(_finders);
// _finders.clear();
}
void EventVertex::clearFinders(){
for(int i=0;i<_finders.size();i++){
if(_finders[i]) {
delete _finders[i];
}
_finders[i]=0;
}
_finders.clear();
clearPrevFinders();
}
void EventVertex::clearPrevFinders(){
for(int i=0;i<_prev_finders.size();i++){
for(int j=0;j<_prev_finders[i].size(); j++){
_prev_finders[i][j] = 0;
}
_prev_finders[i].clear();
}
// we simply clear the vector, since this vector has a pointer to the finders
_prev_finders.clear();
}
// getters
OpticalIce *EventVertex::getOpticalIce() const {
return _ice;
}
int EventVertex::getNumChannels() const {
return _channels.getNumChans();
}
int EventVertex::getNumFinders() const {
return _finders.size();
}
int EventVertex::getNumPrevFinders() const {
return _prev_finders.size();
}
ChannelCollection EventVertex::getChannels() const {
return _channels;
}
std::vector<VertexFinder*> EventVertex::getFinderVector() const {
return _finders;
}
std::vector< std::vector<VertexFinder*> > EventVertex::getPrevFinderVector() const {
return _prev_finders;
}
VertexFinder *EventVertex::getFinder(int index) const {
if(index<0 || index>_finders.size()) return 0;
return _finders[index];
}
VertexFinder *EventVertex::getPrevFinder(int level, int index) const {
if(level<0 || level>=_prev_finders.size() || index<0 || index>= _prev_finders[level].size()) return 0;
return _prev_finders[level][index];
}
// setters
void EventVertex::setOpticalIce(OpticalIce *ice){
_ice=ice;
}
void EventVertex::setChannels(ChannelCollection channels){
_channels=channels;
}
| [
"ikrav@cobalt05.icecube.wisc.edu"
] | ikrav@cobalt05.icecube.wisc.edu |
c89eab74b945791f9fea8aaf012cd544827fcdac | c6b483cc2d7bc9eb6dc5c08ae92aa55ff9b3a994 | /hazelcast/generated-sources/include/hazelcast/client/protocol/codec/RingbufferReadManyCodec.h | 3e240fefe6d3609e737bddc012caacd62c8e59e3 | [
"Apache-2.0"
] | permissive | oguzdemir/hazelcast-cpp-client | ebffc7137a3a14b9fc5d96e1a1b0eac8aac1e60f | 95c4687634a8ac4886d0a9b9b4c17622225261f0 | refs/heads/master | 2021-01-21T02:53:05.197319 | 2016-08-24T21:08:14 | 2016-08-24T21:08:14 | 63,674,978 | 0 | 0 | null | 2016-07-19T08:16:24 | 2016-07-19T08:16:23 | null | UTF-8 | C++ | false | false | 4,166 | h | /*
* Copyright (c) 2008-2015, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef HAZELCAST_CLIENT_PROTOCOL_CODEC_RINGBUFFERREADMANYCODEC_H_
#define HAZELCAST_CLIENT_PROTOCOL_CODEC_RINGBUFFERREADMANYCODEC_H_
#if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
#pragma warning(push)
#pragma warning(disable: 4251) //for dll export
#endif
#include <memory>
#include <vector>
#include <string>
#include "hazelcast/client/protocol/codec/RingbufferMessageType.h"
#include "hazelcast/util/HazelcastDll.h"
#include "hazelcast/client/impl/BaseEventHandler.h"
#include "hazelcast/client/protocol/ClientMessage.h"
#include "hazelcast/client/serialization/pimpl/Data.h"
namespace hazelcast {
namespace client {
namespace protocol {
namespace codec {
class HAZELCAST_API RingbufferReadManyCodec {
public:
//************************ REQUEST STARTS ******************************************************************//
class HAZELCAST_API RequestParameters {
public:
static const enum RingbufferMessageType TYPE;
static const bool RETRYABLE;
static std::auto_ptr<ClientMessage> encode(
const std::string &name,
int64_t startSequence,
int32_t minCount,
int32_t maxCount,
const serialization::pimpl::Data *filter);
static int32_t calculateDataSize(
const std::string &name,
int64_t startSequence,
int32_t minCount,
int32_t maxCount,
const serialization::pimpl::Data *filter);
private:
// Preventing public access to constructors
RequestParameters();
};
//************************ REQUEST ENDS ********************************************************************//
//************************ RESPONSE STARTS *****************************************************************//
class HAZELCAST_API ResponseParameters {
public:
static const int TYPE;
int32_t readCount;
std::vector<serialization::pimpl::Data > items;
static ResponseParameters decode(ClientMessage &clientMessage);
// define copy constructor (needed for auto_ptr variables)
ResponseParameters(const ResponseParameters &rhs);
private:
ResponseParameters(ClientMessage &clientMessage);
};
//************************ RESPONSE ENDS *******************************************************************//
private:
// Preventing public access to constructors
RingbufferReadManyCodec ();
};
}
}
}
}
#if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
#pragma warning(pop)
#endif
#endif /* HAZELCAST_CLIENT_PROTOCOL_CODEC_RINGBUFFERREADMANYCODEC_H_ */
| [
"ihsan@hazelcast.com"
] | ihsan@hazelcast.com |
8dfa4371823853037b420a768e3d4c1001efbc07 | 23e393f8c385a4e0f8f3d4b9e2d80f98657f4e1f | /Win32 Programming/SynchronizationExplorer/PANEL.H | aefa861ed9c21a4843df335ca7ee9eabf6b7ae25 | [] | no_license | IgorYunusov/Mega-collection-cpp-1 | c7c09e3c76395bcbf95a304db6462a315db921ba | 42d07f16a379a8093b6ddc15675bf777eb10d480 | refs/heads/master | 2020-03-24T10:20:15.783034 | 2018-06-12T13:19:05 | 2018-06-12T13:19:05 | 142,653,486 | 3 | 1 | null | 2018-07-28T06:36:35 | 2018-07-28T06:36:35 | null | UTF-8 | C++ | false | false | 1,813 | h | // Panel.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPanel form view
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
class CPanel : public CFormView
{
protected:
CPanel(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CPanel)
// Form Data
public:
//{{AFX_DATA(CPanel)
enum { IDD = IDD_CONTROL };
CButton c_Synchronous;
CStatic c_SpeedDisplay;
CSliderCtrl c_Speed;
CButton c_Random;
CEdit c_N;
CButton c_Locking;
CDelta c_ErrorBar;
CEdit c_Actual;
//}}AFX_DATA
// Attributes
public:
static HWND panel; // for posting progress messages
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPanel)
public:
virtual void OnInitialUpdate();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
int loops;
virtual ~CPanel();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
void showSpeed(int pos);
afx_msg LRESULT OnN(WPARAM wParam, LPARAM);
afx_msg LRESULT OnLoop(WPARAM, LPARAM);
// Generated message map functions
//{{AFX_MSG(CPanel)
afx_msg void OnLocking();
afx_msg void OnRandom();
afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnSynchronous();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
| [
"wyrover@gmail.com"
] | wyrover@gmail.com |
8e5b68b32fc9e3ee2ce84447b3071e990d09ec45 | ec01845dc903df85fc8f8ecd2de6dfd6f369201c | /QtC/EDS/Collection.h | 2956cfac6b729a8043292e78c0cb7daf33f25b55 | [
"MIT"
] | permissive | jotahtin/qtc-sdk-cpp | e95f5bf4725b9a5b87f8127422c235de52f482e5 | 38100db42a15cd843e387dd146df54f33baa68e8 | refs/heads/master | 2020-05-16T20:24:01.506833 | 2014-04-10T12:57:59 | 2014-04-10T12:57:59 | 18,401,099 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,393 | h | /* -*- mode:c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
** File: QtC/EDS/Collection.h
** Copyright: Copyright (c) 2014, Digia Plc. All rights reserved.
** All other trademarks are the property of their respective owners.
** Comment: Engin.IO Data Storage Collection
** Author(s): Jorma Tahtinen <Jorma.Tahtinen@digia.com>
*/
#ifndef QTC_EDS_COLLECTION_H
#define QTC_EDS_COLLECTION_H
#include <string>
#include <functional>
#include <memory>
#include <istream>
#include <boost/system/error_code.hpp>
#include <QtC/Common/JSON.h>
namespace QtC {
class EDS;
typedef boost::system::error_code ErrorCode;
class FileUploadStream {
public:
FileUploadStream();
FileUploadStream(const FileUploadStream &aOther);
FileUploadStream(std::shared_ptr<std::istream> aInputStream);
~FileUploadStream();
std::shared_ptr<std::istream> stream();
FileUploadStream& setFilename(const std::string &aFilename);
const std::string& filename() const;
FileUploadStream& setContentType(const std::string &aContentType);
const std::string& contentType() const;
private:
struct FileUploadStreamPrivate *iPIMPL;
};
class Collection {
friend class EDS;
public:
typedef std::function<void (const boost::system::error_code& aError,
JSON::Value aValue)> Callback;
typedef std::function<void (const boost::system::error_code& aError,
JSON::Value aValue)> FileDownloadCallback;
public:
Collection();
Collection(const Collection &aOther);
protected:
Collection(EDS &aEDS,const std::string &aCollectionName);
public:
~Collection();
Collection& operator=(const Collection &aOther);
bool isValid() const;
const std::string& collectionName() const;
/* Asynchronous API's */
void find(const JSON::Object &aQuery, Callback aCallback);
void findOne(const std::string &aObjectId, Callback aCallback);
void insert(const JSON::Object &aValue, Callback aCallback);
void update(const std::string &aObjectId, const JSON::Object &aValue, Callback aCallback);
void remove(const std::string &aObjectId, Callback aCallback);
void attachFile(const std::string &aObjectId,
const std::string &aPropertyName,
FileUploadStream aFileReader,
Callback aCallback);
void removeFile(const std::string &aObjectId,
const std::string &aPropertyName,
Callback aCallback);
void downloadFile(const std::string &aFileId,
FileDownloadCallback aCallback,
const std::string &aVariant=std::string());
void getFileInfo(const std::string &aFileId,
Callback aCallback);
void getFileDownloadUrl(const std::string &aFileId,
Callback aCallback,
const std::string &aVariant=std::string());
#if 0
/**
* Download file.
* @param {string} fileId - A file id
* @param {string} filePath - A path where file will be stored on local filesystem. You can also rename the file here.
* @param {string} [variant] - A file variant name
* @param {function} cb - A callback function to be called with query results
*/
Collection.prototype.downloadFile = function(fileId, filePath, variant, cb){
if(!cb){
if(!variant || (variant == "")){
variant = noop;
} else {
cb = variant;
variant = "";
}
}
var self = this;
// sanitize filePath
filePath = path.normalize(filePath);
this.getFileDownloadUrl(fileId, variant, function(e,res){
if(!e){
var originalFileName = path.basename(url.parse(res.expiringUrl).pathname);
if ((filePath.charAt(filePath.length - 1) == "/") || (filePath.charAt(filePath.length - 1) == "\\")) {
filePath = filePath + originalFileName;
}
var req = {
address: res.expiringUrl,
headers: self.db.getApiHeaders(),
filePath: filePath
};
if(this.debug) console.log(req);
edsFileDownloadRequest(req, cb);
} else {
cb(e, res);
}
});
}
#endif
/*
var edsFileDownloadRequest = function(options, callback){
callback = callback || noop;
request({
method: "GET",
url: options.address,
headers: options.headers
}, function(e, r, body) {
if(!e && (r.statusCode == 200)){
callback(null, body);
} else {
callback(r.statusCode);
}
}).pipe(fs.createWriteStream(options.filePath));
};
module.exports = {
restRequest: restRequest,
edsFileUploadRequest: edsFileUploadRequest,
edsFileDownloadRequest: edsFileDownloadRequest
}
*/
private:
struct CollectionPrivate *iPIMPL;
};
} /* namespace QtC */
#endif /* QTC_EDS_COLLECTION_H */
| [
"Jorma Tähtinen"
] | Jorma Tähtinen |
7c7742f9ea1dd4da4f1c4fa3cb52a084d9511c20 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_old_log_13621.cpp | 14cc0c98d2c3f14428445da8fab1d413e6e503e5 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 507 | cpp | fputs(
" rection. This option is meaningful only when using -L, --loca-\n"
" tion (Added in 7.26.0)\n"
"\n"
" --proto <protocols>\n"
" Tells curl to use the listed protocols for its initial\n"
" retrieval. Protocols are evaluated left to right, are comma sep-\n"
" arated, and are each a protocol name or 'all', optionally pre-\n"
" fixed by zero or more modifiers. Available modifiers are:\n"
"\n"
, stdout); | [
"993273596@qq.com"
] | 993273596@qq.com |
1e82e8860f5efb98f6297e803a640b45aa93fdfc | 4d92d83c6f13c1727b458c5aa7fcf55bc70b8e49 | /Source/ui_win32/HleRendererSettingsWnd.cpp | d656849a4d2908d68e69868eda563ac477784592 | [] | no_license | bigianb/hle_play | c970d4eac92d039a47f9adb71b0687f3fcca2c00 | c7a476a459faaff852eb3434be2a50027c5701f2 | refs/heads/master | 2021-07-11T11:04:00.240700 | 2021-04-20T22:18:40 | 2021-04-20T22:18:40 | 43,740,158 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,577 | cpp | #include "PtrMacro.h"
#include "HleRendererSettingsWnd.h"
#include "layout/HorizontalLayout.h"
#include "layout/LayoutStretch.h"
#include "win32/LayoutWindow.h"
#include "win32/Static.h"
#include "AppConfig.h"
#define CLSNAME _T("HleRendererSettingsWnd")
#define WNDSTYLE (WS_CAPTION | WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_SYSMENU)
#define WNDSTYLEEX (WS_EX_DLGMODALFRAME)
using namespace Framework;
#define SCALE(x) MulDiv(x, ydpi, 96)
HleRendererSettingsWnd::HleRendererSettingsWnd(HWND hParent, CGHSHle* pRenderer) :
CModalWindow(hParent)
{
RECT rc;
if(!DoesWindowClassExist(CLSNAME))
{
WNDCLASSEX w;
memset(&w, 0, sizeof(WNDCLASSEX));
w.cbSize = sizeof(WNDCLASSEX);
w.lpfnWndProc = CWindow::WndProc;
w.lpszClassName = CLSNAME;
w.hbrBackground = (HBRUSH)GetSysColorBrush(COLOR_BTNFACE);
w.hInstance = GetModuleHandle(NULL);
w.hCursor = LoadCursor(NULL, IDC_ARROW);
w.style = CS_HREDRAW | CS_VREDRAW;
RegisterClassEx(&w);
}
int ydpi = GetDeviceCaps(GetDC(NULL), LOGPIXELSY);
int width = MulDiv(400, ydpi, 96);
int height = MulDiv(350, ydpi, 96);
Create(WNDSTYLEEX, CLSNAME, _T("Renderer Settings"), WNDSTYLE, Framework::Win32::CRect(0, 0, width, height), hParent, NULL);
SetClassPtr();
m_pOk = new Win32::CButton(_T("OK"), m_hWnd, Framework::Win32::CRect(0, 0, 1, 1));
m_pCancel = new Win32::CButton(_T("Cancel"), m_hWnd, Framework::Win32::CRect(0, 0, 1, 1));
m_pExtList = new Win32::CListView(m_hWnd, Framework::Win32::CRect(0, 0, 1, 1), LVS_REPORT | LVS_SORTASCENDING | LVS_NOSORTHEADER);
m_pExtList->SetExtendedListViewStyle(m_pExtList->GetExtendedListViewStyle() | LVS_EX_FULLROWSELECT);
FlatLayoutPtr pSubLayout1 = CHorizontalLayout::Create();
{
pSubLayout1->InsertObject(CLayoutStretch::Create());
pSubLayout1->InsertObject(Win32::CLayoutWindow::CreateButtonBehavior(100, SCALE(23), m_pOk));
pSubLayout1->InsertObject(Win32::CLayoutWindow::CreateButtonBehavior(100, SCALE(23), m_pCancel));
pSubLayout1->SetVerticalStretch(0);
}
m_pLayout = CVerticalLayout::Create();
m_pLayout->InsertObject(Win32::CLayoutWindow::CreateTextBoxBehavior(100, SCALE(15), m_pLineCheck));
m_pLayout->InsertObject(Win32::CLayoutWindow::CreateTextBoxBehavior(100, SCALE(15), m_pForceBilinearCheck));
m_pLayout->InsertObject(Win32::CLayoutWindow::CreateTextBoxBehavior(100, 2, new Win32::CStatic(m_hWnd, rc, SS_ETCHEDHORZ)));
m_pLayout->InsertObject(Win32::CLayoutWindow::CreateTextBoxBehavior(100, SCALE(15), new Win32::CStatic(m_hWnd, _T("OpenGL extension availability report:"))));
m_pLayout->InsertObject(Win32::CLayoutWindow::CreateCustomBehavior(1, 1, 1, 1, m_pExtList));
m_pLayout->InsertObject(Win32::CLayoutWindow::CreateTextBoxBehavior(100, SCALE(30), new Win32::CStatic(m_hWnd, _T("For more information about the consequences of the absence of an extension, please consult the documentation."), SS_LEFT)));
m_pLayout->InsertObject(pSubLayout1);
RefreshLayout();
CreateExtListColumns();
UpdateExtList();
}
HleRendererSettingsWnd::~HleRendererSettingsWnd()
{
}
long HleRendererSettingsWnd::OnCommand(unsigned short nID, unsigned short nCmd, HWND hSender)
{
if(hSender == m_pOk->m_hWnd)
{
Save();
Destroy();
return TRUE;
}
else if(hSender == m_pCancel->m_hWnd)
{
Destroy();
return TRUE;
}
else if(ProcessCheckBoxMessage(hSender, m_pLineCheck, &m_nLinesAsQuads)) return TRUE;
else if(ProcessCheckBoxMessage(hSender, m_pForceBilinearCheck, &m_nForceBilinearTextures)) return TRUE;
return FALSE;
}
void HleRendererSettingsWnd::RefreshLayout()
{
RECT rc = GetClientRect();
SetRect(&rc, rc.left + 10, rc.top + 10, rc.right - 10, rc.bottom - 10);
m_pLayout->SetRect(rc.left, rc.top, rc.right, rc.bottom);
m_pLayout->RefreshGeometry();
Redraw();
}
void HleRendererSettingsWnd::CreateExtListColumns()
{
LVCOLUMN col;
RECT rc = m_pExtList->GetClientRect();
memset(&col, 0, sizeof(LVCOLUMN));
col.pszText = _T("Extension");
col.mask = LVCF_TEXT | LVCF_WIDTH;
col.cx = rc.right * 3 / 4;
m_pExtList->InsertColumn(0, col);
memset(&col, 0, sizeof(LVCOLUMN));
col.pszText = _T("Availability");
col.mask = LVCF_TEXT | LVCF_WIDTH;
col.cx = rc.right / 4;
m_pExtList->InsertColumn(1, col);
}
void HleRendererSettingsWnd::UpdateExtList()
{
unsigned int i;
LVITEM itm;
memset(&itm, 0, sizeof(LVITEM));
itm.mask = LVIF_TEXT;
itm.pszText = _T("glBlendColor function");
i = m_pExtList->InsertItem(itm);
// m_pExtList->SetItemText(i, 1, m_pRenderer->IsBlendColorExtSupported() ? _T("Present") : _T("Absent"));
memset(&itm, 0, sizeof(LVITEM));
itm.mask = LVIF_TEXT;
itm.pszText = _T("glBlendEquation function");
i = m_pExtList->InsertItem(itm);
//m_pExtList->SetItemText(i, 1, m_pRenderer->IsBlendEquationExtSupported() ? _T("Present") : _T("Absent"));
memset(&itm, 0, sizeof(LVITEM));
itm.mask = LVIF_TEXT;
itm.pszText = _T("glFogCoordf function");
i = m_pExtList->InsertItem(itm);
//m_pExtList->SetItemText(i, 1, m_pRenderer->IsFogCoordfExtSupported() ? _T("Present") : _T("Absent"));
}
void HleRendererSettingsWnd::Save()
{
// CAppConfig::GetInstance().SetPreferenceBoolean(PREF_CGSH_HleOgl_LINEASQUADS, m_nLinesAsQuads);
//CAppConfig::GetInstance().SetPreferenceBoolean(PREF_CGSH_HleOgl_FORCEBILINEARTEXTURES, m_nForceBilinearTextures);
}
bool HleRendererSettingsWnd::ProcessCheckBoxMessage(HWND hSender, Win32::CButton* pCheckBox, bool* pFlag)
{
if(pCheckBox == NULL) return false;
if(pFlag == NULL) return false;
if(hSender != pCheckBox->m_hWnd) return false;
(*pFlag) = !(*pFlag);
pCheckBox->SetCheck(*pFlag);
return true;
}
| [
"bigianb@gmail.com"
] | bigianb@gmail.com |
d2144f665126fcfd774ad70ee43a87bc3eb8b46b | 96cb8fc3f97c7f1db554fa7184ca1ec4c107a22c | /dataobjects/MapLayout.cpp | e5b0c67a3d1831110271491160213eefd988f5a2 | [
"BSD-2-Clause"
] | permissive | Zackmon/SeventhUmbral | f8493a4ae62f6fe10e656d49b999dd3fb63582be | 25580111b361d2fdc2c15fd2cd150e4c763ca774 | refs/heads/master | 2022-01-11T12:43:26.081530 | 2021-12-23T17:01:28 | 2021-12-23T17:01:28 | 439,861,352 | 0 | 0 | NOASSERTION | 2021-12-19T12:46:13 | 2021-12-19T12:46:12 | null | UTF-8 | C++ | false | false | 6,821 | cpp | #include <vector>
#include <algorithm>
#include <map>
#include "MapLayout.h"
//#define _TRACE_TREE
#ifdef _TRACE_TREE
#include <Windows.h>
#include "string_format.h"
#endif
struct UNK1
{
uint32 offset1;
uint32 offset2;
uint32 someFlags1;
uint32 someFlags2;
};
CMapLayout::CMapLayout()
{
}
CMapLayout::~CMapLayout()
{
}
const CMapLayout::ResourceItemArray& CMapLayout::GetResourceItems() const
{
return m_resourceItems;
}
const CMapLayout::LayoutNodeMap& CMapLayout::GetLayoutNodes() const
{
return m_layoutNodes;
}
void CMapLayout::Read(Framework::CStream& inputStream)
{
uint8 fileId[0x20];
inputStream.Read(fileId, 0x20);
uint32 headerSize = inputStream.Read32();
uint32 resourceItemCount = inputStream.Read32();
//Read resource items
inputStream.Seek(0x40, Framework::STREAM_SEEK_SET);
m_resourceItems.resize(resourceItemCount);
for(auto& resourceItem : m_resourceItems)
{
inputStream.Read(&resourceItem, sizeof(RESOURCE_ITEM));
}
//Read scene tree
inputStream.Seek(headerSize, Framework::STREAM_SEEK_SET);
//Skip SEDB header
inputStream.Seek(0x30, Framework::STREAM_SEEK_CUR);
uint32 lybMagic = inputStream.Read32();
uint32 lybSize = inputStream.Read32();
uint16 unk1Count = inputStream.Read16();
uint16 nodeCount = inputStream.Read16();
//Skip some other headers
inputStream.Seek(0x0C, Framework::STREAM_SEEK_CUR);
std::vector<uint32> nodePtrs;
nodePtrs.resize(nodeCount);
inputStream.Read(nodePtrs.data(), nodeCount * sizeof(uint32));
std::vector<UNK1> unk1s;
unk1s.resize(unk1Count);
inputStream.Read(unk1s.data(), unk1Count * sizeof(UNK1));
std::map<uint32, std::string> nodeNames;
for(unsigned int i = 1; i < nodeCount; i++)
{
uint32 nodePtr = nodePtrs[i];
inputStream.Seek(nodePtr + headerSize + 0x30, Framework::STREAM_SEEK_SET);
uint32 nodeHeader[3];
inputStream.Read(nodeHeader, sizeof(nodeHeader));
inputStream.Seek(nodeHeader[2] + headerSize + 0x30, Framework::STREAM_SEEK_SET);
auto nodeName = inputStream.ReadString();
nodeNames[nodePtr] = nodeName;
}
for(unsigned int i = 1; i < nodeCount; i++)
{
uint32 nodePtr = nodePtrs[i];
uint32 nodeAbsPtr = nodePtr + headerSize + 0x30;
inputStream.Seek(nodeAbsPtr, Framework::STREAM_SEEK_SET);
uint32 nodeHeader[3];
inputStream.Read(nodeHeader, sizeof(nodeHeader));
uint32 nodeId = nodeHeader[0];
uint32 parentPtr = nodeHeader[1];
auto nodeName = nodeNames[nodePtr];
auto parentNodeName = nodeNames[nodeHeader[1]];
#ifdef _TRACE_TREE
OutputDebugStringA(string_format("Id: 0x%0.8X, Ptr: 0x%0.8X(0x%0.8X), Name: %s, Parent Name: %s\r\n",
nodeHeader[0], nodePtr, nodeAbsPtr, nodeName.c_str(), parentNodeName.c_str()).c_str());
#endif
LayoutNodePtr result;
if(parentNodeName == "RefObjects/InstanceObject")
{
auto instanceObjectNode = std::make_shared<INSTANCE_OBJECT_NODE>();
uint32 nodeData[0x10];
//0x08 -> Pos X?
//0x09 -> Pos Y?
//0x0A -> Pos Z?
//0x0F -> Ref Node Ptr?
inputStream.Seek(nodeAbsPtr, Framework::STREAM_SEEK_SET);
inputStream.Read(nodeData, sizeof(nodeData));
instanceObjectNode->posX = *reinterpret_cast<float*>(&nodeData[0x08]);
instanceObjectNode->posY = *reinterpret_cast<float*>(&nodeData[0x09]);
instanceObjectNode->posZ = *reinterpret_cast<float*>(&nodeData[0x0A]);
instanceObjectNode->refNodePtr = nodeData[0x0F];
uint32 rotAbsPtr = nodeData[0x0B] + headerSize + 0x30;
uint32 scaleAbsPtr = nodeData[0x0C] + headerSize + 0x30;
float rotData[4];
inputStream.Seek(rotAbsPtr, Framework::STREAM_SEEK_SET);
inputStream.Read(rotData, sizeof(rotData));
instanceObjectNode->rotX = rotData[0];
instanceObjectNode->rotY = rotData[1];
instanceObjectNode->rotZ = rotData[2];
result = instanceObjectNode;
}
else if(parentNodeName == "RefObjects/UnitTree/UnitTreeObject")
{
auto unitTreeObjectNode = std::make_shared<UNIT_TREE_OBJECT_NODE>();
uint32 nodeData[0x14];
//0x07 -> Position Array Ptr?
//0x08 -> Scale Array Ptr?
//0x0B -> String Ptr
//0x0C -> Item Array Ptr
//0x0D -> Item Count
inputStream.Seek(nodeAbsPtr, Framework::STREAM_SEEK_SET);
inputStream.Read(nodeData, sizeof(nodeData));
inputStream.Seek(nodeData[0x0C] + headerSize + 0x30, Framework::STREAM_SEEK_SET);
unitTreeObjectNode->items.resize(nodeData[0x0D]);
for(auto& item : unitTreeObjectNode->items)
{
uint32 itemValues[0x0C];
inputStream.Read(itemValues, sizeof(itemValues));
auto prevPtr = inputStream.Tell();
inputStream.Seek(itemValues[0x05] + headerSize + 0x30, Framework::STREAM_SEEK_SET);
item.name = inputStream.ReadString();
inputStream.Seek(prevPtr, Framework::STREAM_SEEK_SET);
item.nodePtr = itemValues[0x06];
}
result = unitTreeObjectNode;
}
else if(parentNodeName == "BaseObjects/BG/BGPartsBaseObject" || parentNodeName == "BaseObjects/BG/BGChipBaseObject")
{
auto bgPartsBaseObjectNode = std::make_shared<BGPARTS_BASE_OBJECT_NODE>();
uint8 nodeData[0x54];
inputStream.Seek(nodeAbsPtr, Framework::STREAM_SEEK_SET);
inputStream.Read(nodeData, sizeof(nodeData));
uint32 someStringPtr1 = *reinterpret_cast<uint32*>(nodeData + 0x08);
uint32 someStringPtr2 = *reinterpret_cast<uint32*>(nodeData + 0x20);
uint32 someStringAbsPtr1 = someStringPtr1 + headerSize + 0x30;
uint32 someStringAbsPtr2 = someStringPtr2 + headerSize + 0x30;
float vec0x = *reinterpret_cast<float*>(nodeData + 0x3C);
float vec0y = *reinterpret_cast<float*>(nodeData + 0x40);
float vec0z = *reinterpret_cast<float*>(nodeData + 0x44);
float vec1x = *reinterpret_cast<float*>(nodeData + 0x48);
float vec1y = *reinterpret_cast<float*>(nodeData + 0x4C);
float vec1z = *reinterpret_cast<float*>(nodeData + 0x50);
inputStream.Seek(someStringAbsPtr1, Framework::STREAM_SEEK_SET);
auto modelName = inputStream.ReadString();
inputStream.Seek(someStringAbsPtr2, Framework::STREAM_SEEK_SET);
auto resourceName = inputStream.ReadString();
bgPartsBaseObjectNode->modelName = modelName;
bgPartsBaseObjectNode->resourceName = resourceName;
bgPartsBaseObjectNode->minX = vec0x;
bgPartsBaseObjectNode->minY = vec0y;
bgPartsBaseObjectNode->minZ = vec0z;
bgPartsBaseObjectNode->maxX = vec1x;
bgPartsBaseObjectNode->maxY = vec1y;
bgPartsBaseObjectNode->maxZ = vec1z;
result = bgPartsBaseObjectNode;
}
else
{
result = std::make_shared<LAYOUT_NODE>();
}
result->name = nodeName;
result->parentPtr = parentPtr;
result->nodeId = nodeId;
m_layoutNodes.insert(std::make_pair(nodePtr, result));
}
}
| [
"jpd002@b2dc461f-b7ed-4520-8422-8e9c2511a46d"
] | jpd002@b2dc461f-b7ed-4520-8422-8e9c2511a46d |
24ab1c8971050bcddefff0699952e510192923f9 | a47faf594ae2b3cf55793ce7ed40a3d4292496bf | /src/monster.cpp | 3fe44b933452563c93921e230a5d1da24797bddb | [] | no_license | Peperone97/SDL2_dungeon_board | 3d31781d8baa325522010838c59fc7a6b5804c5b | 6c99406156495254ad20a643f456bcaa8bd4021b | refs/heads/main | 2023-05-01T04:41:04.057269 | 2021-05-25T18:34:28 | 2021-05-25T18:34:28 | 360,428,221 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 738 | cpp | #include "monster.h"
Monster::Monster(int x, int y, int dim, SDL_Renderer* renderer) : Entity("img/sprites.png", renderer) {
tile = (SDL_Rect*)malloc( sizeof(SDL_Rect) * 2 );
tile[0].x = 0;
tile[0].y = 39;
tile[0].w = 49;
tile[0].h = 46;
//
tile[1].x = 49;
tile[1].y = 39;
tile[1].w = 43;
tile[1].h = 46;
position.x = x;
position.y = y;
position.w = dim;
position.h = dim;
sprite = 0;
}
void Monster::update() {
timer->start();
int sec = fmod(timer->getPassedTime(), 100);
if (sec >= 0 && sec <= 1) {
if( sprite ){ sprite = 0; }
else{ sprite = 1; }
}
}
void Monster::render(){
texture->render(renderer, &tile[sprite], &position);
}
Monster::~Monster(){
free( tile );
} | [
"noreply@github.com"
] | Peperone97.noreply@github.com |
498e5eea904bca591f2a0debab916ef4e50cb009 | 558ee3aa7f340667f69942dd4e67465d0b7849b4 | /OpenGL tutorial (Cherno)/src/VertexBufferLayout.h | 1fe35f04e72dfad2a85d628db775e5f9d438886d | [] | no_license | braedynkenzie/OpenGL-Sandbox | a7c57bfaada9ba5acb8984f4bc13ef68e1db2704 | 43a5ce6dfc164af61b97800929170526db7eb437 | refs/heads/master | 2023-03-09T04:46:12.962538 | 2021-02-20T01:39:39 | 2021-02-20T01:39:39 | 271,402,240 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,574 | h | #pragma once
#include <vector>
#include <GL\glew.h>
#include "Renderer.h"
struct VertexBufferElement
{
unsigned int type;
unsigned int count;
unsigned char isNormalized;
static unsigned int GetSizeOfType(unsigned int type)
{
switch (type)
{
case GL_FLOAT: return 4;
case GL_UNSIGNED_INT: return 4;
case GL_UNSIGNED_BYTE: return 1;
}
ASSERT(false);
return 0;
}
};
class VertexBufferLayout
{
private:
std::vector<VertexBufferElement> m_Elements;
unsigned int m_Stride;
public:
VertexBufferLayout()
: m_Stride(0) {}
//~VertexBufferLayout();
template<typename T>
void Push(unsigned int count)
{
static_assert(false);
}
template<>
void Push<float>(unsigned int count)
{
// Add a new VertexBufferElement with type = float
m_Elements.push_back({ GL_FLOAT, count, GL_FALSE });
m_Stride += count * VertexBufferElement::GetSizeOfType(GL_FLOAT);
}
template<>
void Push<unsigned int>(unsigned int count)
{
// Add a new VertexBufferElement with type = unsigned int
m_Elements.push_back({ GL_UNSIGNED_INT, count, GL_FALSE });
m_Stride += count * VertexBufferElement::GetSizeOfType(GL_UNSIGNED_INT);
}
template<>
void Push<unsigned char>(unsigned int count)
{
// Add a new VertexBufferElement with type = unsigned byte
m_Elements.push_back({ GL_UNSIGNED_BYTE, count, GL_TRUE });
m_Stride += count * VertexBufferElement::GetSizeOfType(GL_UNSIGNED_BYTE);
}
inline const std::vector<VertexBufferElement> GetElements() const { return m_Elements; }
inline unsigned int GetStride() const { return m_Stride; }
}; | [
"braedyn26@gmail.com"
] | braedyn26@gmail.com |
dfdea71dcb814d1e898604a7cc72357fd50beddf | 32da723b5c759c98845249bb51332109014b4f62 | /C++OOP.cpp/PracticalProjects/Bank - VisualStudio Solution/Bank/Bank/BankAccount.h | 89fe870bbd461e64a555174ca36b403d224f395a | [] | no_license | IliyanKafedzhiev/FacultyOfMathematicAndInformatic | b8a810ca1100cc0f39c1460f60eb014e4c0b5ffc | a2b05a9aa7e677609447c0311ee79552464434ce | refs/heads/master | 2020-07-06T04:19:30.531000 | 2015-03-02T21:54:42 | 2015-03-02T21:54:42 | 18,809,355 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 690 | h | class BankAccount
{
private:
char* ownerName;
char IBAN[14];
double balance;
public:
/*
BankAccount();
BankAccount(const char* ownerName, const char* IBAN);
BankAccount(const char* ownerName, const char* IBAN, double balance);
*/
BankAccount(const char* ownerName = "", const char* IBAN = "", double balance = 0);
~BankAccount();
char* GetOwnerName() const;
char* GetIBAN();
double GetBalance() const;
void SetOwnerName(const char* ownerName);
bool SetIBAN(const char* IBAN);
bool SetBalance(double balance);
bool Depositing(double deposit);
bool Draw(double money);
void Balance() const;
}; | [
"iliqnkafedjiev@gmial.com"
] | iliqnkafedjiev@gmial.com |
5b6313b9708e0169bd8d97c6ff116db6c4946ce8 | fdb63531719c0bf9e4c4593bf7e55ffc0936a93e | /18. Dynamic Programming/38. True Boolean Parenthesization Memoization M-2 Optimization.cpp | 7f6f90314d491b926e89ecde2e4e0f7ba44bb16c | [] | no_license | ashishmohapatra2703/DSA-practice-questions | aec9ca4aa4e619dd5f754088f87fdf142f4049a5 | 791f84fa01fb3156cb0e77da09428eb0b38649d8 | refs/heads/master | 2023-08-16T05:54:33.627700 | 2021-10-17T17:26:28 | 2021-10-17T17:26:28 | 367,565,132 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,350 | cpp | // better use 3D Matrix cuz we don't have to iteratively search in matrix as we are doing with Map.
// Optimization -> memoize at every call in the k loop too
// (For worst of edge cases) In the base condition i==j ,store value 0/1 (T/F)depending on outcome in you dp matrix & then return.
////////Passed in GFG
#include <iostream>
#include <cstring>
using namespace std;
// Better use 3D Matrix cuz we don't have to iteratively search in matrix as we are doing with Map.
int dp[1001][1001][2]; //for storing every sub-problems ans.(Memoization)
int TBP(string s, int i, int j, bool output) // here boolean output is the subproblem expression o/p
{
if(dp[i][j][output] != -1)
return dp[i][j][output];
if(i>j) //invalid i/p
return dp[i][j][output] = 0;
if(i==j) //smallest valid i/p
{
if(output == true)
{
if(s[i] == 'T') // i& j index pointer always lies either on T or F
return dp[i][j][output] = 1;
else
return dp[i][j][output] = 0;
}
else if(output == false)
{
if(s[i] == 'F')
return dp[i][j][output] = 1;
else
return dp[i][j][output] = 0;
}
} ////Base Condition
int ans = 0;
for(int k=i+1; k<=j-1; k+=2) // k breaking subproblems index pointer always lies either on char | or & or ^
{
int lt,rf,lf,rt;
if(dp[i][k-1][true] != -1)
{
lt = dp[i][k-1][true];
}
else
{
lt = TBP(s, i ,k-1 , true);
dp[i][k-1][true] = lt;
}
if(dp[k+1][j][false] != -1)
{
rf = dp[k+1][j][false];
}
else
{
rf = TBP(s, k+1 ,j , false);
dp[k+1][j][false] = rf;
}
if(dp[i][k-1][false] != -1)
{
lf = dp[i][k-1][false];
}
else
{
lf = TBP(s, i ,k-1 , false);
dp[i][k-1][false] = lf;
}
if(dp[k+1][j][true] != -1)
{
rt = dp[k+1][j][true];
}
else
{
rt = TBP(s, k+1 ,j , true);
dp[k+1][j][true] = rt;
}
//finding ans sccording to the operator, s[k], at breaking index pointer at k
if(s[k] == '&')
{
if(output == true)
ans += lt*rt;
else if(output == false)
ans += lt*rf + lf*rt + lf*rf;
}
else if(s[k] == '|')
{
if(output == true)
ans += lt*rt + lt*rf + lf*rt;
else if(output == false)
ans += lf*rf;
}
else if(s[k] == '^')
{
if(output == true)
ans += lt*rf + lf*rt;
else if(output == false)
ans += lt*rt + lf*rf;
}
}
return dp[i][j][output] = ans%1003; //storing in value for the key in the matrix
}
int main()
{
int t;
cin>>t;
while(t--)
{
memset(dp, -1, sizeof(dp));
int n;
cin>>n; //str length
string str;
cin>>str;
int TrueNoOfWaysParenthesize = TBP(str, 0 ,n-1 , true); //final value of expression to be evaluated true.
cout<< TrueNoOfWaysParenthesize <<endl;
}
}
| [
"ashishmohapatra2000@gmail.com"
] | ashishmohapatra2000@gmail.com |
3f8c7f5e469de2141747f5f4c52f31b32b4c9c53 | ed11fa2af9ee9832f224515a9ad86c6e54588f26 | /wallet/qt/ntp1/ntp1tokenlistmodel.h | cd12b437d3a94a13eb60348933949e01821e43bb | [
"MIT"
] | permissive | HUSKI3/Neblio-Node | f4fc48917dfc1e27d28fcdabea414af5a4737589 | 9bc65b2b2c90f52baf05182aaaeb0260a410a712 | refs/heads/master | 2023-01-03T03:38:36.171390 | 2020-10-29T20:36:17 | 2020-10-29T20:36:17 | 308,339,643 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,844 | h | #ifndef NTP1TOKENLISTMODEL_H
#define NTP1TOKENLISTMODEL_H
#include <QAbstractTableModel>
#include <QTimer>
#include <atomic>
#include "init.h"
#include "ntp1/ntp1wallet.h"
#include "wallet.h"
class NTP1TokenListModel : public QAbstractTableModel
{
Q_OBJECT
boost::shared_ptr<NTP1Wallet> ntp1wallet;
bool walletLocked;
boost::atomic_bool walletUpdateRunning;
boost::atomic_flag walletUpdateLockFlag = BOOST_ATOMIC_FLAG_INIT;
boost::atomic_bool updateWalletAgain;
// this mutex should not be necessary, but future<shared_ptr> is indicating an issue with
// thread-sanitizer
boost::mutex walletFutureCheckMutex;
QTimer* walletUpdateEnderTimer;
boost::promise<boost::shared_ptr<NTP1Wallet>> updateWalletPromise;
boost::unique_future<boost::shared_ptr<NTP1Wallet>> updateWalletFuture;
static void UpdateWalletBalances(boost::shared_ptr<NTP1Wallet> wallet,
boost::promise<boost::shared_ptr<NTP1Wallet>>& promise);
class NTP1WalletTxUpdater : public WalletNewTxUpdateFunctor
{
NTP1TokenListModel* model;
int currentBlockHeight;
public:
NTP1WalletTxUpdater(NTP1TokenListModel* Model) : model(Model), currentBlockHeight(-1) {}
void run(uint256, int currentHeight) Q_DECL_OVERRIDE
{
if (currentBlockHeight < 0) {
setReferenceBlockHeight();
}
if (currentHeight <= currentBlockHeight + HEIGHT_OFFSET_TOLERANCE) {
model->reloadBalances();
}
}
virtual ~NTP1WalletTxUpdater() {}
// WalletNewTxUpdateFunctor interface
public:
void setReferenceBlockHeight() Q_DECL_OVERRIDE { currentBlockHeight = nBestHeight; }
};
boost::shared_ptr<NTP1WalletTxUpdater> ntp1WalletTxUpdater;
void SetupNTP1WalletTxUpdaterToWallet()
{
while (!std::atomic_load(&pwalletMain).get()) {
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
std::atomic_load(&pwalletMain)->setFunctorOnTxInsert(ntp1WalletTxUpdater);
}
public:
static QString __getTokenName(int index, boost::shared_ptr<NTP1Wallet> theWallet);
static QString __getTokenId(int index, boost::shared_ptr<NTP1Wallet> theWallet);
static QString __getTokenDescription(int index, boost::shared_ptr<NTP1Wallet> theWallet);
static QString __getTokenBalance(int index, boost::shared_ptr<NTP1Wallet> theWallet);
static QString __getIssuanceTxid(int index, boost::shared_ptr<NTP1Wallet> theWallet);
static QIcon __getTokenIcon(int index, boost::shared_ptr<NTP1Wallet> theWallet);
void clearNTP1Wallet();
void refreshNTP1Wallet();
NTP1TokenListModel();
virtual ~NTP1TokenListModel();
void reloadBalances();
int rowCount(const QModelIndex& parent) const Q_DECL_OVERRIDE;
int columnCount(const QModelIndex& parent) const Q_DECL_OVERRIDE;
QVariant data(const QModelIndex& index, int role) const Q_DECL_OVERRIDE;
/** Roles to get specific information from a token row.
These are independent of column.
*/
enum RoleIndex
{
TokenNameRole = Qt::UserRole,
TokenDescriptionRole,
TokenIdRole,
AmountRole,
IssuanceTxidRole
};
void saveWalletToFile();
void loadWalletFromFile();
boost::shared_ptr<NTP1Wallet> getCurrentWallet() const;
signals:
void signal_walletUpdateRunning(bool running);
private slots:
void beginWalletUpdate();
void endWalletUpdate();
};
extern std::atomic<NTP1TokenListModel*> ntp1TokenListModelInstance;
#endif // NTP1TOKENLISTMODEL_H
| [
"info@afach.de"
] | info@afach.de |
15cb15a5fdff6e9aac049767ee6980f5d9080289 | c2114f2406eaed8d9ebb35665386eccfcdcc16ed | /assignment2.cpp | d9862f277717b93466eba68390ea8317c9218464 | [] | no_license | bombshot/oops_codes | ddc0ce66621a6995d4726692bebf11c81fa4beef | 3a0b33497487231120bb3f79128eea0682e1992c | refs/heads/master | 2021-01-16T23:09:04.039781 | 2016-10-26T13:30:41 | 2016-10-26T13:30:41 | 72,005,917 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,546 | cpp | /*
implement a class complex which represent the complex no datatype .implement the following operatons
1.constructor including a default constructor which create 0+0i
2.overload operator +
3.overload operator *
4.overload insertion and extraction operator to read and output complex no;
*/
#include<iostream>
using namespace std;
class Complex
{
float real,imag;
public:
Complex()
{
real=0;
imag=0;
}
Complex(float r,float i)
{
real=r;
imag=i;
}
friend istream& operator>>(istream &,Complex &);
friend ostream& operator<<(ostream &,Complex &);
Complex operator+(Complex c);
Complex operator*(Complex c);
Complex operator-(Complex c);
};
Complex Complex::operator-(Complex c)
{
Complex c2;
c2.real=real-c.real;
c2.imag=imag-c.imag;
return c2;
}
Complex Complex::operator*(Complex c)
{
Complex c2;
c2.real=real*c.real-imag*c.imag;
c2.imag=real*c.imag+c.real*imag;
return c2;
}
Complex Complex::operator+(Complex c)
{
Complex c2;
c2.real=real+c.real;
c2.imag=imag+c.imag;
return c2;
}
istream& operator>>(istream & cin, Complex & c)
{
float real,imag;
cout<<"enter the real and imag part of complex no : ";
cin>>real;
cin>>imag;
c=Complex(real,imag);
return cin;
}
ostream& operator<<(ostream & cout,Complex & c)
{
cout<<c.real;
if(c.imag>=0)
cout<<" + "<<c.imag<<"i"<<endl<<"\n";
else
cout<<c.imag<<"i"<<endl<<"\n";
return cout;
}
int main()
{
Complex c1,c2,c3,c4,c5;
char ch;
do
{
cin>>c1>>c2;
cout<<"\n\n"<<"Enter 1 for Addition \nEnter 2 for Substraction \nEnter 3 for Multiplication "<<"\n\n";
int no;
cin>>no;
switch(no)
{
case 1:
{
c3=c1+c2;
cout<<"\n*********************************************\n";
cout<<"complex no addition is = "<<c3<<"\n";
cout<<"\n*********************************************\n";
break;
}
case 2:
{
c5=c1-c2;
cout<<"\n*********************************************\n";
cout<<"substraction of complex no is = "<<c5<<"\n";
cout<<"\n*********************************************\n";
break;
}
case 3:
{
cout<<"\n*********************************************\n";
c4=c1*c2;
cout<<"complex no multiplication is ="<<c4<<"\n";
cout<<"\n*********************************************\n";
break;
}
default:
cout<<"Invalid input"<<"\n\n";
}
cout<<"Want more operation (y/n):";
cin>>ch;
}
while(ch=='y'||ch=='Y');
return 0;
}
| [
"noreply@github.com"
] | bombshot.noreply@github.com |
0dd8e45d6919601c76a7bbeb28b6b8021d8810e1 | 666e2ff7aa1a4bcf3592331062ce774373fe6fa6 | /sip/sip_dialog_management.cpp | bcbe501b848015b389f295c710ee33419b687b1e | [] | no_license | asyr625/mini_sip | aeffd6e5ea1dafafa817b1137859b41351fe9580 | 12ea4b9a03585b5c7e5b5faeeed0a5bc6a9c19cc | refs/heads/master | 2021-01-20T12:06:33.212419 | 2015-11-24T02:33:26 | 2015-11-24T02:33:26 | 46,761,914 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 29,437 | cpp | #include <iostream>
#include "sip_dialog_management.h"
#include "sip_command_string.h"
#include "sip_transition_utils.h"
#define SHUTDOWN_CALLS_TIMEOUT 3000
#define SHUTDOWN_DEREGISTER_TIMEOUT 3000
bool Sip_Dialog_Management::a0_start_startShutdown_startShutdown( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::sip_stack_shutdown, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer))
{
pending_hang_ups = pending_de_regs = 0;
my_err << std::endl;
my_err << "MiniSIP's SipStack is shutting down ... " << std::endl;
my_err << " ... it won't take long to finish, be patient. Thanks!" << std::endl;
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::terminate_all_calls),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
return true;
}
return false;
}
bool Sip_Dialog_Management::a10_startSh_terminateCallsSh_terminateAll( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::terminate_all_calls, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer))
{
terminate_all_calls();
request_timeout( SHUTDOWN_CALLS_TIMEOUT, "timer_terminate_calls" );
return true;
}
return false;
}
bool Sip_Dialog_Management::a11_terminateCallsSh_callTerminatedEarly( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::call_terminated_early, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
received_call_terminate_early();
//my_dbg << "shutdown: call terminated early: " << command.getCommand_String().get_destination_id() << end;
return true;
}
return false;
}
bool Sip_Dialog_Management::a12_terminateCallsSh_timeIsUp( const Sip_SMCommand &command)
{
if (transition_match(command, "timer_terminate_calls", Sip_SMCommand::dialog_layer,
Sip_SMCommand::dialog_layer) )
{
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::unregister_all_identities),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
return true;
}
return false;
}
bool Sip_Dialog_Management::a13_terminateCallsSh_allTerminated( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::terminate_all_calls_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
cancel_timeout( "timer_terminate_calls" );
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::unregister_all_identities),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
return true;
}
return false;
}
bool Sip_Dialog_Management::a20_terminateCallsSh_deRegAllSh_allTerminated( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::unregister_all_identities, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
request_timeout( SHUTDOWN_DEREGISTER_TIMEOUT, "timer_de_register_all" );
de_register_all();
return true;
}
return false;
}
bool Sip_Dialog_Management::a21_deRegAllSh_callTerminatedEarly( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::call_terminated_early, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
received_call_terminate_early();
return true;
}
return false;
}
bool Sip_Dialog_Management::a22_deRegAllSh_registerOk( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::register_ok, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
received_register_ok(true); //we are deregistering ...
return true;
}
return false;
}
bool Sip_Dialog_Management::a23_deRegAllSh_timeIsUp( const Sip_SMCommand &command)
{
if (transition_match(command, "timer_de_register_all", Sip_SMCommand::dialog_layer,
Sip_SMCommand::dialog_layer) )
{
shutdown_done( true ); //force shutdown done message
return true;
}
return false;
}
bool Sip_Dialog_Management::a24_deRegAllSh_deRegAlldone( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::unregister_all_identities_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
shutdown_done( false ); //check if finished ... don't force
return true;
}
return false;
}
bool Sip_Dialog_Management::a25_deRegAllSh_allTerminated( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::terminate_all_calls_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
shutdown_done( false ); //check if finished ... don't force
return true;
}
return false;
}
bool Sip_Dialog_Management::a30_deRegAllSh_terminated_timeIsUp( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::sip_stack_shutdown_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
return true;
return false;
}
bool Sip_Dialog_Management::b0_start_terminateCallsOps_terminateAll( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::terminate_all_calls, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer))
{
pending_hang_ups = pending_de_regs = 0;
terminate_all_calls();
request_timeout( SHUTDOWN_CALLS_TIMEOUT, "timer_terminate_calls" );
return true;
}
return false;
}
bool Sip_Dialog_Management::b11_terminateCallsOps_terminateEarly( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::call_terminated_early, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
received_call_terminate_early();
//my_dbg << "shutdown: call terminated early: " << command.getCommand_String().get_destination_id() << end;
return true;
}
return false;
}
bool Sip_Dialog_Management::b12_terminateCallsOps_timeIsUp( const Sip_SMCommand &command)
{
if (transition_match(command, "timer_terminate_calls", Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::unregister_all_identities),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
return true;
}
return false;
}
bool Sip_Dialog_Management::b30_terminateCallsOps_start_terminateAllDone( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::terminate_all_calls_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
cancel_timeout( "timer_terminate_calls" );
return true;
}
return false;
}
bool Sip_Dialog_Management::c0_start_deRegAllOps_deRegAll( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::unregister_all_identities, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
pending_hang_ups = pending_de_regs = 0;
request_timeout( SHUTDOWN_DEREGISTER_TIMEOUT, "timer_de_register_all" );
de_register_all();
return true;
}
return false;
}
bool Sip_Dialog_Management::c11_deRegAllOps_registerOk( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::register_ok, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
received_register_ok(true); //we are deregistering ...
return true;
}
return false;
}
bool Sip_Dialog_Management::c12_deRegAllOps_timeIsUp( const Sip_SMCommand &command)
{
if (transition_match(command, "timer_de_register_all", Sip_SMCommand::dispatcher, Sip_SMCommand::dialog_layer) )
return true;
return false;
}
bool Sip_Dialog_Management::c30_deRegAllOps_start_deRegAllDone( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::unregister_all_identities_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
cancel_timeout( "timer_de_register_all" );
return true;
}
return false;
}
bool Sip_Dialog_Management::d0_start_regAllOps_regAll( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::register_all_identities, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
pending_hang_ups = pending_de_regs = 0;
request_timeout( SHUTDOWN_DEREGISTER_TIMEOUT, "timer_registerAll" );
register_all();
return true;
}
return false;
}
bool Sip_Dialog_Management::d11_regAllOps_registerOk( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::register_ok, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
received_register_ok(false); //we are NOT deregistering ...
return true;
}
return false;
}
bool Sip_Dialog_Management::d12_regAllOps_timeIsUp( const Sip_SMCommand &command)
{
if (transition_match(command, "timer_registerAll", Sip_SMCommand::dispatcher, Sip_SMCommand::dialog_layer) )
return true;
return false;
}
bool Sip_Dialog_Management::d30_regAllOps_start_regAllDone( const Sip_SMCommand &command)
{
if (transition_match(command, Sip_Command_String::register_all_identities_done, Sip_SMCommand::dispatcher,
Sip_SMCommand::dialog_layer) )
{
cancel_timeout( "timer_registerAll" );
return true;
}
return false;
}
void Sip_Dialog_Management::set_up_state_machine()
{
State<Sip_SMCommand,std::string> *s_start=
new State<Sip_SMCommand,std::string>(this,"start");
add_state(s_start);
set_up_state_machine_shutdown(s_start);
set_up_state_machine_dialogops(s_start);
set_current_state(s_start);
}
void Sip_Dialog_Management::set_up_state_machine_shutdown(State<Sip_SMCommand,std::string> *s_start)
{
State<Sip_SMCommand,std::string> *s_start_sh=
new State<Sip_SMCommand,std::string>(this,"start_shutdown");
add_state(s_start_sh);
State<Sip_SMCommand,std::string> *s_terminateCalls_sh=
new State<Sip_SMCommand,std::string>(this,"terminateCalls_shutdown");
add_state(s_terminateCalls_sh);
State<Sip_SMCommand,std::string> *s_deRegAll_sh=
new State<Sip_SMCommand,std::string>(this,"de_register_all_shutdown");
add_state(s_deRegAll_sh);
State<Sip_SMCommand,std::string> *s_terminated=
new State<Sip_SMCommand,std::string>(this,"terminated");
add_state(s_terminated);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_start_startSh_startShutdown",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a0_start_startShutdown_startShutdown,
s_start,
s_start_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_startSh_terminateCallsSh_startShutdown",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a10_startSh_terminateCallsSh_terminateAll,
s_start_sh,
s_terminateCalls_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsSh_callTerminatedEarly",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a11_terminateCallsSh_callTerminatedEarly,
s_terminateCalls_sh,
s_terminateCalls_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsSh_timeIsUp",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a12_terminateCallsSh_timeIsUp,
s_terminateCalls_sh,
s_terminateCalls_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsSh_allTerminated",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a13_terminateCallsSh_allTerminated,
s_terminateCalls_sh,
s_terminateCalls_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsSh_s_deRegAllSh_allTerminated",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a20_terminateCallsSh_deRegAllSh_allTerminated,
s_terminateCalls_sh,
s_deRegAll_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllSh_deRegAllSh_callTerminatedEarly",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a21_deRegAllSh_callTerminatedEarly,
s_deRegAll_sh,
s_deRegAll_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllSh_deRegAllSh_registerOk",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a22_deRegAllSh_registerOk,
s_deRegAll_sh,
s_deRegAll_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllSh_deRegAllSh_timeIsUp",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a23_deRegAllSh_timeIsUp,
s_deRegAll_sh,
s_deRegAll_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllSh_deRegAllSh_deRegAlldone",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a24_deRegAllSh_deRegAlldone,
s_deRegAll_sh,
s_deRegAll_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllSh_deRegAllSh_allTerminated",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a25_deRegAllSh_allTerminated,
s_deRegAll_sh,
s_deRegAll_sh);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllSh_terminated_shutdown_done",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::a30_deRegAllSh_terminated_timeIsUp,
s_deRegAll_sh,
s_terminated);
}
void Sip_Dialog_Management::set_up_state_machine_dialogops(State<Sip_SMCommand,std::string> *s_start)
{
State<Sip_SMCommand,std::string> *s_terminateCalls_ops=
new State<Sip_SMCommand,std::string>(this,"terminateCalls_ops");
add_state(s_terminateCalls_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_start_terminateCallsOps_terminateAll",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::b0_start_terminateCallsOps_terminateAll,
s_start,
s_terminateCalls_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsOps_terminateEarly",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::b11_terminateCallsOps_terminateEarly,
s_terminateCalls_ops,
s_terminateCalls_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsOps_timeIsUp",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::b12_terminateCallsOps_timeIsUp,
s_terminateCalls_ops,
s_terminateCalls_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_terminateCallsOps_start_terminateAllDone",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::b30_terminateCallsOps_start_terminateAllDone,
s_terminateCalls_ops,
s_start);
//UNREGISTER ALL IDENTITIES SETUP
State<Sip_SMCommand,std::string> *s_deRegAll_ops=
new State<Sip_SMCommand,std::string>(this,"deRegAll_ops");
add_state(s_deRegAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_start_deRegAllOps_terminateAll",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::c0_start_deRegAllOps_deRegAll,
s_start,
s_deRegAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllOps_registerOk",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::c11_deRegAllOps_registerOk,
s_deRegAll_ops,
s_deRegAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllOps_timeIsUp",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::c12_deRegAllOps_timeIsUp,
s_deRegAll_ops,
s_deRegAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllOps_start_terminateAllDone",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::c30_deRegAllOps_start_deRegAllDone,
s_deRegAll_ops,
s_start);
//REGISTER ALL IDENTITIES SETUP
State<Sip_SMCommand,std::string> *s_regAll_ops=
new State<Sip_SMCommand,std::string>(this,"regAll_ops");
add_state(s_regAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_start_deRegAllOps_terminateAll",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::d0_start_regAllOps_regAll,
s_start,
s_regAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllOps_registerOk",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::d11_regAllOps_registerOk,
s_regAll_ops,
s_regAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllOps_timeIsUp",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::d12_regAllOps_timeIsUp,
s_regAll_ops,
s_regAll_ops);
new State_Transition<Sip_SMCommand,std::string>(
this,
"transition_deRegAllOps_start_terminateAllDone",
(bool (State_Machine<Sip_SMCommand,std::string>::*)(const Sip_SMCommand&))
&Sip_Dialog_Management::d30_regAllOps_start_regAllDone,
s_regAll_ops,
s_start);
}
Sip_Dialog_Management::Sip_Dialog_Management(SRef<Sip_Stack*> stack)
: Sip_Dialog(stack, NULL, "shutdown_dialog")
{
set_up_state_machine();
pending_hang_ups = 0;
pending_de_regs = 0;
}
Sip_Dialog_Management::~Sip_Dialog_Management()
{
}
bool Sip_Dialog_Management::terminate_all_calls()
{
std::list<SRef<Sip_Dialog *> > dlgs;
dlgs = get_sip_stack()->get_dialogs();
my_err << std::endl;
my_err << "Terminating all ongoing calls:" << std::endl;
for( std::list<SRef<Sip_Dialog *> >::iterator it = dlgs.begin();
it != dlgs.end();
it ++ ) {
//First, skip the register dialogs ... we'll deal with them later
if( (*it)->get_mem_object_type() == "SipDialogRegister" )
{
//my_dbg << "Sip_Dialog_Management::terminate_all_calls : dialog skipped" << end;
continue;
}
Sip_SMCommand cmd( Command_String( (*it)->_dialog_state._call_id, Sip_Command_String::hang_up),
Sip_SMCommand::dialog_layer,
Sip_SMCommand::dialog_layer);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
pending_hang_ups++;
my_err << " - Hanging up " << (*it)->_dialog_state._remote_uri << std::endl;
}
if( pending_hang_ups <= 0 ) {
my_err << " CALLS: No ongoing calls!" << std::endl;
//if we have not sent any hang_ups ... notify all calls terminated
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::terminate_all_calls_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
}
return true;
}
bool Sip_Dialog_Management::received_call_terminate_early()
{
pending_hang_ups --;
if( pending_hang_ups <= 0 ) {
my_err << " CALLS: all calls have been terminated!" << std::endl;
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::terminate_all_calls_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
}
return true;
}
bool Sip_Dialog_Management::de_register_all()
{
std::list<SRef<Sip_Dialog *> > dlgs;
dlgs = get_sip_stack()->get_dialogs();
my_err << std::endl;
my_err << "De-Registering all identities from their registrar:" << std::endl;
for( std::list<SRef<Sip_Dialog *> >::iterator it = dlgs.begin();
it != dlgs.end();
it ++ ) {
//First, skip the register dialogs ... we'll deal with them later
if( (*it)->get_mem_object_type() != "SipDialogRegister" )
{
//my_dbg << "Sip_Dialog_Management::de_register_all : non-reg dialog skipped" << end;
continue;
}
if(! (*it)->get_dialog_config()->_sip_identity->is_registered() )
{
//my_dbg << "Sip_Dialog_Management::de_register_all : skipping already de-registered identity" << end;
continue;
}
Command_String cmdstr( (*it)->_dialog_state._call_id, Sip_Command_String::proxy_register);
cmdstr["proxy_domain"] = (*it)->get_dialog_config()->_sip_identity->get_sip_uri().get_ip();
cmdstr.set_param3("0"); //expires = 0 ==> de-register
Sip_SMCommand cmd( cmdstr,
Sip_SMCommand::dialog_layer,
Sip_SMCommand::dialog_layer);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
pending_de_regs++;
my_err << " De-registration request sent (username = " <<
(*it)->get_dialog_config()->_sip_identity->get_sip_uri().get_string() << ")" << std::endl;
}
if( pending_de_regs == 0 ) {
//if we have not sent any de-regs ... notify all un-registered
my_err << " DE-REGISTER: all identities were already not registered!" << std::endl;
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::unregister_all_identities_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
}
return true;
}
bool Sip_Dialog_Management::register_all()
{
std::list<SRef<Sip_Dialog *> > dlgs;
dlgs = get_sip_stack()->get_dialogs();
my_err << std::endl;
my_err << "Registering all identities to their registrar:" << std::endl;
for( std::list<SRef<Sip_Dialog *> >::iterator it = dlgs.begin();
it != dlgs.end();
it ++ ) {
//First, skip the register dialogs ... we'll deal with them later
if( (*it)->get_mem_object_type() != "SipDialogRegister" )
{
//my_dbg << "Sip_Dialog_Management::register_all : non-reg dialog skipped" << end;
continue;
}
if( (*it)->get_dialog_config()->_sip_identity->is_registered() )
{
//my_dbg << "Sip_Dialog_Management::register_all : skipping already registered identity" << end;
continue;
}
Command_String cmdstr( (*it)->_dialog_state._call_id, Sip_Command_String::proxy_register);
cmdstr["proxy_domain"] = (*it)->get_dialog_config()->_sip_identity->get_sip_uri().get_ip();
//expires = defaultExpires, read from the config file
cmdstr.set_param3((*it)->get_dialog_config()->_sip_identity->get_sip_registrar()->get_default_expires());
Sip_SMCommand cmd( cmdstr,
Sip_SMCommand::dialog_layer,
Sip_SMCommand::dialog_layer);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
pending_de_regs++;
my_err << " Registration request sent (username = " <<
(*it)->get_dialog_config()->_sip_identity->get_sip_uri().get_string() << ")" << std::endl;
}
if( pending_de_regs == 0 )
{
//if we have not sent any de-regs ... notify all un-registered
my_err << " REGISTER: all identities were already registered!" << std::endl;
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::unregister_all_identities_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
}
return true;
}
bool Sip_Dialog_Management::received_register_ok(bool deregistering)
{
pending_de_regs--;
if( pending_de_regs <= 0 )
{
if( deregistering ) {
my_err << " DE-REGISTER: all identities have been de-registered correctly!" << std::endl;
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::unregister_all_identities_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
} else {
my_err << " REGISTER: all identities have been registered correctly!" << std::endl;
Sip_SMCommand cmd( Command_String( "", Sip_Command_String::register_all_identities_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
}
}
return true;
}
bool Sip_Dialog_Management::shutdown_done( bool force )
{
if( !force )
{
if( pending_hang_ups > 0 || pending_de_regs > 0 )
{
//Still can wait a bit more ...
//my_dbg << "CESC: shutdown: still not finished ... wait ... "<< end;
return false;
}
//else ... shutdown ... nothing else to do ...
my_err << std::endl << "SipStack Shutdown process is completed."<< std::endl;
} else {
my_err << "Shutdown process timed out (there was some problem): "<< std::endl;
if( pending_hang_ups > 0 ) {
my_err << " CALLS: Not all calls could be correctly hung up."<< std::endl;
}
if( pending_de_regs > 0 ) {
my_err << " DE-REGISTER: Not all identities were correctly de-registered."<< std::endl;
}
}
Sip_SMCommand cmd(
Command_String( "", Sip_Command_String::sip_stack_shutdown_done),
Sip_SMCommand::dispatcher,
Sip_SMCommand::dispatcher);
get_sip_stack()->enqueue_command(cmd, HIGH_PRIO_QUEUE);
return true;
}
| [
"619695356@qq.com"
] | 619695356@qq.com |
1a17628b6f397ee41a398115d763bc01503483f7 | 0423795c72506eb5cd8ba5226948a9c8c303b008 | /Game Theory/Kitty and Katty.cpp | ea51918bb8c8a13a8177b3aebea09e812891e051 | [
"MIT"
] | permissive | StavrosChryselis/hackerrank | e46f45030afd899c3134d87455905808f48d4b7e | 42a3e393231e237a99a9e54522ce3ec954bf614f | refs/heads/master | 2021-01-17T14:33:07.184340 | 2019-11-10T16:32:16 | 2019-11-10T16:32:16 | 84,091,015 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | /*
****************************************************************
****************************************************************
-> Coded by Stavros Chryselis
-> Visit my github for more solved problems over multiple sites
-> https://github.com/StavrosChryselis
-> Feel free to email me at stavrikios@gmail.com
****************************************************************
****************************************************************
*/
#include <stdio.h>
using namespace std;
int main()
{
int T, N;
scanf("%d", &T);
while(T--)
{
scanf("%d", &N);
if(N == 1)
printf("Kitty\n");
else if(N % 2)
printf("Katty\n");
else
printf("Kitty\n");
}
return 0;
}
| [
"noreply@github.com"
] | StavrosChryselis.noreply@github.com |
c1c4d658042c7fba5c20c51e0092b2df131e820e | 41a76318e5b9eef2c69bbf922724f8b191d7d124 | /kokkos-kernels/src/impl/generated_specializations_cpp/spiluk_symbolic/KokkosSparse_spiluk_symbolic_eti_spec_inst_flt_int_int64_t_LayoutLeft_Threads_HostSpace.cpp | 53725c261abdb8765797bd3045ba86879f6a4600 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | zishengye/compadre | d0ff10deca224284e7e153371a738e053e66012a | 75b738a6a613c89e3c3232cbf7b2589a6b28d0a3 | refs/heads/master | 2021-06-25T06:16:38.327543 | 2021-04-02T02:08:48 | 2021-04-02T02:08:48 | 223,650,267 | 0 | 0 | NOASSERTION | 2019-11-23T20:41:03 | 2019-11-23T20:41:02 | null | UTF-8 | C++ | false | false | 2,615 | cpp | /*
//@HEADER
// ************************************************************************
//
// KokkosKernels 0.9: Linear Algebra and Graph Kernels
// Copyright 2017 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Siva Rajamanickam (srajama@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#define KOKKOSKERNELS_IMPL_COMPILE_LIBRARY true
#include "KokkosKernels_config.h"
#if defined (KOKKOSKERNELS_INST_FLOAT) \
&& defined (KOKKOSKERNELS_INST_LAYOUTLEFT) \
&& defined (KOKKOSKERNELS_INST_EXECSPACE_THREADS) \
&& defined (KOKKOSKERNELS_INST_MEMSPACE_HOSTSPACE) \
&& defined (KOKKOSKERNELS_INST_ORDINAL_INT64_T) \
&& defined (KOKKOSKERNELS_INST_OFFSET_INT)
#include "KokkosSparse_spiluk_symbolic_spec.hpp"
namespace KokkosSparse {
namespace Impl {
KOKKOSSPARSE_SPILUK_SYMBOLIC_ETI_SPEC_INST(float, int64_t, int, Kokkos::LayoutLeft, Kokkos::Threads, Kokkos::HostSpace)
} // Impl
} // KokkosSparse
#endif
| [
"pkuberry@gmail.com"
] | pkuberry@gmail.com |
9b65e9b843f5a63c9e5fbdcf1b13c3fe6f5b5d35 | 59198b35100e4bac4e53aa1773350aa2e951c014 | /Sqlite3DbEngine/DispatchModuleCenter/AccountMgr.cpp | 0ffba4aaa9e3a49504a8eb5dca4dfcc423fcd9d4 | [] | no_license | 15831944/Sqlite3DbEngine | 172e25798c2fc5ee7771f2a81402683d50411205 | 0d5cbd596c18bcac62707165c5f8b80c89a1b677 | refs/heads/master | 2022-03-19T23:10:34.223118 | 2017-10-29T13:08:33 | 2017-10-29T13:08:33 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 112,883 | cpp | // AccountMgr.cpp : CAccountMgr 的实现
#include "stdafx.h"
#include "AccountMgr.h"
#include "SKFHelper.h"
#include "SqliteHelper.h"
#include "openssl/aes.h"
#define TDHXKJ_ACCOUNTSTATUS_LOCK 1
// CAccountMgr
CString CAccountMgr::CreateTable(CComPtr <ISafeService>& spiSafeService)
{
CString strAdminPW;
if(NULL == spiSafeService)
return strAdminPW;
strAdminPW = GetSafePW(spiSafeService,m_strDataPW,ACCOUNTTYPE_SA);
if(m_strDataPW.IsEmpty())
{
/// 没有插入卡
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(m_strLastErr);
#endif
return strAdminPW;
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(_T("初始化时打开数据库失败"));
#endif
return strAdminPW;
}
HRESULT hRet(S_OK);
CString strSqlCmd(_T(""));
VARIANT_BOOL bExistFlag = VARIANT_FALSE;
CString strTableName(SQLITEDB_TABLE_ACCOUNT);
hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
///记录管理账号信息表,LoginID/ShowName/EncodePassword/CheckCode/LoginTime/UserRight/Status(状态,比如登录是否被锁定)/UserType/SyncFlag同步标记
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
LID VARCHAR DEFAULT '' NOT NULL PRIMARY KEY UNIQUE,\
SName VARCHAR DEFAULT '' NOT NULL,\
EPass VARCHAR DEFAULT '' NOT NULL,\
CCode VARCHAR DEFAULT '' NOT NULL,\
LTime DOUBLE DEFAULT '' NOT NULL,\
URight INTEGER DEFAULT '0' NOT NULL,\
Status INTEGER DEFAULT '0' NOT NULL,\
UType INTEGER DEFAULT '0' NOT NULL,\
SyncFlag INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("创建系统账号表成功"));
#endif
}
strSqlCmd.Empty();
}
strTableName.Empty();
/// 创建U盘白名单表
strTableName = SQLITEDB_TABLE_USBWHITE;
hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
///记录U盘白名单信息表,UID/UDisk/MakerName/AddTime/Size/UType(区分自己的U盘还是其他的,0是自己的删除要特别提醒用户)
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
UID VARCHAR DEFAULT '' NOT NULL PRIMARY KEY UNIQUE,\
UDisk VARCHAR DEFAULT '' NOT NULL,\
MName VARCHAR DEFAULT '' NOT NULL,\
ATime DOUBLE DEFAULT '' NOT NULL,\
Size INTEGER DEFAULT '0' NOT NULL,\
UType INTEGER DEFAULT '0' NOT NULL,\
SyncFlag INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
strTableName.Empty();
/// 创建文件白名单表
strTableName = SQLITEDB_TABLE_FILEWHITE;
hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
///记录文件白名单信息表,FileID/FullPath/CorpName/Version/FileType/Size(文件大小)/Flag(标记0删除1添加2更新32自己的程序)/UpdateTime/Sha/SyncFlag/Desc(描述)
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
FID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,\
FullPath VARCHAR DEFAULT '' NOT NULL,\
CorpName VARCHAR DEFAULT '' NOT NULL,\
Version VARCHAR DEFAULT '' NOT NULL,\
Desc VARCHAR DEFAULT '' NOT NULL,\
Type INTEGER DEFAULT '0' NOT NULL,\
Size INTEGER DEFAULT '0' NOT NULL,\
Flag INTEGER DEFAULT '1' NOT NULL,\
UTime DOUBLE DEFAULT '' NOT NULL,\
Sha BLOB DEFAULT '' NOT NULL,\
SyncFlag INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
strTableName.Empty();
/// 创建系统禁用服务表
strTableName = SQLITEDB_TABLE_STOPSERVICE;
hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
///记录系统禁用服务表 SID标识/SerName服务名称/ImagePath服务镜像路径/ATime添加时间/Start原来的启动配置/Status状态
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
SID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,\
SerName VARCHAR DEFAULT '' NOT NULL,\
ImagePath VARCHAR DEFAULT '' NOT NULL,\
ATime DOUBLE DEFAULT '' NOT NULL,\
Start INTEGER DEFAULT '0' NOT NULL,\
Status INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
strTableName.Empty();
//创建临时用户表
strTableName = SQLITEDB_TABLE_TEMP_ACCOUNT;
hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
OutputDebugString(_T("创建临时账号表\n"));
///记录U盘白名单信息表,UID/UDisk/MakerName/AddTime/Size/UType(区分自己的U盘还是其他的,0是自己的删除要特别提醒用户)
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
LID VARCHAR DEFAULT '' NOT NULL,\
STempName VARCHAR DEFAULT '' NOT NULL PRIMARY KEY UNIQUE,\
SName VARCHAR DEFAULT '' NOT NULL,\
CTempCode VARCHAR DEFAULT '' NOT NULL,\
CCode VARCHAR DEFAULT '' NOT NULL,\
LTime DOUBLE DEFAULT '' NOT NULL,\
URight INTEGER DEFAULT '0' NOT NULL,\
Status INTEGER DEFAULT '0' NOT NULL,\
UType INTEGER DEFAULT '0' NOT NULL,\
SyncFlag INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
strTableName.Empty();
if(NULL != spiSqlite3Connect)
{
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
}
return strAdminPW;
}
CComPtr <ISqlite3Connect> CAccountMgr::GetConnect(const CString& strPW,BOOL bReadFlag)
{
CComPtr <IConnectHelper> spiConnectHelper = CDbHelper::GetDBHelper();
if(NULL == spiConnectHelper)
return NULL;/// 创建接口失败
HRESULT hRet(E_FAIL);
CComPtr <ISqlite3Connect> spiSqlite3Connect = NULL;
CString strDataFile = CBaseFuncLib::GetAppDataDir()+TDHX_SQLITEDB_SYSFILE;
if(!bReadFlag || !CBaseFuncLib::IsPathExist(strDataFile))
{
try
{
hRet = spiConnectHelper->OpenDB(CComBSTR(strDataFile),VARIANT_TRUE,2*SQLITE_OPEN_DEFAULTOVERTIME,CComBSTR(strPW),&spiSqlite3Connect);
}
catch( ... )
{
}
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiConnectHelper->get_LastErrorInfo(&bstrErrInfo);
#ifdef APP_LOG_ENABLE
/// 写日志
if(bstrErrInfo.Length())
{
m_strLastErr = bstrErrInfo.m_str;
WRITELOGTOFILE(bstrErrInfo.m_str);
}
#endif
bstrErrInfo.Empty();
}
spiConnectHelper = NULL;
return spiSqlite3Connect;
}
CString strReadFile(_T(""));
CString strModuleName = CBaseFuncLib::GetModuleName(NULL);
if(0 == strModuleName.CompareNoCase(TDHXKJ_HOSTSERVICE))
strReadFile = CBaseFuncLib::GetTmpPath()+TDHX_SQLITEDB_SYSTEMPFILE;
else
strReadFile = CBaseFuncLib::GetTmpPath()+TDHX_SQLITEDB_SYSFILE;
BOOL bNeedCopy = FALSE;
if(!CBaseFuncLib::IsPathExist(strReadFile) || !CBaseFuncLib::GetFileSize(strReadFile))
bNeedCopy = TRUE;
else
{
COleDateTime FileTime1 = CBaseFuncLib::GetFileWriteTime(strDataFile);
COleDateTime FileTime2 = CBaseFuncLib::GetFileWriteTime(strReadFile);
if((FileTime1-FileTime2).GetTotalSeconds() > 0.01)
bNeedCopy = TRUE;
}
BOOL bCopyFlag = FALSE;
if(bNeedCopy)
{
int nIndex = 5;
/// 复制到临时目录只读使用
bCopyFlag = ::CopyFile(strDataFile,strReadFile,FALSE);
DWORD dwErrCode = ::GetLastError();
while(ERROR_ACCESS_DENIED != dwErrCode && !bCopyFlag && nIndex > 0)
{
::Sleep(200);
nIndex--;
bCopyFlag = ::CopyFile(strDataFile,strReadFile,FALSE);
dwErrCode = ::GetLastError();
}
}
else
bCopyFlag = TRUE;
if(!bNeedCopy || (bNeedCopy && bCopyFlag))
hRet = spiConnectHelper->OpenDB(CComBSTR(strReadFile),VARIANT_FALSE,SQLITE_OPEN_DEFAULTOVERTIME,CComBSTR(strPW),&spiSqlite3Connect);
else
hRet = spiConnectHelper->OpenDB(CComBSTR(strDataFile),VARIANT_FALSE,SQLITE_OPEN_DEFAULTOVERTIME,CComBSTR(strPW),&spiSqlite3Connect);
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiConnectHelper->get_LastErrorInfo(&bstrErrInfo);
if(bstrErrInfo.Length())
{
m_strLastErr = bstrErrInfo.m_str;
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
}
spiConnectHelper = NULL;
return spiSqlite3Connect;
}
STDMETHODIMP CAccountMgr::get_AccountType(EAccountType* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
(*pVal) = m_eAccountType;
return S_OK;
}
STDMETHODIMP CAccountMgr::CreateAuth(BSTR bstrDeviceID,BSTR bstrFilePath)
{
// TODO: 在此添加实现代码
if(NULL == bstrDeviceID || NULL == bstrFilePath)
return E_FAIL;
CString strDeviceID(bstrDeviceID);
if(strDeviceID.IsEmpty())
{
m_strLastErr = _T("设备号为空!");
return E_FAIL;
}
#ifndef TDHXKJ_VERSION_NOUSB
m_nRight = USEAUTHTYPE_AUTHMGR;
if(USEAUTHTYPE_AUTHMGR != (m_nRight & USEAUTHTYPE_AUTHMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
CComBSTR bstrVal,bstrDisk;
HRESULT hRet = spiSafeService->get_CID(VARIANT_TRUE,&bstrDisk,&bstrVal);
if(FAILED(hRet) || !bstrVal.Length())
{
spiSafeService = NULL;
m_strLastErr = _T("没有找到安全U卡!无法创建授权");
return E_FAIL;
}
CString strCID = bstrVal.m_str;
bstrVal.Empty();
#ifndef TDHXKJ_VERSION_NOUSB
CString strInstallDisk;
CComBSTR bstrInstallDisk;
hRet = spiSafeService->GetInstallDisk(VARIANT_TRUE,&bstrInstallDisk);
if(bstrInstallDisk.Length())
strInstallDisk = bstrInstallDisk.m_str;
bstrInstallDisk.Empty();
if(0 != strInstallDisk.CompareNoCase(strCID))
{
m_strLastErr = _T("没有插入安装U卡!");
return E_FAIL;
}
#endif
CComPtr<ISafeCard> spiSafeCard = NULL;
hRet = spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL == spiSafeCard)
{
spiSafeService = NULL;
return E_FAIL;
}
hRet = spiSafeCard->put_CurDisk(bstrDisk);
short nReadLen = TDHXKJ_SKFAPP_FILELEN;
BYTE BufData[TDHXKJ_SKFAPP_FILELEN] = {0};
VARIANT_BOOL bRetFlag = VARIANT_FALSE;
CComPtr <IJsonService> spiJsonService = NULL;
hRet = spiSafeService->StringSha1(CComBSTR(strCID+_T("_HXSafe")),&bstrVal);
CString strSha1 = bstrVal.m_str;
bstrVal.Empty();
strSha1.Delete(0,16);
CComBSTR bstrAppName(TDHXKJ_SKFAPP_NAME),bstrUserPin(strSha1.Left(8));
ULONG nAppHandle = 0;
hRet = spiSafeCard->OpenApplication(CComBSTR(TDHXKJ_SKFAPP_NAME),&nAppHandle);
if(FAILED(hRet))
{
spiSafeCard = NULL;
spiSafeService = NULL;
m_strLastErr = _T("安全U卡异常!");
return E_FAIL;
}
SHORT nTryCount = 0;
hRet = spiSafeCard->VerifyPIN(nAppHandle,VARIANT_FALSE,bstrUserPin,&nTryCount);
if(FAILED(hRet))
{
spiSafeCard->CloseApplication(nAppHandle);
nAppHandle = 0;
spiSafeCard = NULL;
spiSafeService = NULL;
m_strLastErr = _T("安全U卡异常!");
return E_FAIL;
}
/// 获得缺省密码
hRet = spiSafeCard->ReadAppFile(nAppHandle,CComBSTR(TDHXKJ_SKFAPP_CONFIGFILE),0,&nReadLen,BufData);
if(FAILED(hRet))
{
/// 获取错误信息
CComBSTR bstrErrInfo;
spiSafeCard->get_LastErrInfo(&bstrErrInfo);
m_strLastErr = bstrErrInfo.m_str;
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
spiSafeCard->CloseApplication(nAppHandle);
nAppHandle = 0;
spiSafeCard = NULL;
spiSafeService = NULL;
return E_FAIL;
}
CString strData(BufData);
strData.TrimLeft();
strData.TrimRight();
if(!strData.IsEmpty())
{
if(NULL == spiJsonService)
spiJsonService = CDbHelper::GetJsonService();
if(NULL != spiJsonService)
{
spiJsonService->put_CodingType(CODINGTYPE_ANSI);
hRet = spiJsonService->ParseString(CComBSTR(strData),&bRetFlag);
}
}
spiSafeCard->ClearSecureState(nAppHandle);
spiSafeCard->CloseApplication(nAppHandle);
spiSafeCard = NULL;
nAppHandle = 0;
if(VARIANT_FALSE == bRetFlag)
{
spiJsonService = NULL;
spiSafeService = NULL;
m_strLastErr = _T("安全U卡异常!");
return E_FAIL;
}
CComPtr<ICryptoStor> spiCryptoStor = NULL;
hRet = spiSafeService->get_CryptoStor(&spiCryptoStor);
if(NULL == spiCryptoStor)
{
spiJsonService = NULL;
spiSafeService = NULL;
m_strLastErr = _T("安全U卡非法!");
return E_FAIL;
}
strCID.Empty();
CString strDBPW;
spiJsonService->GetStringValue(CComBSTR(_T("DataPW")),&bstrVal);
if(bstrVal.Length())
strDBPW = bstrVal.m_str;
bstrVal.Empty();
ULONG nAuthNode = 0;
spiJsonService->GetStringValue(CComBSTR(_T("AuthNode")),&bstrVal);
if(bstrVal.Length())
{
nAuthNode = CBaseFuncLib::StrToNum(bstrVal.m_str);
}
bstrVal.Empty();
CComVariant varCustomerID;
spiJsonService->GetVariantValue(CComBSTR(_T("CustomerID")),&varCustomerID);
varCustomerID.ChangeType(VT_I4);
DWORD dwSize = 0;
spiCryptoStor->PutCurDisk(bstrDisk,&dwSize);
CString strAuthFile(CBaseFuncLib::GetTmpPath(FALSE)+TDHX_SQLITEDB_AUTHFILE);
if(CBaseFuncLib::IsPathExist(strAuthFile))
::SetFileAttributes(strAuthFile,FILE_ATTRIBUTE_NORMAL);
/// 尝试先读取
hRet = spiCryptoStor->ReadOnlyFile(CComBSTR(TDHX_SQLITEDB_AUTHFILE),CComBSTR(strAuthFile));
/// 尝试打开
CComPtr <ISqlite3Connect> spiSqlite3Connect = NULL;
CComPtr <IConnectHelper> spiConnectHelper = CDbHelper::GetDBHelper();
if(NULL != spiConnectHelper)
{
hRet = spiConnectHelper->OpenDB(CComBSTR(strAuthFile),VARIANT_TRUE,(short)15,CComBSTR(strDBPW),&spiSqlite3Connect);
if(NULL == spiSqlite3Connect)
{
CComBSTR bstrErrInfo;
spiConnectHelper->get_LastErrorInfo(&bstrErrInfo);
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
spiConnectHelper = NULL;
}
if(NULL == spiSqlite3Connect)
{
spiJsonService = NULL;
spiCryptoStor->CloseDisk();
spiCryptoStor = NULL;
spiSafeService = NULL;
return hRet;
}
ULONG nUsedCount = 0;
/// 创建授权表
CString strSqlCmd(_T(""));
CString strTableName = SQLITEDB_TABLE_AUTHLIST;
VARIANT_BOOL bExistFlag = VARIANT_FALSE;
hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
///记录软件授权信息AuthAutoID/DeviceID/AuthCode/CorpID/CorpName/AuthTime
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
AID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,\
DID VARCHAR DEFAULT '' NOT NULL,\
Code VARCHAR DEFAULT '' NOT NULL,\
CorpID INTEGER DEFAULT '0' NOT NULL,\
CorpName VARCHAR DEFAULT '' NOT NULL,\
ATime DOUBLE DEFAULT '' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
else
{
strSqlCmd.Format(_T("SELECT Code FROM [%s] WHERE CorpID=%ld"),\
strTableName,varCustomerID.lVal);
nUsedCount = CDbHelper::GetRecordCount(spiSqlite3Connect,strSqlCmd);
}
CString strValidDay,strPacket,strCustomerName;
spiJsonService->GetStringValue(CComBSTR(_T("ValidDay")),&bstrVal);
if(bstrVal.Length())
strValidDay = bstrVal.m_str;
bstrVal.Empty();
spiJsonService->GetStringValue(CComBSTR(_T("AuthPacket")),&bstrVal);
if(bstrVal.Length())
strPacket = bstrVal.m_str;
bstrVal.Empty();
spiJsonService->GetStringValue(CComBSTR(_T("CustomerName")),&bstrVal);
if(bstrVal.Length())
strCustomerName = bstrVal.m_str;
bstrVal.Empty();
LONG nAuthID = 0;
CString strAuthCode;
strSqlCmd.Format(_T("SELECT AID,Code FROM [%s] WHERE DID='%s' AND CorpID=%ld"),\
strTableName,strDeviceID,varCustomerID.lVal);
if(SUCCEEDED(spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd))))
{
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
bstrVal.Empty();
spiSqlite3Connect->GetValueInt(0,&nAuthID);
spiSqlite3Connect->GetValueString(1,&bstrVal);
strAuthCode = bstrVal.m_str;
bstrVal.Empty();
break;
}
}
strSqlCmd.Empty();
/// 计算授权码
CString strCode;
strCode.Format(_T("HXSafe%ld_%s_%s_%s"),varCustomerID.lVal,strDeviceID,strValidDay,strPacket);
spiSafeService->StringSha1(CComBSTR(strCode),&bstrVal);
strCode.Empty();
strCode = bstrVal.m_str;
bstrVal.Empty();
CString strNewAuthCode;
strNewAuthCode.Format(_T("HX%04d-%s-%s-%s"),varCustomerID.lVal,strCode.Left(5),strCode.Right(5),strDeviceID.Right(5));
strNewAuthCode.MakeUpper();
if(!nAuthID)
{
if(nAuthNode > nUsedCount)
{
COleDateTime curTime(COleDateTime::GetCurrentTime());
/// 没有超过授权节点数,插入
strSqlCmd.Format(_T("INSERT INTO [%s] (DID,Code,CorpID,CorpName,ATime) \
VALUES(\'%s\',\'%s\',%ld,\'%s\',%f);"),
strTableName,strDeviceID,strNewAuthCode,varCustomerID.lVal,strCustomerName,curTime.m_dt);
}
else
{
spiJsonService = NULL;
spiCryptoStor->CloseDisk();
spiCryptoStor = NULL;
spiSafeService = NULL;
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
m_strLastErr = _T("授权数量已经用完,不能再对新设备授权。");
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
else
{
#ifndef _DEBUG
if(0 != strNewAuthCode.CompareNoCase(strAuthCode))
#endif
{
/// 授权更新了
COleDateTime curTime(COleDateTime::GetCurrentTime());
strSqlCmd.Format(_T("UPDATE [%s] SET Code=\'%s\',ATime=%f WHERE DID='%s' AND CorpID=%ld"),\
strTableName,strNewAuthCode,curTime.m_dt,strDeviceID,varCustomerID.lVal);
}
}
if(!strSqlCmd.IsEmpty())
{
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(!nAuthID && SUCCEEDED(hRet))
{
strSqlCmd.Empty();
strSqlCmd.Format(_T("select last_insert_rowid() from %s"),strTableName);
hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
hRet = spiSqlite3Connect->NextRow();
if(SUCCEEDED(hRet))
{
spiSqlite3Connect->GetValueInt(0,&nAuthID);
}
}
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
if(SUCCEEDED(hRet) && !strSqlCmd.IsEmpty())
{
/// 创建授权成功,写入隐藏区备份
hRet = spiCryptoStor->WriteInFile(CComBSTR(strAuthFile),CComBSTR(TDHX_SQLITEDB_AUTHFILE),VARIANT_FALSE);
}
strSqlCmd.Empty();
spiCryptoStor->CloseDisk();
spiCryptoStor = NULL;
CComPtr <ISoftEncry> spiSoftEncry = NULL;
spiSafeService->get_SoftEncry(&spiSoftEncry);
BOOL bSafeFlag = FALSE;
if(NULL != spiSoftEncry)
{
unsigned char szVI[AES_BLOCK_SIZE] = "HX2016SafeGuard";
/// 写入配置
spiJsonService->put_StringValue(CComBSTR(_T("InstallDisk")),CComBSTR(_T("")));
spiJsonService->put_IntValue(CComBSTR(_T("AuthID")),nAuthID);
spiJsonService->put_StringValue(CComBSTR(_T("DID")),CComBSTR(strDeviceID));
spiJsonService->put_StringValue(CComBSTR(_T("AuthCode")),CComBSTR(strNewAuthCode));
spiJsonService->get_ObjectString(&bstrVal);
char *pAuthBuf = NULL;
int nAuthLen = CBaseFuncLib::Us2ToChar(bstrVal.m_str,&pAuthBuf);
bstrVal.Empty();
ULONG nOutLen = 0;
BYTE *pBuf = NULL;
BYTE szKey[AES_BLOCK_SIZE*2+1] = "01234567899876543210012345678901";
if(NULL != pAuthBuf)
{
hRet = spiSoftEncry->AesCbcEnc((BYTE* )pAuthBuf,nAuthLen-1,szKey,szVI,&nOutLen,&pBuf);
delete []pAuthBuf;
pAuthBuf = NULL;
}
/// 输出授权文件
bSafeFlag = CBaseFuncLib::WriteToFile(bstrFilePath,pBuf,nOutLen);
hRet = spiSoftEncry->ReleaseBuf(pBuf);
pBuf = NULL;
spiSoftEncry = NULL;
}
spiSafeService = NULL;
if(!bSafeFlag)
{
m_strLastErr = _T("写授权文件失败。");
return E_FAIL;
}
#endif
return S_OK;
}
STDMETHODIMP CAccountMgr::ImportAuth(BSTR bstrFilePath,BYTE* pbKey,IDispatch **ppAuthInfo)
{
// TODO: 在此添加实现代码
if(NULL == bstrFilePath || NULL == ppAuthInfo)
return E_FAIL;
if(USEAUTHTYPE_AUTHMGR != (m_nRight & USEAUTHTYPE_AUTHMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
CComPtr <ISoftEncry> spiSoftEncry = NULL;
if(NULL != spiSafeService)
spiSafeService->get_SoftEncry(&spiSoftEncry);
if(NULL == spiSoftEncry || NULL == spiSafeService)
{
m_strLastErr = _T("创建核心组件对象失败!");
return E_FAIL;
}
HRESULT hRet(E_FAIL);
#ifndef TDHXKJ_VERSION_NOUSB
CString strInstallDisk,strCID;
CComBSTR bstrInstallDisk;
hRet = spiSafeService->GetInstallDisk(VARIANT_TRUE,&bstrInstallDisk);
if(bstrInstallDisk.Length())
strInstallDisk = bstrInstallDisk.m_str;
bstrInstallDisk.Empty();
/// 优先找非安装U卡使用
CComBSTR bstrCID,bstrDisk;
hRet = spiSafeService->get_CID(VARIANT_FALSE,&bstrDisk,&bstrCID);
if(SUCCEEDED(hRet) && bstrCID.Length())
{
strCID = bstrCID.m_str;
bstrCID.Empty();
}
//#ifndef _DEBUG
if(0 == strInstallDisk.CompareNoCase(strCID))
{
m_strLastErr = _T("安装U卡不能执行导入授权操作!");
return E_FAIL;
}
//#endif
#endif
CString strAuthFile = CBaseFuncLib::GetAppDataDir()+TDHXKJ_SKFAPP_AUTHFILE;
if(0 == strAuthFile.CompareNoCase(bstrFilePath))
{
m_strLastErr = _T("不能导入已经使用的授权文件!");
return E_FAIL;
}
BYTE* pBufData = NULL;
DWORD dwLen = CBaseFuncLib::ReadAllData(bstrFilePath,&pBufData);
if(NULL == pBufData)
{
spiSoftEncry = NULL;
spiSafeService = NULL;
m_strLastErr = _T("读取授权文件数据失败!");
return E_FAIL;
}
unsigned char szKey[AES_BLOCK_SIZE*2+1] = "01234567899876543210012345678901";
unsigned char szVI[AES_BLOCK_SIZE] = "HX2016SafeGuard";
ULONG nOutLen = 0;
BYTE *pBuf = NULL;
if(NULL != pbKey)
hRet = spiSoftEncry->AesCbcDes(pBufData,dwLen,pbKey,szVI,&nOutLen,&pBuf);
else
hRet = spiSoftEncry->AesCbcDes(pBufData,dwLen,szKey,szVI,&nOutLen,&pBuf);
CComPtr <IJsonService> spiJsonService = NULL;
if(NULL == pBuf)
{
spiSoftEncry = NULL;
spiSafeService = NULL;
m_strLastErr = _T("授权数据解密失败!");
return hRet;
}
spiJsonService = CDbHelper::GetJsonService();
/// 通过JSON加载
VARIANT_BOOL bLoadFlag = VARIANT_FALSE;
if(NULL != spiJsonService)
{
spiJsonService->put_CodingType(CODINGTYPE_ANSI);
hRet = spiJsonService->ParseString(CComBSTR(CString(pBuf)),&bLoadFlag);
}
spiSoftEncry->ReleaseBuf(pBuf);
spiSoftEncry = NULL;
pBuf = NULL;
if(VARIANT_FALSE == bLoadFlag)
spiJsonService = NULL;
if(NULL == spiJsonService)
{
spiSafeService = NULL;
m_strLastErr = _T("授权数据解析失败!");
return hRet;
}
BOOL bSaveFlag = TRUE;
LONGLONG nVal = 0;
spiJsonService->GetIntValue(CComBSTR(_T("AuthPacket")),&nVal);
ULONG nAuthPacket = (ULONG)nVal;
#ifdef TDHXKJ_VRSION_SINGLE
if(HXPACKETTYPE_SERVER == (nAuthPacket & HXPACKETTYPE_SERVER))
{
bSaveFlag = FALSE;
}
#endif
#ifdef TDHXKJ_VRSION_NET
if(HXPACKETTYPE_SERVER != (nAuthPacket & HXPACKETTYPE_SERVER))
{
bSaveFlag = FALSE;
}
#endif
CComBSTR bstrVal;
CString strDID,strUniID,strAuthID;
spiJsonService->GetStringValue(CComBSTR(_T("AuthID")),&bstrVal);
if(bstrVal.Length())
{
strAuthID = bstrVal.m_str;
bstrVal.Empty();
/// 判断是否已经被移除授权禁用
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE,KEY_READ);
CString strRegVal;
regKey.GetRegStringVal(_T(""),strRegVal);
if(0 == strRegVal.CompareNoCase(strAuthID))
{
/// 已经被禁用授权,不能再导入使用
m_strLastErr = _T("不能导入已经移除的授权文件!");
bSaveFlag = FALSE;
}
}
spiJsonService->GetStringValue(CComBSTR(_T("DID")),&bstrVal);
if(bstrVal.Length())
{
strDID = bstrVal.m_str;
bstrVal.Empty();
}
if(NULL != spiSafeService)
{
spiSafeService->GetUniqueID(&bstrVal);
strUniID = bstrVal.m_str;
bstrVal.Empty();
}
if(bSaveFlag && 0 == strDID.CompareNoCase(strUniID))
{
m_bAuthValid = VARIANT_FALSE;
/// 合法的授权
spiJsonService->GetStringValue(CComBSTR(_T("AuthCode")),&bstrVal);
if(bstrVal.Length())
{
CheckAuthValid(spiSafeService,spiJsonService,bstrVal.m_str);
if(VARIANT_TRUE == m_bAuthValid)
{
/// 导入的授权码写入注册表
#ifndef _DEBUG
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE);
regKey.SetRegStringVal(strDID,bstrVal.m_str);
#endif
bstrVal.Empty();
}
else
{
m_strLastErr = _T("无效授权!");
bSaveFlag = FALSE;
}
}
else
{
m_strLastErr = _T("授权码为空!");
bSaveFlag = FALSE;
}
}
else
{
if(bSaveFlag)
{
m_strLastErr = _T("授权信息不匹配!");
bSaveFlag = FALSE;
}
}
if(bSaveFlag)
{
spiJsonService->QueryInterface(__uuidof (IDispatch),(void **)ppAuthInfo);
#ifndef TDHXKJ_VERSION_NOUSB
CComBSTR bstrVal;
spiJsonService->get_ObjectString(&bstrVal);
/// 写入安全U卡,必须插入U卡
SaveAuthToCard(bstrDisk,strCID,bstrVal.m_str,spiSafeService);
bstrVal.Empty();
bstrDisk.Empty();
::SetFileAttributes(strAuthFile,FILE_ATTRIBUTE_NORMAL);
bSaveFlag = ::CopyFile(bstrFilePath,strAuthFile,FALSE);
#else
::SetFileAttributes(strAuthFile,FILE_ATTRIBUTE_NORMAL);
bSaveFlag = ::CopyFile(bstrFilePath,strAuthFile,FALSE);
#endif
}
spiSafeService = NULL;
spiJsonService = NULL;
if(!bSaveFlag)
return E_FAIL;
return S_OK;
}
void CAccountMgr::CheckAuthValid(CComPtr <ISafeService>& spiSafeService,\
CComPtr <IJsonService>& spiJsonService,const CString& strAuthCode)
{
m_bAuthValid = VARIANT_FALSE;
if(NULL == spiSafeService || NULL == spiJsonService || strAuthCode.IsEmpty())
return;
CComBSTR bstrVal;
CString strUniID;
CString strModuleName = CBaseFuncLib::GetModuleName(NULL);
/// 双因子登录时会崩溃是因为没有初始化COM使用环境
if(0 == strModuleName.CompareNoCase(_T("winlogon.exe")))
{
/// 获取注册表记录的设备号
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE,KEY_READ);
regKey.GetRegStringVal(PRODUCT_COMMAN_DEVICEID,strUniID);
}
else
{
spiSafeService->GetUniqueID(&bstrVal);
strUniID = bstrVal.m_str;
bstrVal.Empty();
}
CString strValidDay,strPacket;
CComVariant varCustomerID;
spiJsonService->GetVariantValue(CComBSTR(_T("CustomerID")),&varCustomerID);
varCustomerID.ChangeType(VT_I4);
m_nCorpID = varCustomerID.lVal;
spiJsonService->GetStringValue(CComBSTR(_T("ValidDay")),&bstrVal);
if(bstrVal.Length())
strValidDay = bstrVal.m_str;
bstrVal.Empty();
spiJsonService->GetStringValue(CComBSTR(_T("AuthPacket")),&bstrVal);
if(bstrVal.Length())
{
strPacket = bstrVal.m_str;
m_nAuthPacket = CBaseFuncLib::StrToNum(strPacket);
}
bstrVal.Empty();
LONGLONG nVal = 0;
spiJsonService->GetIntValue(CComBSTR(_T("ValidDay")),&nVal);
COleDateTimeSpan spanTime((ULONG)nVal,0,0,0);
COleDateTime startTime(2016,1,1,0,0,0);
COleDateTime AuthTime = startTime + spanTime;
CString strCode,strCheckCode;
strCode.Format(_T("HXSafe%ld_%s_%s_%s"),varCustomerID.lVal,strUniID,strValidDay,strPacket);
spiSafeService->StringSha1(CComBSTR(strCode),&bstrVal);
strCode.Empty();
strCode = bstrVal.m_str;
bstrVal.Empty();
strCheckCode.Format(_T("HX%04d-%s-%s-%s"),varCustomerID.lVal,strCode.Left(5),strCode.Right(5),strUniID.Right(5));
strCheckCode.MakeUpper();
//CString strstr1;
//strstr1.Format(_T("重新计算的认证码:%s\n"),strCheckCode);
//OutputDebugString(strstr1);
//CString strstr2;
//strstr2.Format(_T("计算认证码的基础数据:CID=%04d,Code=%s,uniID=%s\n"),varCustomerID.lVal,strCode,strUniID);
//OutputDebugString(strstr2);
if(0 != strAuthCode.CompareNoCase(strCheckCode))
return;///非法授权码
COleDateTime curTime = COleDateTime::GetCurrentTime();
if(curTime < AuthTime)
{
/// 有效期内
m_bAuthValid = VARIANT_TRUE;
}
}
STDMETHODIMP CAccountMgr::RefreshAuth(VARIANT_BOOL* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
/// 强制刷新
m_strDataPW.Empty();
m_bAuthValid = VARIANT_FALSE;
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL != spiSafeService)
{
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
}
return S_OK;
}
STDMETHODIMP CAccountMgr::UnLock(BSTR bstrID)
{
// TODO: 在此添加实现代码
if(NULL == bstrID)
return E_FAIL;
CString strLog(_T("解锁账号"));
strLog += bstrID;
/// 记录审计日志
CDbHelper::WriteSysLog(ACCOUNTTYPE_SA,TDHX_ACCOUNT_SA,m_strCurName,strLog);
strLog.Empty();
if(USEAUTHTYPE_ACCOUNTMGR != (m_nRight & USEAUTHTYPE_ACCOUNTMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
if(VARIANT_TRUE == m_bReadOnly)
{
m_strLastErr = _T("此操作必须插入安全U卡才可以进行!");
return E_FAIL;
}
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
return E_FAIL;
}
CString strSqlCmd(_T(""));
LONG nStatus = 0;
strSqlCmd.Format(_T("SELECT Status FROM [%s] WHERE %s='%s'"),\
SQLITEDB_TABLE_ACCOUNT,_T("LID"),CString(bstrID));
if(SUCCEEDED(spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd))))
{
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueInt(0,&nStatus);
break;
}
}
strSqlCmd.Empty();
if(nStatus > 0)
{
nStatus -= TDHXKJ_ACCOUNTSTATUS_LOCK;
strSqlCmd.Format(_T("UPDATE [%s] SET Status=%d WHERE LID='%s'"),\
SQLITEDB_TABLE_ACCOUNT,nStatus,CString(bstrID));
/// 修改到数据库保存
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
/// 记录审计日志
if(SUCCEEDED(hRet))
CDbHelper::WriteSysLog(m_eAccountType,TDHX_ACCOUNT_SA,m_strCurName,CString(bstrID)+_T("账号解锁成功"));
strSqlCmd.Empty();
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return S_OK;
}
STDMETHODIMP CAccountMgr::RemoveAuth(BSTR bstrDeviceID)
{
// TODO: 在此添加实现代码
if(USEAUTHTYPE_AUTHMGR != (m_nRight & USEAUTHTYPE_AUTHMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
CString strDeviceID;
if(NULL != bstrDeviceID)
strDeviceID = bstrDeviceID;
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
{
m_strLastErr = _T("创建核心组件失败!");
return E_FAIL;
}
CComBSTR bstrVal;
if(strDeviceID.IsEmpty())
{
spiSafeService->GetUniqueID(&bstrVal);
strDeviceID = bstrVal.m_str;
bstrVal.Empty();
}
if(strDeviceID.IsEmpty())
{
spiSafeService = NULL;
m_strLastErr = _T("获得设备ID失败!");
return E_FAIL;
}
LONG nAuthID = 0;
HRESULT hRet;
#ifndef TDHXKJ_VERSION_NOUSB
CComPtr<ICryptoStor> spiCryptoStor = NULL;
hRet = spiSafeService->get_CryptoStor(&spiCryptoStor);
if(NULL == spiCryptoStor)
{
spiSafeService = NULL;
m_strLastErr = _T("获取私密接口失败!");
return E_FAIL;
}
hRet = spiCryptoStor->EnumDisk(&bstrVal);
if(!bstrVal.Length())
{
spiCryptoStor = NULL;
spiSafeService = NULL;
m_strLastErr = _T("枚举安全U卡失败!");
return hRet;
}
DWORD dwSize = 0;
spiCryptoStor->PutCurDisk(bstrVal,&dwSize);
CString strAuthFile(CBaseFuncLib::GetTmpPath(FALSE)+TDHX_SQLITEDB_AUTHFILE);
::SetFileAttributes(strAuthFile,FILE_ATTRIBUTE_NORMAL);
/// 尝试先读取
hRet = spiCryptoStor->ReadOnlyFile(CComBSTR(TDHX_SQLITEDB_AUTHFILE),CComBSTR(strAuthFile));
/// 尝试打开
CComPtr <ISqlite3Connect> spiSqlite3Connect = NULL;
CComPtr <IConnectHelper> spiConnectHelper = CDbHelper::GetDBHelper();
if(SUCCEEDED(hRet) && NULL != spiConnectHelper)
{
hRet = spiConnectHelper->OpenDB(CComBSTR(strAuthFile),VARIANT_FALSE,(short)15,CComBSTR(m_strDataPW),&spiSqlite3Connect);
if(NULL == spiSqlite3Connect)
{
CComBSTR bstrErrInfo;
spiConnectHelper->get_LastErrorInfo(&bstrErrInfo);
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
spiConnectHelper = NULL;
}
if(NULL == spiSqlite3Connect)
{
spiCryptoStor->CloseDisk();
spiCryptoStor = NULL;
spiSafeService = NULL;
m_strLastErr = _T("打开数据库失败!");
return hRet;
}
CString strOldCode(_T("")),strSqlCmd(_T(""));
strSqlCmd.Format(_T("SELECT Code,AID FROM [%s] WHERE DID='%s' AND CorpID=%ld"),\
SQLITEDB_TABLE_AUTHLIST,strDeviceID,m_nCorpID);
if(SUCCEEDED(spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd))))
{
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
bstrVal.Empty();
spiSqlite3Connect->GetValueString(0,&bstrVal);
strOldCode = bstrVal.m_str;
bstrVal.Empty();
spiSqlite3Connect->GetValueInt(1,&nAuthID);
break;
}
}
strSqlCmd.Empty();
if(strOldCode.GetLength())
{
strSqlCmd.Format( _T("DELETE FROM [%s] WHERE DID='%s' AND CorpID=%ld"), \
SQLITEDB_TABLE_AUTHLIST,strDeviceID,m_nCorpID);
/// 修改到数据库保存
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
else
{
hRet = E_FAIL;
m_strLastErr = _T("没有找到对应的授权信息!");
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
if(strOldCode.GetLength() && SUCCEEDED(hRet))
{
hRet = spiCryptoStor->WriteInFile(CComBSTR(strAuthFile),CComBSTR(TDHX_SQLITEDB_AUTHFILE),VARIANT_FALSE);
#ifndef _DEBUG
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE);
regKey.SetRegStringVal(_T(""),CBaseFuncLib::NumToStr(nAuthID));
regKey.DelKeyName(strDeviceID);
regKey.DelKeyName(PRODUCT_COMMAN_DEVICEID);
#endif
/// 删除生成的临时授权文件
CString strAuthFile = CBaseFuncLib::GetAppDataDir()+TDHXKJ_SKFAPP_AUTHFILE;
::DeleteFile(strAuthFile);
}
else
hRet = E_FAIL;
spiCryptoStor->CloseDisk();
spiCryptoStor = NULL;
#else
CComPtr <IJsonService> spiJsonService = NULL;
CString strAuthFile = CBaseFuncLib::GetAppDataDir()+TDHXKJ_SKFAPP_AUTHFILE;
if(!CBaseFuncLib::IsPathExist(strAuthFile))
{
CString strInsAuthFile = CComHelper::GetAppInsPath()+TDHXKJ_SKFAPP_AUTHFILE;
::CopyFile(strInsAuthFile,strAuthFile,FALSE);
}
hRet = GetFileAuthInfo(CComBSTR(strAuthFile),NULL,(IDispatch **)&spiJsonService,TRUE);
if(NULL != spiJsonService)
{
spiJsonService->GetStringValue(CComBSTR(_T("AuthID")),&bstrVal);
if(bstrVal.Length())
{
nAuthID = CBaseFuncLib::StrToNum(bstrVal.m_str);
bstrVal.Empty();
}
spiJsonService = NULL;
::DeleteFile(strAuthFile);
}
#ifndef _DEBUG
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE);
regKey.SetRegStringVal(_T(""),CBaseFuncLib::NumToStr(nAuthID));
regKey.DelKeyName(strDeviceID);
regKey.DelKeyName(PRODUCT_COMMAN_DEVICEID);
#endif
#endif
spiSafeService = NULL;
return hRet;
}
HRESULT CAccountMgr::GetFileAuthInfo(BSTR bstrFilePath,\
BYTE* pbKey,IDispatch **ppAuthInfo,BOOL bGetPW)
{
CComPtr <ISoftEncry> spiSoftEncry = NULL;
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL != spiSafeService)
spiSafeService->get_SoftEncry(&spiSoftEncry);
if(NULL == spiSoftEncry || NULL == spiSafeService)
return E_FAIL;
HRESULT hRet(E_FAIL);
BYTE* pBufData = NULL;
DWORD dwLen = CBaseFuncLib::ReadAllData(bstrFilePath,&pBufData);
if(NULL == pBufData)
return E_FAIL;
unsigned char szVI[AES_BLOCK_SIZE] = "HX2016SafeGuard";
unsigned char szKey[AES_BLOCK_SIZE*2+1] = "01234567899876543210012345678901";
ULONG nOutLen = 0;
BYTE *pBuf = NULL;
if(NULL != pbKey)
hRet = spiSoftEncry->AesCbcDes(pBufData,dwLen,pbKey,szVI,&nOutLen,&pBuf);
else
hRet = spiSoftEncry->AesCbcDes(pBufData,dwLen,szKey,szVI,&nOutLen,&pBuf);
if(NULL == pBuf)
{
spiSoftEncry = NULL;
return hRet;
}
CComPtr <IJsonService> spiJsonService = CDbHelper::GetJsonService();
/// 通过JSON加载
VARIANT_BOOL bLoadFlag = VARIANT_FALSE;
if(NULL != spiJsonService)
{
spiJsonService->put_CodingType(CODINGTYPE_ANSI);
CString strAuthInfo(pBuf);
hRet = spiJsonService->ParseString(CComBSTR(strAuthInfo),&bLoadFlag);
strAuthInfo.Empty();
}
if(VARIANT_FALSE == bLoadFlag)
spiJsonService = NULL;
spiSoftEncry->ReleaseBuf(pBuf);
spiSoftEncry = NULL;
pBuf = NULL;
if(NULL == spiJsonService)
return hRet;
if(!bGetPW)
{
/// 清空密码
spiJsonService->put_StringValue(CComBSTR(_T("DataPW")),CComBSTR(_T("")));
spiJsonService->put_StringValue(CComBSTR(_T("AdminPW")),CComBSTR(_T("")));
}
else
{
CComBSTR bstrVal;
CString strAuthCode;
CString strModuleName = CBaseFuncLib::GetModuleName(NULL);
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE,KEY_READ);
/// 双因子登录时会崩溃是因为没有初始化COM使用环境
if(0 == strModuleName.CompareNoCase(_T("winlogon.exe")))
{
/// 获取注册表记录的设备号
CString strDeviceID;
regKey.GetRegStringVal(PRODUCT_COMMAN_DEVICEID,strDeviceID);
regKey.GetRegStringVal(strDeviceID,strAuthCode);
}
else
{
spiSafeService->GetUniqueID(&bstrVal);
regKey.GetRegStringVal(bstrVal.m_str,strAuthCode);
bstrVal.Empty();
}
/// 获得有效期
if(strAuthCode.IsEmpty())
{
spiJsonService->GetStringValue(CComBSTR(_T("AuthCode")),&bstrVal);
strAuthCode = bstrVal.m_str;
bstrVal.Empty();
}
if(strAuthCode.GetLength())
{
CheckAuthValid(spiSafeService,spiJsonService,strAuthCode);
strAuthCode.Empty();
}
spiSafeService = NULL;
}
hRet = spiJsonService->QueryInterface(__uuidof (IDispatch),(void **)ppAuthInfo);
spiJsonService = NULL;
spiSafeService = NULL;
return hRet;
}
STDMETHODIMP CAccountMgr::GetAuthInfo(BSTR bstrFilePath,BSTR bstrDiskName,BYTE* pbKey,IDispatch **ppAuthInfo)
{
// TODO: 在此添加实现代码
if(NULL == ppAuthInfo)
return E_POINTER;
BOOL bGetFlag = FALSE;
CString strExe = CBaseFuncLib::GetModuleName(NULL);
if(0 == strExe.CompareNoCase(TDHXKJ_SAFETOOL))
bGetFlag = TRUE;
CString strAuthFile(bstrFilePath);
#ifndef TDHXKJ_VERSION_NOUSB
if(strAuthFile.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
/// 生成临时授权文件
CComPtr<ISafeCard> spiSafeCard = NULL;
HRESULT hRet = spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL == spiSafeCard)
{
spiSafeService = NULL;
return hRet;
}
CComBSTR bstrVal;
short nReadLen = TDHXKJ_SKFAPP_FILELEN;
BYTE BufData[TDHXKJ_SKFAPP_FILELEN] = {0};
VARIANT_BOOL bRetFlag = VARIANT_FALSE;
CComPtr <IJsonService> spiJsonService = NULL;
CComBSTR bstrDisk(bstrDiskName);
hRet = spiSafeService->get_CID(VARIANT_TRUE,&bstrDisk,&bstrVal);
if(FAILED(hRet) || !bstrVal.Length())
{
/// 没找到卡,检查临时路径是否存在备份的数据
spiSafeCard = NULL;
spiSafeService = NULL;
m_strLastErr = _T("没有找到安全U卡!无法获取授权信息");
return hRet;
}
spiSafeCard->put_CurDisk(bstrDisk);
CString strCID(bstrVal.m_str);
bstrVal.Empty();
strCID += _T("_HXSafe");
hRet = spiSafeService->StringSha1(CComBSTR(strCID),&bstrVal);
strCID.Empty();
CString strSha1 = bstrVal.m_str;
bstrVal.Empty();
CComBSTR bstrAppName(TDHXKJ_SKFAPP_NAME),bstrAdminPin(strSha1.Left(3)),bstrUserPin;
bstrAdminPin.Append(strSha1.Right(5));
strSha1.Delete(0,16);
bstrUserPin.Append(strSha1.Left(8));
ULONG nAppHandle = 0;
hRet = spiSafeCard->OpenApplication(CComBSTR(TDHXKJ_SKFAPP_NAME),&nAppHandle);
if(FAILED(hRet))
{
spiSafeCard = NULL;
spiSafeService = NULL;
return hRet;
}
SHORT nTryCount = 0;
hRet = spiSafeCard->VerifyPIN(nAppHandle,VARIANT_FALSE,bstrUserPin,&nTryCount);
if(FAILED(hRet))
{
LONG nErrCode = 0;
spiSafeCard->get_LastErrCode(&nErrCode);
if(nErrCode)
{
CComBSTR bstrErrInfo;
spiSafeCard->get_LastErrInfo(&bstrErrInfo);
if(bstrErrInfo.Length())
m_strLastErr = bstrErrInfo.m_str;
spiSafeCard->CloseApplication(nAppHandle);
nAppHandle = 0;
spiSafeCard = NULL;
spiSafeService = NULL;
return hRet;
}
}
/// 获得缺省密码
hRet = spiSafeCard->ReadAppFile(nAppHandle,CComBSTR(TDHXKJ_SKFAPP_CONFIGFILE),0,&nReadLen,BufData);
if(FAILED(hRet))
{
/// 获取错误信息
CComBSTR bstrErrInfo;
spiSafeCard->get_LastErrInfo(&bstrErrInfo);
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
spiSafeCard->ClearSecureState(nAppHandle);
spiSafeCard->CloseApplication(nAppHandle);
spiSafeCard = NULL;
nAppHandle = 0;
spiSafeService = NULL;
return hRet;
}
CString strData(BufData);
strData.TrimLeft();
strData.TrimRight();
if(!strData.IsEmpty())
{
if(NULL == spiJsonService)
spiJsonService = CDbHelper::GetJsonService();
if(NULL != spiJsonService)
{
spiJsonService->put_CodingType(CODINGTYPE_ANSI);
hRet = spiJsonService->ParseString(CComBSTR(strData),&bRetFlag);
}
}
spiSafeCard->ClearSecureState(nAppHandle);
spiSafeCard->CloseApplication(nAppHandle);
spiSafeCard = NULL;
nAppHandle = 0;
spiSafeService = NULL;
if(VARIANT_TRUE == bRetFlag)
hRet = spiJsonService->QueryInterface(__uuidof (IDispatch),(void **)ppAuthInfo);
spiJsonService = NULL;
return hRet;
}
#endif
HRESULT hRet = GetFileAuthInfo(bstrFilePath,pbKey,ppAuthInfo,bGetFlag);
return hRet;
}
CString CAccountMgr::GetSafePW(CComPtr <ISafeService>& spiSafeService,CString& strDBPW,EAccountType eAccountType)
{
CString strDefaultPW(_T(""));
if(NULL == spiSafeService)
return strDefaultPW;
CHXRegKey regKey(COMPANY_REGPATH,PRODUCT_REGNODENAME,HKEY_LOCAL_MACHINE,KEY_READ);
#ifdef TDHXKJ_VERSION_NOUSB
CComPtr <IJsonService> spiJsonService = NULL;
CString strAuthFile = CBaseFuncLib::GetAppDataDir()+TDHXKJ_SKFAPP_AUTHFILE;
if(!CBaseFuncLib::IsPathExist(strAuthFile))
{
CString strInsAuthFile = CComHelper::GetAppInsPath()+TDHXKJ_SKFAPP_AUTHFILE;
::CopyFile(strInsAuthFile,strAuthFile,FALSE);
}
HRESULT hRet = GetFileAuthInfo(CComBSTR(strAuthFile),NULL,(IDispatch **)&spiJsonService,TRUE);
if(NULL == spiJsonService)
return strDefaultPW;
VARIANT_BOOL bRetFlag = VARIANT_TRUE;
#else
BOOL bSyncFlag = FALSE;
short nReadLen = TDHXKJ_SKFAPP_FILELEN;
BYTE BufData[TDHXKJ_SKFAPP_FILELEN] = {0};
VARIANT_BOOL bRetFlag = VARIANT_FALSE;
CComPtr <IJsonService> spiJsonService = NULL;
CComBSTR bstrVal,bstrDiskName;
HRESULT hRet = spiSafeService->get_CID(VARIANT_TRUE,&bstrDiskName,&bstrVal);
if(SUCCEEDED(hRet) && ACCOUNTTYPE_SA == eAccountType && bstrVal.Length())
{
CString strInstallDisk;
regKey.GetRegStringVal(PRODUCT_COMMAN_INSDISK,strInstallDisk);
if(0 != strInstallDisk.CompareNoCase(bstrVal.m_str))
{
/// 超级管理员,必须校验安装U卡
m_strLastErr = _T("此操作要求使用超级管理员所用的安全U卡!");
return strDefaultPW;
}
}
if(FAILED(hRet) || !bstrVal.Length())
{
spiSafeService->CloseSafeCard();
/// 没找到卡,检查临时路径是否存在备份的数据
CString strAuthFile = CBaseFuncLib::GetAppDataDir()+TDHXKJ_SKFAPP_AUTHFILE;
if(CBaseFuncLib::IsPathExist(strAuthFile))
{
/// 采用备份数据支撑软件运行,相当于只读模式,不能进行安全配置项目修改等操作
m_bReadOnly = VARIANT_TRUE;
hRet = GetFileAuthInfo(CComBSTR(strAuthFile),NULL,(IDispatch **)&spiJsonService,TRUE);
if(SUCCEEDED(hRet))
{
bRetFlag = VARIANT_TRUE;
#ifdef APP_LOG_ENABLE
/// 写日志
// WRITELOGTOFILE(_T("没有发现安全U卡!运行于无卡模式"));
#endif
}
}
if(NULL == spiJsonService)
{
m_strLastErr = _T("没有插入安全U卡或授权文件无效!");
return strDefaultPW;
}
}
else
{
CComPtr<ISafeCard> spiSafeCard = NULL;
hRet = spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL == spiSafeCard)
return strDefaultPW;
spiSafeCard->put_CurDisk(bstrDiskName);
CString strCID(bstrVal.m_str);
bstrVal.Empty();
strCID += _T("_HXSafe");
hRet = spiSafeService->StringSha1(CComBSTR(strCID),&bstrVal);
strCID.Empty();
CString strSha1 = bstrVal.m_str;
bstrVal.Empty();
CComBSTR bstrAppName(TDHXKJ_SKFAPP_NAME),bstrUserPin;
strSha1.Delete(0,16);
bstrUserPin.Append(strSha1.Left(8));
ULONG nAppHandle = 0;
hRet = spiSafeCard->OpenApplication(CComBSTR(TDHXKJ_SKFAPP_NAME),&nAppHandle);
if(FAILED(hRet))
{
spiSafeCard = NULL;
spiSafeService->CloseSafeCard();
return strDefaultPW;
}
SHORT nTryCount = 0;
hRet = spiSafeCard->VerifyPIN(nAppHandle,VARIANT_FALSE,bstrUserPin,&nTryCount);
if(FAILED(hRet))
{
spiSafeCard->CloseApplication(nAppHandle);
nAppHandle = 0;
spiSafeCard = NULL;
spiSafeService->CloseSafeCard();
return strDefaultPW;
}
/// 获得缺省密码
hRet = spiSafeCard->ReadAppFile(nAppHandle,CComBSTR(TDHXKJ_SKFAPP_CONFIGFILE),0,&nReadLen,BufData);
if(FAILED(hRet) || !nReadLen)
{
/// 获取错误信息
CComBSTR bstrErrInfo;
spiSafeCard->get_LastErrInfo(&bstrErrInfo);
if(bstrErrInfo.Length())
m_strLastErr = bstrErrInfo.m_str;
else
m_strLastErr = _T("读取授权数据异常");
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
else
{
CString strData(BufData);
strData.TrimLeft();
strData.TrimRight();
if(!strData.IsEmpty())
{
bSyncFlag = TRUE;
if(NULL == spiJsonService)
spiJsonService = CDbHelper::GetJsonService();
if(NULL != spiJsonService)
{
spiJsonService->put_CodingType(CODINGTYPE_ANSI);
hRet = spiJsonService->ParseString(CComBSTR(strData),&bRetFlag);
if(VARIANT_FALSE == bRetFlag)
{
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(strData);
#endif
}
}
}
}
spiSafeCard->ClearSecureState(nAppHandle);
spiSafeCard->CloseApplication(nAppHandle);
spiSafeCard = NULL;
spiSafeService->CloseSafeCard();
nAppHandle = 0;
}
#endif
if(VARIANT_TRUE == bRetFlag && NULL != spiJsonService)
{
CComBSTR bstrVal;
spiJsonService->GetStringValue(CComBSTR(_T("AdminPW")),&bstrVal);
if(bstrVal.Length())
strDefaultPW = bstrVal.m_str;
bstrVal.Empty();
spiJsonService->GetStringValue(CComBSTR(_T("DataPW")),&bstrVal);
if(bstrVal.Length())
strDBPW = bstrVal.m_str;
bstrVal.Empty();
CString strAuthCode;
CString strModuleName = CBaseFuncLib::GetModuleName(NULL);
/// 双因子登录时会崩溃是因为没有初始化COM使用环境
if(0 == strModuleName.CompareNoCase(_T("winlogon.exe")))
{
/// 获取注册表记录的设备号
CString strDeviceID;
regKey.GetRegStringVal(PRODUCT_COMMAN_DEVICEID,strDeviceID);
regKey.GetRegStringVal(strDeviceID,strAuthCode);
spiJsonService->put_StringValue(CComBSTR(_T("DID")),CComBSTR(strDeviceID));
spiJsonService->put_StringValue(CComBSTR(_T("AuthCode")),CComBSTR(strAuthCode));
}
else
{
spiSafeService->GetUniqueID(&bstrVal);
if(bstrVal.Length())
{
regKey.GetRegStringVal(bstrVal.m_str,strAuthCode);
/*CString strstr;
strstr.Format(_T("从注册表中获取认证码:%s\n"),strAuthCode);
OutputDebugString(strstr);*/
}
#ifndef TDHXKJ_VERSION_NOUSB
spiJsonService->put_StringValue(CComBSTR(_T("DID")),bstrVal);
spiJsonService->put_StringValue(CComBSTR(_T("AuthCode")),CComBSTR(strAuthCode));
#endif
bstrVal.Empty();
}
/// 获得有效期
if(strAuthCode.IsEmpty())
{
spiJsonService->GetStringValue(CComBSTR(_T("AuthCode")),&bstrVal);
strAuthCode = bstrVal.m_str;
bstrVal.Empty();
}
/*CString strstr1;
strstr1.Format(_T("检查认证前的认证码:%s\n"),strAuthCode);
OutputDebugString(strstr1);*/
CheckAuthValid(spiSafeService,spiJsonService,strAuthCode);
strAuthCode.Empty();
#ifndef TDHXKJ_VERSION_NOUSB
CString strAuthFile = CBaseFuncLib::GetAppDataDir()+TDHXKJ_SKFAPP_AUTHFILE;
if(bSyncFlag && !CBaseFuncLib::IsPathExist(strAuthFile) && 0 == strModuleName.CompareNoCase(TDHXKJ_MAIN_SAFEAPP))
{
/// 备份授权数据
unsigned char szVI[AES_BLOCK_SIZE] = "HX2016SafeGuard";
char *pAuthBuf = NULL;
CComPtr <ISoftEncry> spiSoftEncry = NULL;
spiSafeService->get_SoftEncry(&spiSoftEncry);
if(NULL != spiSoftEncry && NULL != spiJsonService)
{
spiJsonService->get_ObjectString(&bstrVal);
int nAuthLen = CBaseFuncLib::Us2ToChar(bstrVal.m_str,&pAuthBuf);
bstrVal.Empty();
ULONG nOutLen = 0;
BYTE *pBuf = NULL;
BYTE szKey[AES_BLOCK_SIZE*2+1] = "01234567899876543210012345678901";
if(NULL != pAuthBuf)
{
hRet = spiSoftEncry->AesCbcEnc((BYTE* )pAuthBuf,nAuthLen-1,szKey,szVI,&nOutLen,&pBuf);
delete []pAuthBuf;
pAuthBuf = NULL;
}
BOOL bSafeFlag = CBaseFuncLib::WriteToFile(strAuthFile,pBuf,nOutLen);
hRet = spiSoftEncry->ReleaseBuf(pBuf);
spiSoftEncry = NULL;
#ifndef _DEBUG
/// 设置属性
if(bSafeFlag)
::SetFileAttributes(strAuthFile,FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM);
#endif
}
}
#endif
}
else
{
if(NULL == spiJsonService)
m_strLastErr = _T("授权数据对象为空");
else
m_strLastErr = _T("授权数据解析错误");
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
}
spiJsonService = NULL;
return strDefaultPW;
}
void CAccountMgr::SaveAuthToCard(CComBSTR bstrDiskName,const CString& strCID,\
const CString& strAuthInfo,CComPtr <ISafeService>& spiSafeService)
{
if(NULL == spiSafeService)
return;
CComPtr<ISafeCard> spiSafeCard = NULL;
HRESULT hRet = spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL == spiSafeCard)
return;
CComBSTR bstrVal;
spiSafeCard->put_CurDisk(bstrDiskName);
hRet = spiSafeService->StringSha1(CComBSTR(strCID+_T("_HXSafe")),&bstrVal);
CString strSha1 = bstrVal.m_str;
strSha1.Delete(0,16);
bstrVal.Empty();
CComBSTR bstrUserPin(strSha1.Left(8));
ULONG nAppHandle = 0;
hRet = spiSafeCard->OpenApplication(CComBSTR(TDHXKJ_SKFAPP_NAME),&nAppHandle);
if(FAILED(hRet))
{
spiSafeCard = NULL;
return;
}
SHORT nTryCount = 0;
hRet = spiSafeCard->VerifyPIN(nAppHandle,VARIANT_FALSE,bstrUserPin,&nTryCount);
if(FAILED(hRet))
{
spiSafeCard->CloseApplication(nAppHandle);
nAppHandle = 0;
spiSafeCard = NULL;
return;
}
char *szBufFile = NULL;
int nStrLen = CBaseFuncLib::Us2ToChar(strAuthInfo,&szBufFile);
/// 写文件
if(NULL != szBufFile)
{
hRet = spiSafeCard->WriteAppFile(nAppHandle,CComBSTR(TDHXKJ_SKFAPP_CONFIGFILE),0,(BYTE*)szBufFile,nStrLen-1);
delete []szBufFile;
szBufFile = NULL;
}
if(FAILED(hRet))
{
/// 写失败
CComBSTR bstrErrInfo;
spiSafeCard->get_LastErrInfo(&bstrErrInfo);
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
spiSafeCard->ClearSecureState(nAppHandle);
spiSafeCard->CloseApplication(nAppHandle);
nAppHandle = 0;
spiSafeCard = NULL;
}
BOOL CAccountMgr::InitAccount(CComPtr <ISafeService>& spiSafeService,CComPtr <ISqlite3Connect>& spiSqlite3Connect,\
ULONG nAccount,const CString& strSaCCode,const CString& strAdminCCode,const CString& strAuditCCode)
{
BOOL bSaveFlag = FALSE,bCreateFlag = FALSE;
HRESULT hRet(E_FAIL);
if(NULL == spiSqlite3Connect || !nAccount)
return bSaveFlag;
CString strSqlCmd(_T(""));
/// 判断账号是否存在
if(ACCOUNTTYPE_SA == (nAccount & ACCOUNTTYPE_SA))
{
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
_T("CCode"),SQLITEDB_TABLE_ACCOUNT,\
_T("LID"),TDHX_ACCOUNT_SA);
CString strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
if(strValue.IsEmpty())
{
strSqlCmd.Empty();
/// 添加缺省超级管理员账号
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,SName,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',%ld,%d);"),
SQLITEDB_TABLE_ACCOUNT,TDHX_ACCOUNT_SA,TDHX_ACCOUNT_SANAME,strSaCCode,\
USEAUTHTYPE_ACCOUNTMGR|USEAUTHTYPE_UNLOAD|USEAUTHTYPE_SELFSAFE|USEAUTHTYPE_AUTHMGR|USEAUTHTYPE_DATABACKUP|USEAUTHTYPE_SAFEDISKMGR,ACCOUNTTYPE_SA);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
bSaveFlag = TRUE;
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("初始化创建超级管理员账号成功。"));
#endif
}
}
strSqlCmd.Empty();
strValue.Empty();
//创建临时账号
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
_T("CCode"),SQLITEDB_TABLE_TEMP_ACCOUNT ,\
_T("STempName"),TDHX_ACCOUNT_SANAME_TEMP);
strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
if(strValue.IsEmpty())
{
//还没有创建用户
bCreateFlag = TRUE;
OutputDebugString(_T("创建默认超级管理员用户\n"));
strSqlCmd.Empty();
/// 添加缺省超级管理员账号
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,STempName,SName,CTempCode,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',\'%s\',\'%s\',%ld,%d);"),
SQLITEDB_TABLE_TEMP_ACCOUNT,TDHX_ACCOUNT_SA,TDHX_ACCOUNT_SANAME_TEMP,TDHX_ACCOUNT_SANAME,strSaCCode,strSaCCode,\
USEAUTHTYPE_ACCOUNTMGR|USEAUTHTYPE_UNLOAD|USEAUTHTYPE_SELFSAFE|USEAUTHTYPE_AUTHMGR|USEAUTHTYPE_DATABACKUP|USEAUTHTYPE_SAFEDISKMGR,ACCOUNTTYPE_SA);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
bSaveFlag = TRUE;
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("初始化创建超级管理员账号成功。"));
#endif
}
}
strSqlCmd.Empty();
}
if(ACCOUNTTYPE_ADMIN == (nAccount & ACCOUNTTYPE_ADMIN))
{
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
_T("CCode"),SQLITEDB_TABLE_ACCOUNT,\
_T("LID"),TDHX_ACCOUNT_ADMIN);
CString strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
if(strValue.IsEmpty())
{
strSqlCmd.Empty();
/// 添加缺省管理员账号
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,SName,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',%ld,%d);"),
SQLITEDB_TABLE_ACCOUNT,TDHX_ACCOUNT_ADMIN,TDHX_ACCOUNT_ADMINNAME,strAdminCCode,\
USEAUTHTYPE_SAFEGUARD|USEAUTHTYPE_CONTROLMODE|USEAUTHTYPE_FILEWHITEMGR|USEAUTHTYPE_USBMGR|USEAUTHTYPE_DATABACKUP|USEAUTHTYPE_OSLOGIN,ACCOUNTTYPE_ADMIN);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
bSaveFlag = TRUE;
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("初始化创建管理员账号成功。"));
#endif
}
}
strSqlCmd.Empty();
strValue.Empty();
//创建临时账号
if (bCreateFlag)
{
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
_T("CCode"),SQLITEDB_TABLE_TEMP_ACCOUNT,\
_T("STempName"),TDHX_ACCOUNT_ADMINNAME_TEMP);
strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
if(strValue.IsEmpty())
{
OutputDebugString(_T("创建默认管理员用户\n"));
strSqlCmd.Empty();
/// 添加缺省管理员账号
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,STempName,SName,CTempCode,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',\'%s\',\'%s\',%ld,%d);"),
SQLITEDB_TABLE_TEMP_ACCOUNT,TDHX_ACCOUNT_ADMIN,TDHX_ACCOUNT_ADMINNAME_TEMP,TDHX_ACCOUNT_ADMINNAME,strAdminCCode,strAdminCCode,\
USEAUTHTYPE_SAFEGUARD|USEAUTHTYPE_CONTROLMODE|USEAUTHTYPE_FILEWHITEMGR|USEAUTHTYPE_USBMGR|USEAUTHTYPE_DATABACKUP|USEAUTHTYPE_OSLOGIN,ACCOUNTTYPE_ADMIN);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
bSaveFlag = TRUE;
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("初始化创建管理员账号成功。"));
#endif
}
}
}
strSqlCmd.Empty();
}
if(ACCOUNTTYPE_AUDIT == (nAccount & ACCOUNTTYPE_AUDIT))
{
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
_T("CCode"),SQLITEDB_TABLE_ACCOUNT,\
_T("LID"),TDHX_ACCOUNT_AUDIT);
CString strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
if(strValue.IsEmpty())
{
strSqlCmd.Empty();
/// 添加缺省审计员账号
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,SName,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',%ld,%d);"),
SQLITEDB_TABLE_ACCOUNT,TDHX_ACCOUNT_AUDIT,TDHX_ACCOUNT_AUDITNAME,strAuditCCode,\
USEAUTHTYPE_LOGMGR,ACCOUNTTYPE_AUDIT);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
bSaveFlag = TRUE;
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("初始化创建审计员账号成功。"));
#endif
}
}
strSqlCmd.Empty();
strValue.Empty();
//创建临时账号
if (bCreateFlag)
{
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
_T("CCode"),SQLITEDB_TABLE_TEMP_ACCOUNT,\
_T("STempName"),TDHX_ACCOUNT_AUDITNAME_TEMP);
strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
if(strValue.IsEmpty())
{
OutputDebugString(_T("创建默认审计员用户\n"));
strSqlCmd.Empty();
/// 添加缺省审计员账号
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,STempName,SName,CTempCode,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',\'%s\',\'%s\',%ld,%d);"),
SQLITEDB_TABLE_TEMP_ACCOUNT,TDHX_ACCOUNT_AUDIT,TDHX_ACCOUNT_AUDITNAME_TEMP,TDHX_ACCOUNT_AUDITNAME,strAuditCCode,strAuditCCode,\
USEAUTHTYPE_LOGMGR,ACCOUNTTYPE_AUDIT);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
bSaveFlag = TRUE;
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(_T("初始化创建审计员账号成功。"));
#endif
}
strSqlCmd.Empty();
}
}
}
#ifndef TDHXKJ_VERSION_NOUSB
/// 自动添加安装U卡到白名单
if(NULL == spiSafeService)
return bSaveFlag;
CComBSTR bstrDisk = 0;
CString strInstallID;
CComPtr<ISafeCard> spiSafeCard = NULL;
spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL != spiSafeCard)
{
spiSafeCard->get_CurDisk(&bstrDisk);
spiSafeCard = NULL;
CComBSTR bstrVal;
spiSafeService->get_CID(VARIANT_TRUE,&bstrDisk,&bstrVal);
if(bstrVal.Length())
strInstallID = bstrVal.m_str;
bstrVal.Empty();
}
if(strInstallID.GetLength())
{
CComPtr<ICryptoStor> spiCryptoStor = NULL;
spiSafeService->get_CryptoStor(&spiCryptoStor);
if(NULL != spiCryptoStor)
{
ULONG nDiskSize = 0;
spiCryptoStor->PutCurDisk(bstrDisk,&nDiskSize);
int nType = 0;
ULONG nSizeG = nDiskSize/(1024*1024);
if(nDiskSize%(1024*1024))
nSizeG++;
/// 先判断是否存在
strSqlCmd.Format(_T("SELECT UID FROM [%s] WHERE UID='%s'"),\
SQLITEDB_TABLE_USBWHITE,strInstallID);
CString strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
strSqlCmd.Empty();
COleDateTime curTime = COleDateTime::GetCurrentTime();
if(strValue.IsEmpty())
{
strSqlCmd.Format(_T("INSERT INTO [%s] (UID,UDisk,MName,ATime,Size,UType) \
VALUES(\'%s\',\'%s\',\'%s\',%f,%ld,%d);"),
SQLITEDB_TABLE_USBWHITE,strInstallID,(CString)bstrDisk.m_str,\
_T("安装U卡"),curTime.m_dt,nSizeG,nType);
}
else
{
strSqlCmd.Format(_T("UPDATE [%s] SET UDisk=\'%s\',MName=\'%s\',Size=%ld,UType=%d WHERE UID='%s'"),\
SQLITEDB_TABLE_USBWHITE,(CString)bstrDisk.m_str,_T("安装U卡"),nSizeG,nType,strInstallID);
}
spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
}
}
#endif
return bSaveFlag;
}
#ifndef TDHXKJ_VERSION_NOUSB
BOOL CAccountMgr::GetInstallCode(CComPtr <ISafeService>& spiSafeService,CString& strSACode)
{
BOOL bGetFlag = FALSE;
if(NULL == spiSafeService)
return bGetFlag;
CComBSTR bstrVal;
spiSafeService->GetInstallDisk(VARIANT_FALSE,&bstrVal);
if(!bstrVal.Length())
{
return bGetFlag;
}
CComPtr<ICryptoStor> spiCryptoStor = NULL;
HRESULT hRet = spiSafeService->get_CryptoStor(&spiCryptoStor);
if(NULL == spiCryptoStor)
{
bstrVal.Empty();
return bGetFlag;
}
/// 从私密区获取
DWORD dwSize = 0;
hRet = spiCryptoStor->PutCurDisk(bstrVal,&dwSize);
if(SUCCEEDED(hRet))
{
CString strDataFile = CBaseFuncLib::GetTmpPath()+CString(_T("Ins"))+TDHX_SQLITEDB_SYSFILE;
if(CBaseFuncLib::IsPathExist(strDataFile))
{
::SetFileAttributes(strDataFile,FILE_ATTRIBUTE_NORMAL);
::DeleteFile(strDataFile);
}
hRet = spiCryptoStor->ReadOnlyFile(CComBSTR(TDHX_SQLITEDB_SYSFILE),CComBSTR(strDataFile));
if(SUCCEEDED(hRet) && CBaseFuncLib::IsPathExist(strDataFile))
{
/// 从数据库读取
CComPtr <IConnectHelper> spiConnectHelper = CDbHelper::GetDBHelper();
if(NULL != spiConnectHelper)
{
try
{
CComPtr <ISqlite3Connect> spiSqlite3Connect = NULL;
hRet = spiConnectHelper->OpenDB(CComBSTR(strDataFile),VARIANT_FALSE,SQLITE_OPEN_DEFAULTOVERTIME,CComBSTR(m_strDataPW),&spiSqlite3Connect);
if(NULL != spiSqlite3Connect)
{
CString strSqlCmd(_T(""));
strSqlCmd.Format(_T("SELECT CCode FROM [%s] WHERE %s='%s'"),\
SQLITEDB_TABLE_ACCOUNT,_T("LID"),TDHX_ACCOUNT_SA);
spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(0,&bstrVal);
strSACode = bstrVal.m_str;
bstrVal.Empty();
bGetFlag = TRUE;
break;
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
}
}
catch( ... )
{
}
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiConnectHelper->get_LastErrorInfo(&bstrErrInfo);
#ifdef APP_LOG_ENABLE
/// 写日志
if(bstrErrInfo.Length())
{
WRITELOGTOFILE(bstrErrInfo.m_str);
}
#endif
bstrErrInfo.Empty();
}
spiConnectHelper = NULL;
}
}
::DeleteFile(strDataFile);
}
spiCryptoStor = NULL;
return bGetFlag;
}
#endif
STDMETHODIMP CAccountMgr::Init(ULONG nAccount,BSTR bstrPW,VARIANT_BOOL bCheckFile)
{
// TODO: 在此添加实现代码
if(!nAccount)
return E_POINTER;
#ifndef _DEBUG
if(VARIANT_TRUE == bCheckFile)
{
CString strDataFile = CBaseFuncLib::GetAppDataDir()+TDHX_SQLITEDB_SYSFILE;
if(CBaseFuncLib::IsPathExist(strDataFile) && CBaseFuncLib::GetFileSize(strDataFile) > 2048)
return S_OK;/// 已结初始化表
}
#endif
m_strLastErr.Empty();
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
CString strAdminPW(_T(""));
/// 检查创建表,顺便取回默认管理员密码
strAdminPW = CreateTable(spiSafeService);
if(NULL != bstrPW)
{
/// 设置了初始化管理员密码
CString strTempPW = bstrPW;
if(strTempPW.GetLength())
strAdminPW = strTempPW;
strTempPW.Empty();
}
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法访问配置数据库,请重新安装程序");
#else
m_strLastErr = _T("无法访问配置数据库,请确认是否插入了安全U卡");
#endif
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;/// 初始化失败,必须插入卡
}
if(strAdminPW.IsEmpty())
{
spiSafeService = NULL;
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法访问配置数据库,请重新安装程序");
#else
m_strLastErr = _T("无法访问配置数据库,请确认是否插入了安装U卡");
#endif
return E_FAIL;/// 初始化失败
}
CString strCCode(_T(""));
CComBSTR bstrVal,bstrMD5;
/// 先做MD5
spiSafeService->StringMD5(CComBSTR(strAdminPW),&bstrMD5);
spiSafeService->StringSha1(bstrMD5,&bstrVal);
bstrMD5.Empty();
if(bstrVal.Length())
strCCode = bstrVal.m_str;
bstrVal.Empty();
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
spiSafeService = NULL;
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(_T("访问数据库失败,请确认是否插入了安全U卡"));
#endif
return E_FAIL;
}
CString strSaCode(strCCode);
#ifndef TDHXKJ_VERSION_NOUSB
/// 尝试获取修改后的超级管理员密码
CString strNewCode;
BOOL bGetFlag = GetInstallCode(spiSafeService,strNewCode);
if(bGetFlag)
{
strSaCode.Empty();
strSaCode = strNewCode;
}
#endif
BOOL bSaveFlag = InitAccount(spiSafeService,spiSqlite3Connect,nAccount,strSaCode,strCCode,strCCode);
spiSafeService = NULL;
if(NULL != spiSqlite3Connect)
{
#ifndef _DEBUG
CComBSTR bstrDbPath;
bstrDbPath.Empty();
spiSqlite3Connect->get_DbPathFile(&bstrDbPath);
#endif
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
#ifndef _DEBUG
/// 设置属性
::SetFileAttributes((CString )bstrDbPath.m_str,FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM);
#endif
}
return S_OK;
}
STDMETHODIMP CAccountMgr::GetAuthCode(ULONG* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
(*pVal) = m_nAuthPacket;
return S_OK;
}
STDMETHODIMP CAccountMgr::get_AuthValid(VARIANT_BOOL* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
(*pVal) = m_bAuthValid;
return S_OK;
}
STDMETHODIMP CAccountMgr::get_CurLID(BSTR* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
CComBSTR bstrVal(m_strCurLID);
bstrVal.CopyTo(pVal);
bstrVal.Empty();
return S_OK;
}
//获取当前用户名
STDMETHODIMP CAccountMgr::get_CurName(BSTR* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
CComBSTR bstrVal(m_strCurName);
bstrVal.CopyTo(pVal);
bstrVal.Empty();
return S_OK;
}
STDMETHODIMP CAccountMgr::get_Right(ULONG* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
(*pVal) = m_nRight;
return S_OK;
}
STDMETHODIMP CAccountMgr::get_ReadOnly(VARIANT_BOOL* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
(*pVal) = m_bReadOnly;
return S_OK;
}
STDMETHODIMP CAccountMgr::ClearStatus(void)
{
// TODO: 在此添加实现代码
m_nRight = 0;
m_eAccountType = ACCOUNTTYPE_UNKNOWN;
m_bReadOnly = VARIANT_FALSE;
m_strDataPW.Empty();
m_strCurLID.Empty();
m_strCurName.Empty();
m_strShowName.Empty();
m_strLastErr.Empty();
return S_OK;
}
STDMETHODIMP CAccountMgr::Add(EAccountType eType, BSTR bstrID,BSTR bstrName, BSTR bstrPWHash, ULONG nRight)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,CString(bstrID)+_T("账号添加"));
/// 判断软件模块权限,无账号管理模块就不支持
if(USEAUTHTYPE_ACCOUNTMGR != (m_nRight & USEAUTHTYPE_ACCOUNTMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
return S_OK;
}
STDMETHODIMP CAccountMgr::Del(BSTR bstrID)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,CString(bstrID) + _T("账号删除"));
/// 判断软件模块权限
if(USEAUTHTYPE_ACCOUNTMGR != (m_nRight & USEAUTHTYPE_ACCOUNTMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
if(NULL == bstrID)
return E_POINTER;
CString strLID(bstrID);
strLID.TrimLeft();
strLID.TrimRight();
if(strLID.IsEmpty())
return E_INVALIDARG;
/// 判断是否为超级管理员账号
if(0 == strLID.CompareNoCase(TDHX_ACCOUNT_SA))
return E_FAIL;/// 不能删除
/// 打开数据库连接
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
if(m_strDataPW.IsEmpty())
GetSafePW(spiSafeService,m_strDataPW,ACCOUNTTYPE_SA);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
return E_FAIL;
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(_T("访问数据库失败,请确认是否插入了安全U卡"));
#endif
return E_FAIL;
}
CString strSqlCmd(_T(""));
strSqlCmd.Format( _T("DELETE FROM [%s] WHERE %s='%s'"), \
SQLITEDB_TABLE_ACCOUNT,_T("LID"),(CString)bstrID);
/// 修改到数据库保存
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
if(FAILED(hRet))
{
CComBSTR bstrVal;
spiSqlite3Connect->get_LastErrorInfo(&bstrVal);
m_strLastErr = bstrVal.m_str;
bstrVal.Empty();
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return S_OK;
}
STDMETHODIMP CAccountMgr::ChangePW(EAccountType eUserType,BSTR bstrID,BSTR bstrNewPWHash,BSTR bstrAccountName)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
if(USEAUTHTYPE_ACCOUNTMGR != (m_nRight & USEAUTHTYPE_ACCOUNTMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
if(m_strDataPW.IsEmpty())
GetSafePW(spiSafeService,m_strDataPW,ACCOUNTTYPE_SA);
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
return E_FAIL;
}
CComBSTR bstrVal;
CString strCCode(bstrNewPWHash);
spiSafeService->StringSha1(bstrNewPWHash,&bstrVal);
if(bstrVal.Length())
strCCode = bstrVal.m_str;
bstrVal.Empty();
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(_T("访问数据库失败,请确认是否插入了安全U卡"));
#endif
spiSafeService = NULL;
return E_FAIL;
}
CString strtemp;
CString strSqlCmd(_T(""));
strSqlCmd.Format(_T("SELECT SName FROM [%s] WHERE %s='%s' AND STempName='%s'"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,_T("LID"),(CString )bstrID,bstrAccountName);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(0,&bstrVal);
strtemp = bstrVal.m_str;
break;
}
if (strtemp.IsEmpty())
{
m_strLastErr = _T("不是有效账号!");
return E_FAIL;
}
if(ACCOUNTTYPE_SA == eUserType)
{
strSqlCmd.Format(_T("UPDATE [%s] SET CCode=\'%s\',CTempCode=\'%s\' WHERE LID='%s' AND STempName='%s'"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,strCCode,strCCode,bstrID,bstrAccountName);
}
else
{
strSqlCmd.Format(_T("UPDATE [%s] SET CTempCode=\'%s\' WHERE LID='%s' AND STempName='%s'"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,strCCode,bstrID,bstrAccountName);
}
/// 修改到数据库保存
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
/// 记录审计日志
CDbHelper::WriteSysLog(eUserType,bstrID,bstrAccountName,CString(bstrVal)+_T("账号修改密码"));
bstrVal.Empty();
strSqlCmd.Empty();
if(FAILED(hRet))
{
spiSqlite3Connect->get_LastErrorInfo(&bstrVal);
m_strLastErr = bstrVal.m_str;
bstrVal.Empty();
}
spiSqlite3Connect->get_DbPathFile(&bstrVal);
CString strDataFile = bstrVal.m_str;
if(FAILED(hRet))
{
strDataFile.Empty();
spiSafeService = NULL;
return hRet;
}
if(ACCOUNTTYPE_SA != eUserType)
{
/// 非超级管理员密码,不备份到卡上
strDataFile.Empty();
spiSafeService = NULL;
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return hRet;
}
//修改管理员账号密码
strSqlCmd.Format(_T("UPDATE [%s] SET CCode=\'%s\' WHERE LID='%s'"),\
SQLITEDB_TABLE_ACCOUNT,strCCode,bstrID);
/// 修改到数据库保存
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
#ifndef TDHXKJ_VERSION_NOUSB
/// 超级管理员修改密码后,必须备份到安全U卡上
CComBSTR bstrDisk = 0;
CString strInstallID;
CComPtr<ISafeCard> spiSafeCard = NULL;
spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL != spiSafeCard)
{
spiSafeCard->get_CurDisk(&bstrDisk);
spiSafeCard = NULL;
spiSafeService->get_CID(VARIANT_TRUE,&bstrDisk,&bstrVal);
if(bstrVal.Length())
strInstallID = bstrVal.m_str;
bstrVal.Empty();
}
if(!strInstallID.GetLength())
{
spiSafeService = NULL;
m_strLastErr = _T("安装U卡通信失败");
return S_FALSE;
}
CComPtr<ICryptoStor> spiCryptoStor = NULL;
hRet = spiSafeService->get_CryptoStor(&spiCryptoStor);
if(NULL != spiCryptoStor)
{
/// 备份到私密区
DWORD dwSize = 0;
hRet = spiCryptoStor->PutCurDisk(bstrDisk,&dwSize);
if(SUCCEEDED(hRet))
hRet = spiCryptoStor->WriteInFile(CComBSTR(strDataFile),CComBSTR(TDHX_SQLITEDB_SYSFILE),VARIANT_FALSE);
if(FAILED(hRet))
{
bstrVal.Empty();
spiCryptoStor->get_LastErrInfo(&bstrVal);
m_strLastErr = bstrVal.m_str;
bstrVal.Empty();
if(m_strLastErr.IsEmpty())
m_strLastErr = _T("操作安装U卡失败");
}
spiCryptoStor = NULL;
}
bstrVal.Empty();
spiSafeService = NULL;
#endif
return hRet;
}
STDMETHODIMP CAccountMgr::ChangeRight(BSTR bstrID, ULONG nRight)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,CString(bstrID)+_T("账号操作权限修改"));
return S_OK;
}
STDMETHODIMP CAccountMgr::Login(IDispatch** ppInfo)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
return S_OK;
}
STDMETHODIMP CAccountMgr::ChangeName(BSTR bstrName)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,_T("修改账号显示名称"));
if(USEAUTHTYPE_ACCOUNTMGR != (m_nRight & USEAUTHTYPE_ACCOUNTMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
return S_OK;
}
STDMETHODIMP CAccountMgr::get_LastErrorInfo(BSTR* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_FAIL;
CComBSTR bstrVal(m_strLastErr);
bstrVal.CopyTo(pVal);
bstrVal.Empty();
m_strLastErr.Empty();
return S_OK;
}
STDMETHODIMP CAccountMgr::ServiceToken()
{
// TODO: 在此添加实现代码
if(ACCOUNTTYPE_ADMIN != m_eAccountType)
return E_FAIL;
if(m_strCurLID.IsEmpty())
return E_FAIL;
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
///生成数据库访问TOKEN
CHXRegKey regKey(TDHXKJ_HOSTSERVICE_REGPATH,TDHXKJ_CONFIG_NODENAME,HKEY_LOCAL_MACHINE);
CComBSTR bstrVal;
spiSafeService->StringSha1(CComBSTR(m_strDataPW),&bstrVal);
BOOL bSetFlag = regKey.SetRegStringVal(TDHXKJ_CONFIG_DBTOKEN,bstrVal.m_str);
bstrVal.Empty();
if(!bSetFlag)
return E_FAIL;
return S_OK;
}
STDMETHODIMP CAccountMgr::GetDataBase(BSTR bstrToken,IDispatch** ppVal)
{
// TODO: 在此添加实现代码
if(NULL == ppVal)
return E_FAIL;
m_strLastErr.Empty();
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
if(m_strDataPW.IsEmpty())
{
GetSafePW(spiSafeService,m_strDataPW);
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
return E_FAIL;
}
}
BOOL bReadFlag = TRUE;
if(NULL != bstrToken)
{
CComBSTR bstrVal;
spiSafeService->StringSha1(CComBSTR(m_strDataPW),&bstrVal);
spiSafeService = NULL;
CString strToken(bstrToken);
if(!strToken.IsEmpty() && 0 != strToken.CompareNoCase(bstrVal.m_str))
{
m_strLastErr = _T("Token校验失败。");
bstrVal.Empty();
return E_FAIL;
}
bstrVal.Empty();
bReadFlag = FALSE;
}
else
{
if(m_strCurLID.GetLength())
{
/// 已经登录,不获取只读数据库
bReadFlag = FALSE;
}
}
spiSafeService = NULL;
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,bReadFlag);
if(NULL == spiSqlite3Connect)
return E_FAIL;
spiSqlite3Connect->QueryInterface(IID_IDispatch,(LPVOID *)ppVal);
spiSqlite3Connect = NULL;
return S_OK;
}
STDMETHODIMP CAccountMgr::get_RunMode(ERunMode* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
(*pVal) = m_eRunMode;
return S_OK;
}
STDMETHODIMP CAccountMgr::put_RunMode(ERunMode newVal)
{
// TODO: 在此添加实现代码
m_eRunMode = newVal;
return S_OK;
}
STDMETHODIMP CAccountMgr::get_Count(SHORT* pVal)
{
// TODO: 在此添加实现代码
m_strLastErr.Empty();
HRESULT hRet(E_FAIL);
/// 查询数据库
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return hRet;
if(m_strDataPW.IsEmpty())
{
GetSafePW(spiSafeService,m_strDataPW);
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
return hRet;
}
}
spiSafeService = NULL;
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,TRUE);
if(NULL == spiSqlite3Connect)
{
spiSafeService = NULL;
return hRet;
}
CString strSqlCmd(_T(""));
strSqlCmd.Format(_T("SELECT LID FROM [%s]"),\
SQLITEDB_TABLE_ACCOUNT);
(*pVal) = (SHORT)CDbHelper::GetRecordCount(spiSqlite3Connect,strSqlCmd);
strSqlCmd.Empty();
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return S_OK;
}
STDMETHODIMP CAccountMgr::get_ShowName(BSTR bstrLID, BSTR* pVal)
{
// TODO: 在此添加实现代码
if(NULL == pVal)
return E_POINTER;
m_strLastErr.Empty();
if(NULL == bstrLID || 0 == m_strCurLID.CompareNoCase(bstrLID))
{
CComBSTR bstrVal(m_strShowName);
bstrVal.CopyTo(pVal);
bstrVal.Empty();
return S_OK;
}
HRESULT hRet(E_FAIL);
/// 查询数据库
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return hRet;
if(m_strDataPW.IsEmpty())
{
GetSafePW(spiSafeService,m_strDataPW);
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(m_strLastErr);
#endif
return hRet;
}
}
spiSafeService = NULL;
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,TRUE);
if(NULL == spiSqlite3Connect)
{
spiSafeService = NULL;
return hRet;
}
CString strSqlCmd(_T(""));
strSqlCmd.Format(_T("SELECT SName FROM [%s] WHERE %s='%s'"),\
SQLITEDB_TABLE_ACCOUNT,_T("LID"),(CString )bstrLID);
if(SUCCEEDED(spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd))))
{
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
CComBSTR bstrVal;
hRet = spiSqlite3Connect->GetValueString(0,&bstrVal);
bstrVal.CopyTo(pVal);
bstrVal.Empty();
break;
}
}
strSqlCmd.Empty();
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return hRet;
}
STDMETHODIMP CAccountMgr::SetCurrent(EAccountType eUserType,BSTR bstrID,BSTR bstrPWHash,EUseAuthType eAuthType,BSTR bstrCurName,SHORT* pVal)
{
// TODO: 在此添加实现代码
if(NULL == bstrID || NULL == bstrPWHash || NULL == pVal)
return E_POINTER;
(*pVal) = 0;
/// 登录,重置相关参数
ClearStatus();
if(m_nTryLoginCount > 5)
{
m_strLastErr = _T("超过可尝试次数,无法再验证权限。请重启软件再试。");
return E_FAIL;
}
CString strTempName(bstrCurName);
if ((ACCOUNTTYPE_SA == eUserType) && (0 != strTempName.Compare(TDHX_ACCOUNT_SANAME_TEMP)))
{
strTempName = TDHX_ACCOUNT_SANAME_TEMP;
}
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
/// 登录超级管理员,需要校验安装U卡
GetSafePW(spiSafeService,m_strDataPW,eUserType);
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
CString strSqlCmd(_T(""));
CComPtr <ISqlite3Connect> spiSqlite3Connect = NULL;
#ifndef TDHXKJ_VERSION_NOUSB
if(ACCOUNTTYPE_SA == eUserType || ACCOUNTTYPE_ADMIN == eUserType)
{
CSTRING_MAP mapDisk;
CComBSTR bstrVal;
CComPtr<ISafeCard> spiSafeCard = NULL;
HRESULT hRet = spiSafeService->get_SafeCard(&spiSafeCard);
if(NULL != spiSafeCard)
{
CString strDisks;
hRet = spiSafeCard->EnumCard(&bstrVal);
if(bstrVal.Length())
strDisks = bstrVal.m_str;
bstrVal.Empty();
int nDiskLen = strDisks.GetLength();
for(int nIndex = 0;nIndex < nDiskLen;nIndex++)
{
CComBSTR bstrDisk;
bstrDisk.Append(strDisks.GetAt(nIndex));
hRet = spiSafeCard->put_CurDisk(bstrDisk);
if(FAILED(hRet))
continue;
hRet = spiSafeCard->GetCID(bstrDisk,&bstrVal);
if(bstrVal.Length())
mapDisk[bstrVal.m_str] = bstrDisk.m_str;
bstrVal.Empty();
}
spiSafeCard = NULL;
}
spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
spiSafeService = NULL;
return E_FAIL;
}
/// 校验U盘白名单
strSqlCmd.Format(_T("SELECT UID FROM [%s] WHERE UType = 0"),SQLITEDB_TABLE_USBWHITE);
spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
BOOL bSafeCard = FALSE;
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(0,&bstrVal);
CSTRING_MAP::iterator it = mapDisk.find(bstrVal.m_str);
if(it != mapDisk.end())
{
bSafeCard = TRUE;
bstrVal.Empty();
break;
}
bstrVal.Empty();
}
mapDisk.clear();
if(!bSafeCard)
{
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
/// 没有插入合法的安全U卡
spiSafeService = NULL;
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,bstrID,strTempName,CString(bstrID)+_T("登录时没有插入合法的安全U卡"));
m_strLastErr = _T("此操作必须插入合法的安全U卡才可以进行!");
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
else
{
spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
spiSafeService = NULL;
return E_FAIL;
}
}
#else
spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
{
spiSafeService = NULL;
return E_FAIL;
}
#endif
BOOL bExistFlag = FALSE;
LONG nStatus = 0;
CString strCCode(_T(""));
strSqlCmd.Format(_T("SELECT CCode,URight,UType,SName,Status FROM [%s] WHERE %s='%s'"),\
SQLITEDB_TABLE_ACCOUNT,_T("LID"),(CString )bstrID);
if(SUCCEEDED(spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd))))
{
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
LONG nVal = 0;
spiSqlite3Connect->GetValueInt(2,&nVal);
if(nVal != eUserType)
break;/// 登录账号类型不匹配
bExistFlag = TRUE;
m_eAccountType = (EAccountType)nVal;
CComBSTR bstrVal;
spiSqlite3Connect->GetValueString(0,&bstrVal);
strCCode = bstrVal.m_str;
bstrVal.Empty();
nVal = 0;
spiSqlite3Connect->GetValueInt(1,&nVal);
m_nRight = nVal;
nVal = 0;
spiSqlite3Connect->GetValueInt(4,&nVal);
nStatus = nVal;
spiSqlite3Connect->GetValueString(3,&bstrVal);
m_strShowName = bstrVal.m_str;
bstrVal.Empty();
break;
}
}
strSqlCmd.Empty();
/// 登录尝试次数超过3次,延迟登录
if(m_nTryLoginCount > 2)
{
COleDateTime initTime = COleDateTime(2016,1,1,0,0,0);
COleDateTime UnLockTime = initTime;
COleDateTime curTime = COleDateTime::GetCurrentTime();
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
SQLITEDB_OPTIONRECORD_FIELDNAME2,SQLITEDB_TABLE_SYSPARA,\
SQLITEDB_OPTIONRECORD_FIELDNAME1,(CString )bstrID);
if(SUCCEEDED(spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd))))
{
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueDouble(0,&(UnLockTime.m_dt));
break;
}
}
if((curTime-UnLockTime).GetTotalMinutes() < 3.0)
{
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
spiSafeService = NULL;
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,bstrID,strTempName,CString(bstrID)+_T("账号过于频繁验证权限"));
m_strLastErr = _T("每间隔3分钟才能执行一次验证权限");
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
///写入数据库
if(UnLockTime > initTime)
{
strSqlCmd.Format(_T("UPDATE [%s] SET %s=\'%f\' WHERE %s='%s'"),\
SQLITEDB_TABLE_SYSPARA,SQLITEDB_OPTIONRECORD_FIELDNAME2,\
curTime.m_dt,SQLITEDB_OPTIONRECORD_FIELDNAME1,(CString )bstrID);
}
else
{
strSqlCmd.Format(_T("INSERT INTO [%s] VALUES (\'%s\',\'%f\');"),\
SQLITEDB_TABLE_SYSPARA,(CString )bstrID,curTime.m_dt);
}
/// 保存到数据库,避免重启应用失效
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
CString strLog;
switch(eAuthType)
{
case USEAUTHTYPE_UNLOAD:
strLog = _T("执行卸载操作");
break;
case USEAUTHTYPE_SELFSAFE:
strLog = _T("修改自身安全配置");
break;
case USEAUTHTYPE_SAFEGUARD:
strLog = _T("修改安全防护配置");
break;
case USEAUTHTYPE_CONTROLMODE:
strLog = _T("修改程序拦截配置");
break;
case USEAUTHTYPE_ACCOUNTMGR:
strLog = _T("执行账号管理操作");
break;
case USEAUTHTYPE_FILEWHITEMGR:
strLog = _T("程序白名单管理操作");
break;
case USEAUTHTYPE_SAFEDISKMGR:
strLog = _T("安全U卡管理操作");
break;
case USEAUTHTYPE_USBMGR:
strLog = _T("白名单U盘操作");
break;
case USEAUTHTYPE_LOGMGR:
strLog = _T("日志审计操作");
break;
case USEAUTHTYPE_AUTHMGR:
strLog = _T("软件授权管理");
break;
case USEAUTHTYPE_DATABACKUP:
strLog = _T("数据备份还原");
break;
default:
break;
}
SHORT nUserType = (SHORT)m_eAccountType;
strLog += _T("验证权限");
/// 记录审计日志
CDbHelper::WriteSysLog(nUserType,bstrID,strTempName,strLog);
strLog.Empty();
if(TDHXKJ_ACCOUNTSTATUS_LOCK == (TDHXKJ_ACCOUNTSTATUS_LOCK & nStatus))
{
spiSafeService = NULL;
m_nRight = 0;
m_eAccountType = ACCOUNTTYPE_UNKNOWN;
m_strShowName.Empty();
m_nTryLoginCount++;
(*pVal) = m_nTryLoginCount;
/// 被锁定账号
m_strLastErr = _T("执行验证权限失败,账号已经被锁定!");
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return E_FAIL;
}
//2016-11-25 修改,由于密码使用的是hash不可逆
/*CComBSTR bstrVal;
spiSafeService->StringSha1(bstrPWHash,&bstrVal);*/
spiSafeService = NULL;
if(0 != strCCode.CompareNoCase(bstrPWHash))
{
EAccountType eAccountType = m_eAccountType;
m_nRight = 0;
m_eAccountType = ACCOUNTTYPE_UNKNOWN;
m_strShowName.Empty();
/// 密码错误
m_nTryLoginCount++;
(*pVal) = m_nTryLoginCount;
/// 可以尝试5次
if(m_nTryLoginCount > 5)
{
if(ACCOUNTTYPE_SA != eAccountType)
{
if(bExistFlag)
{
strSqlCmd.Format(_T("UPDATE [%s] SET Status=%d WHERE LID='%s'"),\
SQLITEDB_TABLE_ACCOUNT,TDHXKJ_ACCOUNTSTATUS_LOCK|nStatus,bstrID);
/// 修改到数据库保存
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
m_strLastErr = _T("执行验证权限失败5次后账号被锁定!请用超级管理员权限解锁后才能继续使用");
}
else
{
m_strLastErr = _T("执行验证权限失败!请重启软件再试。");
}
}
else
{
if(bExistFlag)
{
if(ACCOUNTTYPE_SA != eAccountType)
m_strLastErr.Format(_T("执行验证权限失败,还可尝试次数 %ld,请重试!"),5-m_nTryLoginCount);
else
m_strLastErr = _T("执行验证权限失败,请重试!");
}
else
m_strLastErr = _T("执行验证权限失败,账号不存在!");
}
/// 记录审计日志
CDbHelper::WriteSysLog(nUserType,bstrID,strTempName,_T("验证权限失败"));
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return E_FAIL;
}
else
{
if(m_eAccountType == eUserType && (VARIANT_FALSE == m_bReadOnly || USEAUTHTYPE_LOGMGR == eAuthType))
{
m_nTryLoginCount = 0;
m_strCurLID = bstrID;
//记录当前用户名
m_strCurName = strTempName;
/// 记录审计日志
CDbHelper::WriteSysLog(nUserType,m_strCurLID,strTempName,_T("验证权限成功"));
}
else
{
m_nRight = 0;
m_eAccountType = ACCOUNTTYPE_UNKNOWN;
m_strShowName.Empty();
m_nTryLoginCount++;
(*pVal) = m_nTryLoginCount;
m_strLastErr = _T("此操作必须插入合法的安全U卡才可以进行!");
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return E_FAIL;
}
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return S_OK;
}
STDMETHODIMP CAccountMgr::SaveConfig(EHXUseAuthType nAuthType,BSTR bstrNodeName,BSTR bstrNodeValue)
{
// TODO: 在此添加实现代码
if(NULL == bstrNodeName || NULL == bstrNodeValue)
return E_POINTER;
CString strNodeName(bstrNodeName);
if(strNodeName.IsEmpty())
return E_POINTER;
CString strNodeVal(bstrNodeValue);
if(0 == strNodeName.CompareNoCase(TDHXKJ_CONFIG_SELFPROTECT) && 0 == strNodeVal.CompareNoCase(_T("1")))
{
/// 开启自身保护不需要权限验证
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
}
else
{
if(m_strDataPW.IsEmpty())
return E_FAIL;/// 还没有登录
if(nAuthType != (m_nRight & nAuthType))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;/// 操作数据库失败
CString strSqlCmd(_T(""));
/// 先判断释放存在
strSqlCmd.Format(_T("SELECT %s FROM [%s] WHERE %s='%s'"),\
SQLITEDB_OPTIONRECORD_FIELDNAME1,SQLITEDB_TABLE_SYSPARA,\
SQLITEDB_OPTIONRECORD_FIELDNAME1,strNodeName);
CString strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
strSqlCmd.Empty();
if(strValue.IsEmpty())
{
strSqlCmd.Format(_T("INSERT INTO [%s] (%s,%s) \
VALUES(\'%s\',\'%s\');"),
SQLITEDB_TABLE_SYSPARA,SQLITEDB_OPTIONRECORD_FIELDNAME1,SQLITEDB_OPTIONRECORD_FIELDNAME2,\
strNodeName,(CString)bstrNodeValue);
}
else
{
strSqlCmd.Format(_T("UPDATE [%s] SET %s=\'%s\' WHERE %s='%s'"),\
SQLITEDB_TABLE_SYSPARA,SQLITEDB_OPTIONRECORD_FIELDNAME2,\
(CString)bstrNodeValue,SQLITEDB_OPTIONRECORD_FIELDNAME1,strNodeName);
}
/// 修改到数据库保存
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
strSqlCmd.Empty();
return hRet;
}
STDMETHODIMP CAccountMgr::AddUsbWhite(BSTR bstrUsbID,BSTR bstrDiskName,BSTR bstrMakerName,ULONG nSize,SHORT nType)
{
// TODO: 在此添加实现代码
if(NULL == bstrUsbID || NULL == bstrDiskName)
return E_POINTER;
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,_T("添加U盘白名单"));
if(m_strDataPW.IsEmpty())
return E_FAIL;/// 还没有登录
if(0 == nType)
{
if(USEAUTHTYPE_SAFEDISKMGR != (m_nRight & USEAUTHTYPE_SAFEDISKMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
}
else
{
if(USEAUTHTYPE_USBMGR != (m_nRight & USEAUTHTYPE_USBMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;/// 操作数据库失败
CString strSqlCmd(_T(""));
/// 先判断是否存在
strSqlCmd.Format(_T("SELECT UID FROM [%s] WHERE UID='%s'"),\
SQLITEDB_TABLE_USBWHITE,(CString)bstrUsbID);
CString strValue = CDbHelper::GetSingleStringValue(spiSqlite3Connect,strSqlCmd);
strSqlCmd.Empty();
COleDateTime curTime = COleDateTime::GetCurrentTime();
if(strValue.IsEmpty())
{
strSqlCmd.Format(_T("INSERT INTO [%s] (UID,UDisk,MName,ATime,Size,UType) \
VALUES(\'%s\',\'%s\',\'%s\',%f,%ld,%d);"),
SQLITEDB_TABLE_USBWHITE,(CString )bstrUsbID,(CString )bstrDiskName,\
(CString )bstrMakerName,curTime.m_dt,nSize,nType);
}
else
{
strSqlCmd.Format(_T("UPDATE [%s] SET UDisk=\'%s\',MName=\'%s\',Size=%ld,UType=%d WHERE UID='%s'"),\
SQLITEDB_TABLE_USBWHITE,(CString )bstrDiskName,(CString )bstrMakerName,nSize,nType,(CString )bstrUsbID);
}
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
strSqlCmd.Empty();
return S_OK;
}
STDMETHODIMP CAccountMgr::DelUsbWhite(BSTR bstrUsbID,SHORT nType)
{
// TODO: 在此添加实现代码
if(NULL == bstrUsbID)
return E_POINTER;
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,_T("删除U盘白名单"));
if(m_strDataPW.IsEmpty())
return E_FAIL;/// 还没有登录
if(0 == nType)
{
if(USEAUTHTYPE_SAFEDISKMGR != (m_nRight & USEAUTHTYPE_SAFEDISKMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
}
else
{
if(USEAUTHTYPE_USBMGR != (m_nRight & USEAUTHTYPE_USBMGR))
{
m_strLastErr = _T("没有权限执行此操作!");
return E_FAIL;/// 没有操作权限
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;/// 操作数据库失败
CString strSqlCmd(_T(""));
strSqlCmd.Format( _T("DELETE FROM [%s] WHERE UID='%s'"), \
SQLITEDB_TABLE_USBWHITE,(CString)bstrUsbID);
HRESULT hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
strSqlCmd.Empty();
return hRet;
}
STDMETHODIMP CAccountMgr::get_CanLogin(BSTR bstrLID, VARIANT_BOOL* pVal)
{
// TODO: 在此添加实现代码
if(NULL == bstrLID || NULL == pVal)
return E_POINTER;
(*pVal) = VARIANT_FALSE;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
// WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,TRUE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
CString strSqlCmd(_T(""));
strSqlCmd.Format(_T("SELECT Status FROM [%s] WHERE LID='%s'"),\
SQLITEDB_TABLE_ACCOUNT,(CString )bstrLID);
/// 判断是否为锁定
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
LONG nStatus = 0;
spiSqlite3Connect->GetValueInt(0,&nStatus);
if(1 != (1 & nStatus))
{
/// 没有被锁定
(*pVal) = VARIANT_TRUE;
}
break;
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return S_OK;
}
STDMETHODIMP CAccountMgr::SaveToCard(BSTR ucDiskName)
{
// TODO: 在此添加实现代码
HRESULT hRet(E_FAIL);
#ifndef TDHXKJ_VERSION_NOUSB
/// 记录审计日志
CDbHelper::WriteSysLog(m_eAccountType,m_strCurLID,m_strCurName,_T("备份数据到安全U卡"));
m_strLastErr.Empty();
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
if(m_strDataPW.IsEmpty())
{
GetSafePW(spiSafeService,m_strDataPW);
if(m_strDataPW.IsEmpty())
{
spiSafeService = NULL;
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComBSTR bstrUniID;
hRet = spiSafeService->GetUniqueID(&bstrUniID);
CString strDataFile = CBaseFuncLib::GetAppDataDir()+TDHX_SQLITEDB_SYSFILE;
CString strNewDataFile = bstrUniID.m_str;
bstrUniID.Empty();
strNewDataFile += _T("_");
strNewDataFile += TDHX_SQLITEDB_SYSFILE;/// 标记与电脑配置绑定的文件
CComPtr<ICryptoStor> spiCryptoStor = NULL;
hRet = spiSafeService->get_CryptoStor(&spiCryptoStor);
if(NULL == spiCryptoStor)
{
spiSafeService = NULL;
return hRet;
}
CComBSTR bstrDisk;
if(NULL != ucDiskName)
bstrDisk.Append(ucDiskName);
if(!bstrDisk.Length())
spiCryptoStor->GetCurDisk(&bstrDisk);
if(!bstrDisk.Length())
{
CString strDisks(_T(""));
CComBSTR bstrVal;
spiCryptoStor->EnumDisk(&bstrVal);
if(bstrVal.Length())
{
strDisks = bstrVal.m_str;
bstrVal.Empty();
}
if(!strDisks.IsEmpty())
bstrDisk.Append(strDisks.GetAt(0));
}
DWORD dwSize = 0;
if(bstrDisk.Length())
{
hRet = spiCryptoStor->PutCurDisk(bstrDisk,&dwSize);
/// 保存到私密区
hRet = spiCryptoStor->WriteInFile(CComBSTR(strDataFile),CComBSTR(strNewDataFile),VARIANT_FALSE);
}
spiCryptoStor = NULL;
spiSafeService = NULL;
#endif
return hRet;
}
STDMETHODIMP CAccountMgr::AddStopService(BSTR bstrServiceName,SHORT nStart,BSTR bstrImagePath)
{
// TODO: 在此添加实现代码
if(NULL == bstrServiceName || NULL == bstrImagePath)
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
LONG nServcieID = 0;
CString strSqlCmd;
VARIANT_BOOL bExistFlag = VARIANT_FALSE;
CString strTableName = SQLITEDB_TABLE_STOPSERVICE;
HRESULT hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
///记录系统禁用服务表 SID标识/SerName服务名称/ImagePath服务镜像路径/ATime添加时间/Start原来的启动配置/Status状态
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
SID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,\
SerName VARCHAR DEFAULT '' NOT NULL,\
ImagePath VARCHAR DEFAULT '' NOT NULL,\
ATime DOUBLE DEFAULT '' NOT NULL,\
Start INTEGER DEFAULT '0' NOT NULL,\
Status INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(SUCCEEDED(hRet))
{
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(_T("创建系统禁用服务表成功"));
#endif
}
strSqlCmd.Empty();
}
else
{
strSqlCmd.Format(_T("SELECT SID FROM [%s] WHERE SerName='%s' AND ImagePath='%s'"),\
strTableName,(CString )bstrServiceName,(CString )bstrImagePath);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueInt(0,&nServcieID);
break;
}
}
if(!nServcieID)
{
/// 添加记录
COleDateTime curTime(COleDateTime::GetCurrentTime());
strSqlCmd.Format(_T("INSERT INTO [%s] (SerName,ImagePath,ATime,Start,Status) \
VALUES(\'%s\',\'%s\',%f,%d,1);"),strTableName,
(CString )bstrServiceName,(CString )bstrImagePath,curTime.m_dt,nStart);/// 1禁用
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiSqlite3Connect->get_LastErrorInfo(&bstrErrInfo);
m_strLastErr = bstrErrInfo.m_str;
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
strSqlCmd.Empty();
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return hRet;
}
STDMETHODIMP CAccountMgr::DelStopService(BSTR bstrServiceName,BSTR bstrImagePath)
{
// TODO: 在此添加实现代码
if(NULL == bstrServiceName || NULL == bstrImagePath)
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
LONG nServcieID = 0;
CString strSqlCmd;
strSqlCmd.Format(_T("SELECT SID FROM [%s] WHERE SerName='%s' AND ImagePath='%s'"),\
SQLITEDB_TABLE_STOPSERVICE,(CString )bstrServiceName,(CString )bstrImagePath);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueInt(0,&nServcieID);
break;
}
if(nServcieID)
{
strSqlCmd.Format( _T("DELETE FROM [%s] WHERE SID=%ld"), \
SQLITEDB_TABLE_STOPSERVICE,nServcieID);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiSqlite3Connect->get_LastErrorInfo(&bstrErrInfo);
m_strLastErr = bstrErrInfo.m_str;
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
}
}
spiSqlite3Connect->Close();
spiSqlite3Connect = NULL;
return S_OK;
}
//
STDMETHODIMP CAccountMgr::CheckAccountExist(BSTR strAccountName)
{
if(NULL == strAccountName )
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
CComBSTR nstrVal;
CString strLID;
CString strSqlCmd;
strSqlCmd.Format(_T("SELECT LID FROM [%s] WHERE STempName='%s'"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,(CString )strAccountName);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(0,&nstrVal);
strLID = nstrVal.m_str;
break;
}
if (strLID.IsEmpty())
{
m_strLastErr = _T("账号不存在!");
return E_FAIL;
}
m_strLastErr = _T("账号已经存在!");
return S_OK;
}
//
STDMETHODIMP CAccountMgr::GetRealAccountInfo(BSTR LID,BSTR* strAccountTypeName, BSTR* strRealPasswd,ULONG* strRight)
{
if(NULL == LID || NULL == strAccountTypeName || NULL == strRealPasswd || NULL == strRight)
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
CComBSTR bstrValName,bstrValCode;
LONG ulRight = 0;
CString strSqlCmd;
strSqlCmd.Format(_T("SELECT SName,CCode,URight FROM [%s] WHERE LID='%s'"),\
SQLITEDB_TABLE_ACCOUNT,(CString )LID);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(0,&bstrValName);
spiSqlite3Connect->GetValueString(1,&bstrValCode);
spiSqlite3Connect->GetValueInt(2,&ulRight);
break;
}
if (ulRight == 0)
{
m_strLastErr = _T("获取文件信息失败!");
return E_FAIL;
}
bstrValName.CopyTo(strAccountTypeName);
bstrValCode.CopyTo(strRealPasswd);
(*strRight) = ulRight;
return S_OK;
}
//
STDMETHODIMP CAccountMgr::SaveAccountInfo(BSTR strAccountName, BSTR strPassword,BSTR LID,BSTR strAccountTypeName,BSTR strRealPasswd,ULONG strRight)
{
if(NULL == strAccountName || NULL == strPassword || NULL == strRealPasswd || NULL == LID || NULL == strAccountTypeName)
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
//创建临时用户表
CString strSqlCmd;
VARIANT_BOOL bExistFlag = VARIANT_FALSE;
CString strTableName = SQLITEDB_TABLE_TEMP_ACCOUNT;
HRESULT hRet = spiSqlite3Connect->TableIsExist(CComBSTR(strTableName),VARIANT_FALSE,&bExistFlag);
if(VARIANT_TRUE != bExistFlag)
{
strSqlCmd.Format(_T("CREATE TABLE [%s] (\
LID VARCHAR DEFAULT '' NOT NULL ,\
STempName VARCHAR DEFAULT '' NOT NULL PRIMARY KEY UNIQUE,\
SName VARCHAR DEFAULT '' NOT NULL,\
CTempCode VARCHAR DEFAULT '' NOT NULL,\
CCode VARCHAR DEFAULT '' NOT NULL,\
LTime DOUBLE DEFAULT '' NOT NULL,\
URight INTEGER DEFAULT '0' NOT NULL,\
Status INTEGER DEFAULT '0' NOT NULL,\
UType INTEGER DEFAULT '0' NOT NULL,\
SyncFlag INTEGER DEFAULT '0' NOT NULL);"),\
strTableName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
strSqlCmd.Empty();
}
strTableName.Empty();
CString strTempLid(LID);
int ntype = (0 == strTempLid.CompareNoCase(TDHX_ACCOUNT_ADMIN))?ACCOUNTTYPE_ADMIN:ACCOUNTTYPE_AUDIT;
COleDateTime curTime(COleDateTime::GetCurrentTime());
strSqlCmd.Empty();
strSqlCmd.Format(_T("INSERT INTO [%s] (LID,STempName,SName,CTempCode,CCode,URight,UType) \
VALUES(\'%s\',\'%s\',\'%s\',\'%s\',\'%s\',%ld,%d);"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,(CString )LID,(CString )strAccountName,
(CString )strAccountTypeName,(CString )strPassword,(CString )strRealPasswd,
strRight,ntype);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiSqlite3Connect->get_LastErrorInfo(&bstrErrInfo);
m_strLastErr = bstrErrInfo.m_str;
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
m_strLastErr = _T("新建账号失败!");
return E_FAIL;
}
strSqlCmd.Empty();
/// 记录审计日志
CDbHelper::WriteSysLog(ntype,LID,strAccountName,_T("添加用户成功"));
return S_OK;
}
//
STDMETHODIMP CAccountMgr::DelelteAccountInfo(BSTR strAccountName,BSTR LID)
{
if(NULL == strAccountName )
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
CComBSTR nstrVal;
CString strLID;
CString strSqlCmd;
strSqlCmd.Format(_T("SELECT LID FROM [%s] WHERE STempName='%s'"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,(CString )strAccountName);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(0,&nstrVal);
strLID = nstrVal.m_str;
break;
}
if (strLID.IsEmpty())
{
m_strLastErr = _T("账号不存在!");
return E_FAIL;
}
else if (0 == strLID.CompareNoCase(TDHX_ACCOUNT_SA))
{
m_strLastErr = _T("超级管理员账号不允许删除!");
return E_FAIL;
}
//执行删除
strSqlCmd.Empty();
strSqlCmd.Format( _T("DELETE FROM [%s] WHERE STempName='%s'"), \
SQLITEDB_TABLE_TEMP_ACCOUNT,(CString )strAccountName);
hRet = spiSqlite3Connect->ExecCommond(CComBSTR(strSqlCmd));
if(FAILED(hRet))
{
CComBSTR bstrErrInfo;
spiSqlite3Connect->get_LastErrorInfo(&bstrErrInfo);
m_strLastErr = bstrErrInfo.m_str;
#ifdef APP_LOG_ENABLE
/// 写日志
WRITELOGTOFILE(bstrErrInfo.m_str);
#endif
bstrErrInfo.Empty();
m_strLastErr = _T("账号删除失败!");
return E_FAIL;
}
CString strTempLid(LID);
int ntype = (0 == strTempLid.CompareNoCase(TDHX_ACCOUNT_ADMIN))?ACCOUNTTYPE_ADMIN:ACCOUNTTYPE_AUDIT;
/// 记录审计日志
CDbHelper::WriteSysLog(ntype,LID,strAccountName,_T("删除用户成功"));
return S_OK;
}
//
STDMETHODIMP CAccountMgr::CheckIsPassswdRight(BSTR LID,BSTR strAccountName,BSTR bstrMD5,BSTR* strRealPasswd)
{
if(NULL == strAccountName || NULL == bstrMD5 || NULL == strRealPasswd)
return E_POINTER;
m_strLastErr.Empty();
if(m_strDataPW.IsEmpty())
{
CComPtr <ISafeService> spiSafeService = CSKFHelper::GetSafeService();
if(NULL == spiSafeService)
return E_FAIL;
GetSafePW(spiSafeService,m_strDataPW);
spiSafeService = NULL;
if(m_strDataPW.IsEmpty())
{
if(m_strLastErr.IsEmpty())
{
#ifdef TDHXKJ_VERSION_NOUSB
m_strLastErr = _T("无法验证权限,请重新安装程序");
#else
m_strLastErr = _T("无法验证权限,请确认是否插入了合法的安全U卡");
#endif
}
#ifdef APP_LOG_ENABLE
WRITELOGTOFILE(m_strLastErr);
#endif
return E_FAIL;
}
}
CComPtr <ISqlite3Connect> spiSqlite3Connect = GetConnect(m_strDataPW,FALSE);
if(NULL == spiSqlite3Connect)
return E_FAIL;
CComBSTR nstrVal;
CString strTempName,strTempPass;
CString strSqlCmd("");
strSqlCmd.Format(_T("SELECT CCode,STempName,CTempCode FROM [%s] WHERE LID='%s'"),\
SQLITEDB_TABLE_TEMP_ACCOUNT,(CString )LID);
HRESULT hRet = spiSqlite3Connect->ExecQuery(CComBSTR(strSqlCmd));
while(SUCCEEDED(spiSqlite3Connect->NextRow()))
{
spiSqlite3Connect->GetValueString(2,&nstrVal);
strTempPass = nstrVal.m_str;
nstrVal.Empty();
spiSqlite3Connect->GetValueString(1,&nstrVal);
strTempName = nstrVal.m_str;
nstrVal.Empty();
if ((0 != strTempPass.CompareNoCase(bstrMD5)) || (0 != strTempName.Compare(strAccountName)))
{
continue;
}
spiSqlite3Connect->GetValueString(0,&nstrVal);
nstrVal.CopyTo(strRealPasswd);
break;
}
CString strPasswd = nstrVal.m_str;
if (strPasswd.IsEmpty())
{
m_strLastErr = _T("未查找到相应的账号!");
return E_FAIL;
}
return S_OK;
}
| [
"xzm.sakawa@gmail.com"
] | xzm.sakawa@gmail.com |
3a26a033880230fff6cc67b745ba04b62dbb5f83 | 612ab12f872fd7ba2831b3e782ce6c4318ee025b | /practise.cpp | c558fbc7c1fff63aee5418e6a45176ab1190603e | [] | no_license | preetisahani16/CPP-Practice | 362ec7b7689a7f17db9a704900b70d547dd3bec0 | b0ff8aa7439e603ab379f33b5b8f0a5bb09c365c | refs/heads/master | 2023-01-14T02:50:49.433273 | 2020-11-21T14:21:45 | 2020-11-21T14:21:45 | 314,828,108 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 302 | cpp | #include<iostream>
using namespace std;
class Area
{
public:
void area(int l)
{
cout<<"area of square"<<l*l<<endl;
}
void area(int l ,int b)
{
cout<<"area of rectangle "<<l*b<< endl;
}
};
int main()
{
Area obj;
obj.area(1);
obj.area(2,3);
return 0;
}
| [
"noreply@github.com"
] | preetisahani16.noreply@github.com |
da2f3675aa862fe97859342a1d7557897b654f63 | c88512967628dffb32ba28912480c9fb5344d143 | /_sources/SimpleMC2.cpp | 14137e24d615eee8e4bbe89fe18a652ca4642217 | [] | no_license | cycbill/Cpp_Design_Patterns_and_Derivatives_Pricing | fd31a6cb645588de51eb4516316331526451401c | c44df0e5791b7eb3ea53a3cb7fb3fc7f380d6953 | refs/heads/master | 2020-07-13T07:42:11.233552 | 2019-10-03T01:48:48 | 2019-10-03T01:48:48 | 205,035,734 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 770 | cpp | #include "../_headers/SimpleMC2.h"
#include "../_headers/Random1.h"
#include <cmath>
double SimpleMonteCarlo2(const PayOff& thePayOff,
double Expiry,
double Spot,
double Vol,
double r,
unsigned long NumberOfPaths)
{
double variance = Vol * Vol * Expiry;
double rootVariance = sqrt(variance);
double itoCorrection = -0.5 * variance;
double movedSpot = Spot * exp(r * Expiry * itoCorrection);
double thisSpot;
double runningSum = 0;
for (unsigned long i = 0; i < NumberOfPaths; i++)
{
double thisGaussian = GetOneGaussianByBoxMuller();
thisSpot = movedSpot * exp(rootVariance * thisGaussian);
double thisPayOff = thePayOff(thisSpot);
runningSum += thisPayOff;
}
double mean = runningSum / NumberOfPaths;
mean *= exp(-r * Expiry);
return mean;
} | [
"cuiyechang1991@gmail.com"
] | cuiyechang1991@gmail.com |
3b70a8943850cc572c7958ef148e96defccb129e | e241ab77ec8f6194a7166331657c0bc807da3a42 | /Day11/part1/main.cpp | 795be817fe34664c6a58aae8df721faa9469d7da | [] | no_license | bznein/AoC2018 | 1c6760cee7d2bbcf4aef5507784aed2ab4f3de3b | 10fb30900524796ea0c47cedc38d811a49f6356a | refs/heads/master | 2020-04-08T23:29:13.161000 | 2019-07-24T21:07:26 | 2019-07-24T21:07:26 | 159,826,851 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | #include <utility>
#include <vector>
#include <iostream>
#include <map>
#include <limits>
using namespace std;
using coords=pair<int,int>;
const int GRID_SERIAL_NUMBER=5177;
const int SQUARE_SIZE=3;
const int GRID_SIZE=300;
int getRackId(coords c)
{
return c.first+10;
}
int getPowerLevel(coords c)
{
int base=getRackId(c);
int level=base;
level*=c.second;
level+=GRID_SERIAL_NUMBER;
level*=base;
int hundred_number=level/100%10;
return hundred_number-5;
}
int main()
{
auto powers=vector<vector<int>>(GRID_SIZE,vector<int>(GRID_SIZE,0));
int largestTotalPower=-std::numeric_limits<int>::max();
int tempLowest;
coords maxCoords;
for (int i=1; i<=GRID_SIZE; ++i)
for (int j=1; j<=GRID_SIZE; ++j)
powers[i-1][j-1]=getPowerLevel(coords(i,j));
for (int i=1; i<=GRID_SIZE-SQUARE_SIZE; ++i)
for (int j=1; j<=GRID_SIZE-SQUARE_SIZE; ++j )
{
tempLowest=0;
for (int k=0; k<SQUARE_SIZE; ++k)
{
for (int l=0; l<SQUARE_SIZE; ++l)
{
tempLowest+=powers[i+k-1][j+l-1];
}
}
if (tempLowest>largestTotalPower)
{
largestTotalPower=tempLowest;
maxCoords=coords(i,j);
}
}
cout << maxCoords.first << "," << maxCoords.second << "\t " << largestTotalPower << endl;
}
| [
"nikolas.degiorgis@iit.it"
] | nikolas.degiorgis@iit.it |
e2b9b0876ab92b3ec5bd13c43e51d41f3d19212d | 3376d4b197f2bceff1320ca70081bfdc686c88c4 | /Engine/Engine/Model/Model.h | 688bdf244f87edc5164087e6e7395146ab9f6499 | [] | no_license | ChuanChinLai/LaiCraft | 96a86f7e55854f77ee10050526e881f5f17048bb | bba2eb26d9a1e70f7b2a7376e70336bb5f4e8552 | refs/heads/master | 2020-04-23T19:18:13.061286 | 2019-03-22T22:56:36 | 2019-03-22T22:56:36 | 171,398,661 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 850 | h | #pragma once
#include <Engine/Model/Mesh.h>
#include <Engine/Utility/NonCopyable.h>
namespace LaiEngine
{
class Model : public NonCopyable
{
public:
Model() = default;
Model(const Mesh& mesh);
~Model();
Model(Model&& other);
Model& operator= (Model&& other);
void Init(const Mesh& mesh);
void BindVAO() const;
void Release();
size_t GetIndexCount() const;
private:
void CreateVAO();
void CreateVBO(const std::vector<sVertex>& vertices);
void CreateEBO(const std::vector<GLuint>& indices);
void ReleaseVAO();
void ReleaseVBO();
void ReleaseEBO();
// A vertex array encapsulates the vertex data as well as the vertex input layout
GLuint m_vertexArrayId = 0;
// A vertex buffer holds the data for each vertex
GLuint m_vertexBufferId = 0;
GLuint m_indexBufferId = 0;
size_t m_indexCount = 0;
};
} | [
"chuanchinlai@gmail.com"
] | chuanchinlai@gmail.com |
bac734e41c8aed1eceaec401ca32509e3354c424 | fffd991af9e271317935d05fbebd4d0886c2146f | /PracticasED/Practicafinal/conecta4_v2.1/src/tablero.cpp | d5022c148c2797fbf34268340d29cede595d5679 | [] | no_license | jocaro97/ED | e541f65d285df15cb81055f208031c8068eb4bff | 169a9a7fcc9903e3ee348b946602250025de9520 | refs/heads/master | 2022-07-18T06:07:47.250179 | 2020-05-18T21:12:04 | 2020-05-18T21:12:04 | 265,046,448 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,916 | cpp | #include "tablero.hpp"
#include <iostream>
using namespace std;
void Tablero::reserve() {
this->tablero.resize(filas);
for(int i = 0; i < filas ; i ++){
this->tablero[i].resize(columnas);
for(int j = 0; j < columnas; j++)
this->tablero[i][j] = 0;
}
}
Tablero::Tablero() : filas(0), columnas(0) {
turno = 1;
}
Tablero::Tablero(const int filas, const int columnas) :
filas(filas), columnas(columnas) {
turno = 1;
reserve();
}
Tablero::~Tablero() {}
Tablero::Tablero(const Tablero& t) :
tablero(t.tablero), filas(t.filas), columnas(t.columnas), turno(t.turno) {
}
int Tablero::hayHueco(int pos){
int i = 0; // Recorremos la matriz de arriba hacia abajo.
bool encontrado = false;
// Comprobamos si la posición no está dentro del tablero.
if(pos < 0 || pos >= columnas)
return -1;
while(i < filas && !encontrado){
if(this->tablero[i][pos] != 0)
encontrado = true;
else
i++;
}
// Si no hay piezas.
if(!encontrado && i == filas)
return filas - 1;
else if(i < filas && i >= 0)
return i-1;
else
return -1;
}
bool Tablero::colocarFicha(int pos) {
int fila;
// Comprobamos que hay espacio en la columna.
fila = hayHueco(pos);
if(fila != -1){
this->tablero[fila][pos] = turno;
return true;
}
return false;
}
int Tablero::cambiarTurno(){
if(turno == 1) turno = 2;
else turno = 1;
return turno;
}
void Tablero::SetTablero(vector<vector<int> > tablero) {
int filas1, filas2, columnas1, columnas2;
filas1 = GetFilas();
filas2 = tablero.size();
columnas1 = GetColumnas();
columnas2 = tablero[1].size();
if(filas1 == 0 || columnas1 == 0) {
this->tablero = tablero;
}
else{
// Si tiene la misma dimensión.
if(filas1 == filas2 && columnas1 == columnas2){
this->tablero = tablero;
}
else{
cout << "Se han intentado igualar tableros de distintas dimensiones." << endl;
}
}
}
Tablero& Tablero::operator=(const Tablero& derecha) {
// Comprobamos que no se está copiando el mismo objeto.
if (this == &derecha)
return *this;
// Asignamos el tablero de la derecha en la igualdad.
SetTablero(derecha.GetTablero());
return *this;
}
bool Tablero::operator==(const Tablero& tab) {
if (this->GetFilas() != tab.GetFilas())
return false;
else if (this->GetColumnas() != tab.GetColumnas())
return false;
else if (this->GetTurno() != tab.GetTurno())
return false;
else if (this->GetTablero() != tab.GetTablero())
return false;
else
return true;
}
ostream& operator<<(ostream& os, const Tablero& t) {
os << t.GetTablero();
return os;
}
int Tablero::quienGana(){
int ganador = 0;
int count = 0;
int i, j;
int aux, aux2;
for (i = 0; i < filas; i++) {
for (j = 0; j < columnas; j++) {
// comprobar columnas
count = 0;
for (int k = 0; k < N_FICHAS_GANAR
&& i + k < filas; k++) {
if (tablero[i + k][j] != 0) {
if (count == 0) {
ganador = tablero[i + k][j];
aux = i + k;
aux2 = j + k;
count++;
} else {
if (ganador == tablero[i + k][j]) {
aux = i + k;
aux2 = j;
count++;
} else {
count = 0;
break;
}
}
if (count == N_FICHAS_GANAR) {
return ganador;
}
} else {
break;
}
}
// comprobar filas
count = 0;
for (int k = 0; k < N_FICHAS_GANAR
&& j + k < columnas; k++) {
if (tablero[i][j + k] != 0) {
if (count == 0) {
ganador = tablero[i][j + k];
aux = i + k;
aux2 = j + k;
count++;
} else {
if (ganador == tablero[i][j + k]) {
aux = i;
aux2 = j + k;
count++;
} else {
count = 0;
break;
}
}
if (count == N_FICHAS_GANAR) {
return ganador;
}
} else {
break;
}
}
// comprobar diagonal 1
count = 0;
for (int k = 0; k < N_FICHAS_GANAR
&& i + k < filas
&& j + k < columnas; k++) {
if (tablero[i + k][j + k] != 0) {
if (count == 0) {
ganador = tablero[i + k][j + k];
aux = i + k;
aux2 = j + k;
count++;
} else {
if (ganador == tablero[i + k][j + k]) {
aux = i + k;
aux2 = j + k;
count++;
} else {
count = 0;
break;
}
}
if (count == N_FICHAS_GANAR) {
return ganador;
}
} else {
break;
}
}
// comprobar diagonal 2
count = 0;
for (int k = 0; k < N_FICHAS_GANAR && i - k >= 0
&& j + k < columnas; k++) {
if (tablero[i - k][j + k] != 0) {
if (count == 0) {
ganador = tablero[i - k][j + k];
aux = i - k;
aux2 = j + k;
count++;
} else {
if (ganador == tablero[i - k][j + k]) {
aux = i - k;
aux2 = j + k;
count++;
} else {
count = 0;
break;
}
}
if (count == N_FICHAS_GANAR) {
return ganador;
}
} else {
break;
}
}
}
}
return 0;
}
| [
"johanna_capote_robayna@hotmail.com"
] | johanna_capote_robayna@hotmail.com |
f44ef3511b705fcf59eb40ad9051b247e535b55f | ac9e8b1032292f300623eae6a69eecbb9f29fed0 | /Q1/PRO1/P3/Rectangle2.cc | 6de4ec7ec4fdb9ce4adf5a36aaab1a12f156daee | [] | no_license | ericfib/UPC-FIB | 284888753cf300bbbf801b38e4a62eb5861e7c2b | 0cb178994d0ec0be9cab978f9c090641c0b074b9 | refs/heads/master | 2020-12-14T15:34:06.554808 | 2020-04-15T16:41:33 | 2020-04-15T16:41:33 | 234,789,710 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 439 | cc | #include <iostream>
using namespace std;
int main () {
int f, c, cont = 0, cont1 = 0, cont2 = 1;
cin >> f >> c;
for (int y = 1; y <= f; ++y){
cont1 = cont;
for (int j = 0; j <= c; j++) {
if (j == y) cout << "0";
else if (j < y){
cout << cont1;
--cont1;
if
}
}
}
}
| [
"ersele46@gmail.com"
] | ersele46@gmail.com |
a8c28724078b996321619e73f86dfe1619347d46 | cab0e3ca805131c0518056513990b02b3b9585fb | /observables_old.h | 64f8cc7f49fc29975edfe9aa8cb9022d07099136 | [] | no_license | olavfsyljuasen/Exact | d9509e8715a17cf5dfaf0ae8bde240186dda27a7 | b6d69c2f293e0a5a6cdd7e63c031e525e3d247e2 | refs/heads/main | 2023-05-25T17:19:05.921161 | 2021-06-05T14:29:01 | 2021-06-05T14:29:01 | 374,127,877 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,908 | h | #ifndef OBSERVABLES_H
#define OBSERVABLES_H
#include<fstream>
using namespace std;
const double MAXMINENERGY=100000.;
#include "alltemperatures.h"
#include "fulldiagonalization.h"
#include "operator.h"
#include "lowlevelroutines.h"
class BasicObservables
{
public:
#ifdef FULLDIAGONALIZATION
BasicObservables(int,int,FullDiagonalization&,double);
#else
BasicObservables(int,int,Lanczos&,double);
#endif
};
#ifdef FULLDIAGONALIZATION
BasicObservables::BasicObservables(int sector,int nstates,FullDiagonalization& mydiag,double beta)
#else
BasicObservables::BasicObservables(int sector,int nstates,Lanczos& mydiag,double beta)
#endif
{
double Z=0;
double Energy=0.;
double MinEnergy=MAXMINENERGY;
int Neigenvalues=mydiag.GetNeigenvalues();
vector<double>& eval=mydiag.GetEigenvalues();
// DataLine Zline(sector,Neigenvalues);
DataLine Zline(sector,nstates);
for(int i=0; i<Neigenvalues; i++)
{
#ifdef FULLDIAGONALIZATION
double factor=1.;
#else
double* evec=mydiag.GetEigenvector(i);
double factor=evec[0]*evec[0];
#endif
if(eval[i] < MinEnergy){ MinEnergy=eval[i];}
Zline.Insert(eval[i],factor);
}
ofstream Zfile("Z.dat",ios::app);
Zline.Write(Zfile);
Zfile.close();
/*
if(MinEnergy < -1) logfile << "WARNING: ";
logfile << "Minimum energy found: " << MinEnergy << endl;
*/
// Energy:
// DataLine Eline(sector,Neigenvalues);
DataLine Eline(sector,nstates);
for(int i=0; i<Neigenvalues; i++)
{
// Eline.energy[i]=eval[i];
#ifdef FULLDIAGONALIZATION
double factor=eval[i];
#else
double* evec=mydiag.GetEigenvector(i);
double factor=evec[0]*evec[0]*eval[i];
#endif
Eline.Insert(eval[i],factor);
}
ofstream Efile("energy.dat",ios::app);
Eline.Write(Efile);
Efile.close();
// Energy Squared:
//DataLine Eline2(sector,Neigenvalues);
DataLine Eline2(sector,nstates);
for(int i=0; i<Neigenvalues; i++)
{
// Eline2.energy[i]=eval[i];
#ifdef FULLDIAGONALIZATION
double factor=eval[i]*eval[i];
#else
double* evec=mydiag.GetEigenvector(i);
double factor=evec[0]*evec[0]*eval[i]*eval[i];
#endif
Eline2.Insert(eval[i],factor);
}
ofstream Efile2("energy2.dat",ios::app);
Eline2.Write(Efile2);
Efile2.close();
}
class SingleOperatorObservable
{
public:
SingleOperatorObservable(Operator& Aop_in,string filename_in):Aop(Aop_in),filename(filename_in){}
#ifdef FULLDIAGONALIZATION
void Calculate(int sector,int nstates,FullDiagonalization& mydiag);
#else
void Calculate(int sector,int nstates,Lanczos& mydiag);
#endif
private:
Operator& Aop;
string filename;
};
#ifdef FULLDIAGONALIZATION
void SingleOperatorObservable::Calculate(int sector,int nstates,FullDiagonalization& mydiag)
#else
void SingleOperatorObservable::Calculate(int sector,int nstates,Lanczos& mydiag)
#endif
{
if(TRACE) cout << "in SingleOperatorObservable Calculate " << filename << " sector " << sector << endl;
int Neigenvalues=mydiag.GetNeigenvalues();
vector<double>& eval=mydiag.GetEigenvalues();
if(Aop.GetOutSector(sector)!=sector)
{
if(TRACE) cout << "operator is off-diagonal, returning" << endl;
return;
}
MyMatrix* Aptr=Aop.GetSector(sector);
if(Aptr==0)
{
if(TRACE) cout << "operator action is 0, returning" << endl;
return;
}
MyMatrix& A=*Aptr;
// A:
//
// DataLine Aline(sector,Neigenvalues);
DataLine Aline(sector,nstates);
#ifdef FULLDIAGONALIZATION
for(int i=0; i<Neigenvalues; i++)
{
// Aline.energy[i]=eval[i];
MyField* evec=mydiag.GetEigenvector(i);
vector<MyField> ev(Neigenvalues);
vector<MyField> evec_star=A*evec;
double factor=ScalarProduct(&Neigenvalues,&evec_star[0],&evec[0]).real();
Aline.Insert(eval[i],factor);
}
#else
vector<MyField> Aphi0=A*mydiag.GetPhi(0);
int Nelements=Aphi0.size();
for(int i=0; i<Neigenvalues; i++)
{
// Aline.energy[i]=eval[i];
double* evec=mydiag.GetEigenvector(i);
double nui0=evec[0];
/*
complex<double> msum=complex<double>(0.,0.);
for(int j=0; j<Neigenvalues; j++)
{
vector<MyField> phij=mydiag.GetPhi(j);
double jthcomp=*(evec+j);
msum += jthcomp*ScalarProduct(phij,Aphi0);
}
*/
MyField* psi_i=mydiag.GetLanczosEigenvectorinStateSpaceBasis(i);
MyField msum=ScalarProduct(&Nelements,psi_i,&Aphi0[0]);
// Aline.factor[i]=(nui0*msum).real(); // CHECK THIS
double factor=(nui0*msum).real(); // CHECK THIS
Aline.Insert(eval[i],factor);
}
#endif // FULLDIAGONALIZATION
ofstream Afile(filename.c_str(),ios::app);
Aline.Write(Afile);
Afile.close();
Aop.Free();
}
//**********************************************************************************
#ifdef CORRELATIONFUNCTION
class CorrelationFunctionObservable
{
public:
CorrelationFunctionObservable(Operator& Aop_in,string filename_in):Aop(Aop_in),filename(filename_in){}
#ifdef FULLDIAGONALIZATION
void Calculate(int sector,int nstates,FullDiagonalization& mydiag1,FullDiagonalization& mydiag2);
#else
void Calculate(int sector,int nstates,Lanczos& mydiag1,Lanczos& mydiag2);
#endif
Operator& Aop;
private:
string filename;
};
#ifdef FULLDIAGONALIZATION
void CorrelationFunctionObservable::Calculate(int sector,int nstates,FullDiagonalization& mydiag1,FullDiagonalization& mydiag2)
{
if(TRACE) cout << "in CorrelationFunctionObservable Calculate " << filename << " sector " << sector << " nstates:" << nstates << endl;
CorrelationDataLine Aline(sector,1);
int Neigenvalues1=mydiag1.GetNeigenvalues();
int Neigenvalues2=mydiag2.GetNeigenvalues();
if(TRACE) cout << "Nevals1: " << Neigenvalues1 << " Nevals2: " << Neigenvalues2 << endl;
MyMatrix* Aptr=Aop.GetSector(sector);
if(Aptr!=0 && Neigenvalues1>0 && Neigenvalues2>0)
{
vector<double>& eval1=mydiag1.GetEigenvalues();
vector<double>& eval2=mydiag2.GetEigenvalues();
MyMatrix& A=*Aptr;
int G=A.Nrows();
for(int n=0; n<Neigenvalues1; n++)
{
MyField* evec_n=mydiag1.GetEigenvector(n);
vector<MyField> Aevec_n=A*evec_n;
for(int m=0; m<Neigenvalues2; m++)
{
MyField* evec_m=mydiag2.GetEigenvector(m);
MyField matrixelem=ScalarProduct(&G,evec_m,&Aevec_n[0]);
Aline.Insert(eval1[n],eval2[m]-eval1[n],norm(matrixelem)); // store data abs^2
}
}
}
ofstream Afile(filename.c_str(),ios::app);
Aline.Write(Afile);
Afile.close();
}
#else
void CorrelationFunctionObservable::Calculate(int sector,int nstates,Lanczos& mydiag1,Lanczos& mydiag2)
{
if(TRACE) cout << "in CorrelationFunctionObservable Calculate Lanczos " << filename << " sector " << sector << " nstates: " << nstates << endl;
CorrelationDataLine Aline(sector,nstates);
int Neigenvalues1=mydiag1.GetNeigenvalues();
int Neigenvalues2=mydiag2.GetNeigenvalues();
if(TRACE) cout << "Nevals1: " << Neigenvalues1 << " Nevals2: " << Neigenvalues2 << endl;
MyMatrix* Aptr=Aop.GetSector(sector);
if(TRACE) cout << "Aptr: " << Aptr << endl;
if(Aptr!=0 && Neigenvalues1>0 && Neigenvalues2>0) // else just write out a zero dataline
{
vector<double>& eval1=mydiag1.GetEigenvalues();
vector<double>& eval2=mydiag2.GetEigenvalues();
MyMatrix& A=*Aptr;
int G=A.Nrows();
for(int n=0; n<Neigenvalues1; n++)
{
double* evec1_n=mydiag1.GetEigenvector(n);
if(TRACE){
cout << "n: " << n << " evec1_n: ";
for(int i=0; i<Neigenvalues1; i++){cout << evec1_n[i] << " ";}
cout << endl;
}
for(int m=0; m<Neigenvalues2; m++)
{
double* evec2_m=mydiag2.GetEigenvector(m);
if(TRACE){
cout << "m:" << m << " evec2_m: ";
for(int i=0; i<Neigenvalues2; i++){cout << evec2_m[i] << " ";}
cout << endl;
}
int Nstates2=A.Nrows();
vector<MyField> Apsin(Nstates2);
A.TimesVector(Apsin,mydiag1.GetLanczosEigenvectorinStateSpaceBasis(n));
MyField* psim = mydiag2.GetLanczosEigenvectorinStateSpaceBasis(m);
int nstates2=Apsin.size();
MyField matrixelem=ScalarProduct(&nstates2,psim,&Apsin[0]);
MyField melem=evec1_n[0]*evec2_m[0]*conj(matrixelem)*mydiag2.GetNormofInitVector();
if(TRACE)
{
cout << "Apsin: " << endl;
for(int i=0; i<Apsin.size(); i++) cout << Apsin[i] << " ";
cout << endl;
cout << "matrixelem: " << matrixelem << " melem: " << melem << endl;
}
Aline.Insert(eval1[n],eval2[m]-eval1[n],melem.real()); // store data
}
}
}
ofstream Afile(filename.c_str(),ios::app);
Aline.Write(Afile);
Afile.close();
if(TRACE) cout << "Done with CorrelationFunctionObservable" << endl;
}
#endif // FULLDIAGONALIZATION
#endif // CORRELATIONFUNCTION
#endif //OBSERVABLES_H
| [
"sylju@fys.uio.no"
] | sylju@fys.uio.no |
8cad48919a343e656ddc14e7ede6f0f2b70c651a | a2051f83309f0e5327054ed11fad829e9c3d6cba | /Motor.h | c0c5820dd328f56c12c64c4b8258588f5132038c | [] | no_license | isaac-team-polito/snakerobot | 6d7d2ac4325ca54d672ac65b313e1e3f698f0e6d | 3934ec663e3b311d95a7314e3446a88e073d43a5 | refs/heads/main | 2023-08-29T11:48:08.177432 | 2021-10-12T07:49:00 | 2021-10-12T07:49:00 | 351,521,581 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 381 | h | #ifndef MOTOR_H
#define MOTOR_H
#include <Arduino.h>
// TODO ADD ENCODER AND PID CONTROL
/**
* @file
* @version 1.0
* @author Andrea Grillo
*
* Simple class to control a motor object.
*
*/
class Motor {
public:
Motor(byte pwm, byte in1, byte in2);
void go(int speed, bool invert);
void stop();
void begin();
private:
byte pwm, in1, in2;
};
#endif
| [
"grilloandrea6@gmail.com"
] | grilloandrea6@gmail.com |
1b308b488f21aab8a1b4531d6d81854f4e2a9e78 | bc997f47b4cffef395f0ce85d72f113ceb1466e6 | /ICPC/Korea/icpc21_i.cpp | ef949fe7f0d20827d0dfd4676d51278c8972e26d | [
"LicenseRef-scancode-public-domain"
] | permissive | koosaga/olympiad | 1f069dd480004c9df033b73d87004b765d77d622 | fcb87b58dc8b5715b3ae2fac788bd1b7cac9bffe | refs/heads/master | 2023-09-01T07:37:45.168803 | 2023-08-31T14:18:03 | 2023-08-31T14:18:03 | 45,691,895 | 246 | 49 | null | 2020-10-20T16:52:45 | 2015-11-06T16:01:57 | C++ | UTF-8 | C++ | false | false | 3,802 | cpp | #include <bits/stdc++.h>
#define sz(v) ((int)(v).size())
#define all(v) (v).begin(), (v).end()
using namespace std;
using lint = long long;
using llf = long double;
using pi = pair<lint, lint>;
bool in(pi a, pi b){
return a.first <= b.first && b.second <= a.second;
}
int solve(vector<pi> a){
int n = sz(a);
// for(auto &[x, y] : a) cout << x << ' ' << y << '\n';
vector<int> dpa(n + 1), dpb(n + 1);
vector<int> decf(n + 1), incf(n + 1), decs(n + 1), incs(n + 1);
vector<int> dec(n + 1), inc(n + 1);
vector<int> bitonic(n + 1);
for(int i = n - 1; i >= 0; i--){
decf[i] = incf[i] = decs[i] = incs[i] = i;
if(i + 1 < n && a[i].first <= a[i + 1].first) incf[i] = incf[i + 1];
if(i + 1 < n && a[i].first >= a[i + 1].first) decf[i] = decf[i + 1];
if(i + 1 < n && a[i].second <= a[i + 1].second) incs[i] = incs[i + 1];
if(i + 1 < n && a[i].second >= a[i + 1].second) decs[i] = decs[i + 1];
dec[i] = min(incf[i], decs[i]);
inc[i] = min(decf[i], incs[i]);
}
vector<int> upChain, dnChain;
vector<int> stab1(n + 1);
vector<int> stab2(n + 1);
stab1[n] = stab2[n] = n - 1;
for(int i = n - 1; i >= 0; i--){
stab1[i] = stab1[i + 1];
stab2[i] = stab2[i + 1];
{
int s = 0, e = sz(upChain);
while(s != e){
int m = (s + e) / 2;
if(a[upChain[m]].first >= a[i].second) s = m + 1;
else e = m;
}
if(s) stab1[i] = min(stab1[i], upChain[s - 1] - 1);
}
{
int s = 0, e = sz(upChain);
while(s != e){
int m = (s + e) / 2;
if(a[upChain[m]].first > a[i].second) s = m + 1;
else e = m;
}
if(s) stab2[i] = min(stab2[i], upChain[s - 1] - 1);
}
{
int s = 0, e = sz(dnChain);
while(s != e){
int m = (s + e) / 2;
if(a[dnChain[m]].second <= a[i].first) s = m + 1;
else e = m;
}
if(s) stab1[i] = min(stab1[i], dnChain[s - 1] - 1);
}
{
int s = 0, e = sz(dnChain);
while(s != e){
int m = (s + e) / 2;
if(a[dnChain[m]].second < a[i].first) s = m + 1;
else e = m;
}
if(s) stab2[i] = min(stab2[i], dnChain[s - 1] - 1);
}
while(sz(upChain) && a[upChain.back()].first <= a[i].first) upChain.pop_back();
upChain.push_back(i);
while(sz(dnChain) && a[dnChain.back()].second >= a[i].second) dnChain.pop_back();
dnChain.push_back(i);
}
for(int i = n - 1; i >= 0; i--){
int i1 = decf[incf[i]];
int i2 = incs[decs[i]];
int i3 = stab2[i];
bitonic[i] = min({i1, i2, i3});
}
for(int i = n - 1; i >= 0; i--){
dpa[i] = min(dpa[stab1[i] + 1], dpb[inc[i] + 1]) + 1;
int nidx = dec[i] + 1;
if(nidx < n){
nidx = stab1[nidx] + 1;
dpb[i] = min(dpa[nidx], dpb[bitonic[i] + 1]) + 1;
}
else dpb[i] = 0;
}
return dpa[0];
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n; cin >> n;
vector<pi> a(n);
vector<int> vx, vy;
for(auto &[x, y] : a){
cin >> x >> y;
vx.push_back(x);
vy.push_back(y);
}
sort(all(vx)); vx.resize(unique(all(vx)) - vx.begin());
sort(all(vy)); vy.resize(unique(all(vy)) - vy.begin());
for(auto &[x, y] : a){
x = lower_bound(all(vx), x) - vx.begin();
y = lower_bound(all(vy), y) - vy.begin();
}
vector<pi> intervals(sz(vx) - 1, pi(1e9, -1e9));
for(int i = 0; i < sz(a); i++){
auto x = a[i];
auto y = a[(i + 1) % sz(a)];
if(x.first == y.first) continue;
if(x > y) swap(x, y);
assert(x.second == y.second);
for(int j = x.first; j < y.first; j++){
intervals[j].first = min(intervals[j].first, y.second);
intervals[j].second = max(intervals[j].second, y.second);
}
}
vector<pi> v;
for(auto &i : intervals){
if(!sz(v)){
v.push_back(i);
continue;
}
if(in(v.back(), i) || in(i, v.back())) v.push_back(i);
else{
pi j = i;
j.first = max(j.first, v.back().first);
j.second = min(j.second, v.back().second);
v.push_back(j);
v.push_back(i);
}
}
cout << solve(v) << endl;
}
| [
"koosaga@gmail.com"
] | koosaga@gmail.com |
ced3d07faa06b592dc2e01bc4b2a0c8ba791f6c6 | 13c3ab1b675aa446d101dfef6f8138c03334aa49 | /contracts/libraries/include/gxclib/types.hpp | d882e9841ffd0430dfd963d1d220a85e03e50164 | [
"MIT"
] | permissive | Game-X-Coin/gxc-contracts-v1 | 97ecbffd4fc2dc8cbe6dd3612deeae92a79fd005 | cc5cc59cab0422238a44d2c4d909a31200817a35 | refs/heads/master | 2020-04-13T11:41:49.001067 | 2019-06-26T07:25:35 | 2019-06-26T07:25:35 | 163,181,211 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 200 | hpp | /**
* @file
* @copyright defined in gxc/LICENSE
*/
#pragma once
#ifdef __cplusplus
namespace eosio {
using capi_checksum256 = std::array<uint8_t,32> __attribute__ ((aligned(16)));
}
#endif
| [
"conr2d@gmail.com"
] | conr2d@gmail.com |
3dcd0ad7b7f4baeb8cf2acfec9bffb8a99aeb37c | d8ab016a48cbc043a632b24f8ec7a23a850d6368 | /codes/Garnetwzy/218.cpp | 93deb4f19db2ac8b9ee21655ae27b712cae5b634 | [] | no_license | neu-velocity/code-camp-debut | ba52ce5b1a7fe74d8a79115f56117793ba893f0c | 5664a83b0bbb3ae37a88c52dbbc28a3e60c16020 | refs/heads/master | 2020-05-30T12:25:47.900030 | 2019-09-03T00:02:33 | 2019-09-03T00:02:33 | 189,734,016 | 5 | 2 | null | 2019-06-05T15:49:17 | 2019-06-01T13:08:36 | Java | UTF-8 | C++ | false | false | 1,474 | cpp | class cmp
{
public:
bool operator()(vector<int> p1, vector<int> p2)
{
if(p1[0] != p2[0]) {
return p1[0] < p2[0];
}else{
if(p1[2] == p2[2]) {
if(p1[2] == 1) {
return p1[1] > p2[1];
}else{
return p1[1] < p2[1];
}
}else{
return p1[2] == 1 ? true : false;
}
}
}
};
class Solution {
public:
multiset<int> p;
int maxHeight() {
if(p.empty())
return 0;
return *p.rbegin();
}
vector<vector<int>> getSkyline(vector<vector<int>>& buildings) {
vector<vector<int>> pointArray;
vector<vector<int>> ret;
for(vector<int> building: buildings) {
pointArray.push_back({building[0], building[2], 1});
pointArray.push_back({building[1], building[2], 0});
}
sort(pointArray.begin(), pointArray.end(), cmp());
for(vector<int> point: pointArray) {
if(point[2] == 1) {
if(point[1] > maxHeight()) {
ret.push_back({point[0], point[1]});
}
p.insert(point[1]);
}else {
p.erase(p.equal_range(point[1]).first);
if(point[1] > maxHeight()) {
ret.push_back({point[0], maxHeight()});
}
}
}
return ret;
}
}; | [
"596913416@qq.com"
] | 596913416@qq.com |
34b4b553bdf63f1df790088ebc87fd0beafbe55c | 44decb474afc5c061e974591e7557e3823306f86 | /linux_c/DesignPattern/CreationalPatterns/Factory/ConcreteProduct.h | 3deb9cb59dafa8b60732b39948d3450529655e7d | [] | no_license | hechengjin/c-cpp | c3023f4f13cc62c7229f8b41d0b3e401c2ba110b | 639fc8abe033899e1056f31247f50625d8b42fe9 | refs/heads/master | 2020-04-25T03:01:23.189048 | 2019-05-11T14:33:55 | 2019-05-11T14:33:55 | 172,461,875 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 229 | h | #ifndef _CONCRETEPRODUCT_H_
#define _CONCRETEPRODUCT_H_
#include "Product.h"
class ConcreteProduct:public Product
{
public:
~ConcreteProduct();
ConcreteProduct();
protected:
private:
};
#endif //_CONCRETEPRODUCT_H_
| [
"he_chengjin@outlook.com"
] | he_chengjin@outlook.com |
89ddbd633543fc2e7e4cdc0c474eba02307c11ad | 98dd7a26d2b9f075bebba06b43c92bbbe2793194 | /llvm/tools/clang/lib/Driver/Tools.cpp | a1682e222f494cb1cf3f78c1590f5b0eb0fc6eef | [
"NCSA",
"MIT"
] | permissive | intel-cgss/cm-compiler | 600abe2fe498e50db07cb915d9c80ea6d44b389a | 350b433b3d1dc40eae9bf7b8b79de75bbee085e8 | refs/heads/master | 2021-05-01T09:52:15.736086 | 2018-02-03T17:28:10 | 2018-02-03T17:30:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 308,272 | cpp | //===--- Tools.cpp - Tools Implementations --------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "Tools.h"
#include "InputInfo.h"
#include "ToolChains.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/ObjCRuntime.h"
#include "clang/Basic/Version.h"
#include "clang/Driver/Action.h"
#include "clang/Driver/Compilation.h"
#include "clang/Driver/Driver.h"
#include "clang/Driver/DriverDiagnostic.h"
#include "clang/Driver/Job.h"
#include "clang/Driver/Options.h"
#include "clang/Driver/SanitizerArgs.h"
#include "clang/Driver/ToolChain.h"
#include "clang/Driver/Util.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Option/Arg.h"
#include "llvm/Option/ArgList.h"
#include "llvm/Option/Option.h"
#include "llvm/Support/Compression.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Process.h"
#include "llvm/Support/Program.h"
#include "llvm/Support/raw_ostream.h"
using namespace clang::driver;
using namespace clang::driver::tools;
using namespace clang;
using namespace llvm::opt;
static void addAssemblerKPIC(const ArgList &Args, ArgStringList &CmdArgs) {
Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
options::OPT_fpic, options::OPT_fno_pic,
options::OPT_fPIE, options::OPT_fno_PIE,
options::OPT_fpie, options::OPT_fno_pie);
if (!LastPICArg)
return;
if (LastPICArg->getOption().matches(options::OPT_fPIC) ||
LastPICArg->getOption().matches(options::OPT_fpic) ||
LastPICArg->getOption().matches(options::OPT_fPIE) ||
LastPICArg->getOption().matches(options::OPT_fpie)) {
CmdArgs.push_back("-KPIC");
}
}
/// CheckPreprocessingOptions - Perform some validation of preprocessing
/// arguments that is shared with gcc.
static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) {
if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC)) {
if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) &&
!Args.hasArg(options::OPT__SLASH_EP) && !D.CCCIsCPP()) {
D.Diag(diag::err_drv_argument_only_allowed_with)
<< A->getBaseArg().getAsString(Args)
<< (D.IsCLMode() ? "/E, /P or /EP" : "-E");
}
}
}
/// CheckCodeGenerationOptions - Perform some validation of code generation
/// arguments that is shared with gcc.
static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) {
// In gcc, only ARM checks this, but it seems reasonable to check universally.
if (Args.hasArg(options::OPT_static))
if (const Arg *A = Args.getLastArg(options::OPT_dynamic,
options::OPT_mdynamic_no_pic))
D.Diag(diag::err_drv_argument_not_allowed_with)
<< A->getAsString(Args) << "-static";
}
// Quote target names for inclusion in GNU Make dependency files.
// Only the characters '$', '#', ' ', '\t' are quoted.
static void QuoteTarget(StringRef Target,
SmallVectorImpl<char> &Res) {
for (unsigned i = 0, e = Target.size(); i != e; ++i) {
switch (Target[i]) {
case ' ':
case '\t':
// Escape the preceding backslashes
for (int j = i - 1; j >= 0 && Target[j] == '\\'; --j)
Res.push_back('\\');
// Escape the space/tab
Res.push_back('\\');
break;
case '$':
Res.push_back('$');
break;
case '#':
Res.push_back('\\');
break;
default:
break;
}
Res.push_back(Target[i]);
}
}
static void addDirectoryList(const ArgList &Args,
ArgStringList &CmdArgs,
const char *ArgName,
const char *EnvVar) {
const char *DirList = ::getenv(EnvVar);
bool CombinedArg = false;
if (!DirList)
return; // Nothing to do.
StringRef Name(ArgName);
if (Name.equals("-I") || Name.equals("-L"))
CombinedArg = true;
StringRef Dirs(DirList);
if (Dirs.empty()) // Empty string should not add '.'.
return;
StringRef::size_type Delim;
while ((Delim = Dirs.find(llvm::sys::EnvPathSeparator)) != StringRef::npos) {
if (Delim == 0) { // Leading colon.
if (CombinedArg) {
CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + "."));
} else {
CmdArgs.push_back(ArgName);
CmdArgs.push_back(".");
}
} else {
if (CombinedArg) {
CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs.substr(0, Delim)));
} else {
CmdArgs.push_back(ArgName);
CmdArgs.push_back(Args.MakeArgString(Dirs.substr(0, Delim)));
}
}
Dirs = Dirs.substr(Delim + 1);
}
if (Dirs.empty()) { // Trailing colon.
if (CombinedArg) {
CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + "."));
} else {
CmdArgs.push_back(ArgName);
CmdArgs.push_back(".");
}
} else { // Add the last path.
if (CombinedArg) {
CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs));
} else {
CmdArgs.push_back(ArgName);
CmdArgs.push_back(Args.MakeArgString(Dirs));
}
}
}
static void AddLinkerInputs(const ToolChain &TC,
const InputInfoList &Inputs, const ArgList &Args,
ArgStringList &CmdArgs) {
const Driver &D = TC.getDriver();
// Add extra linker input arguments which are not treated as inputs
// (constructed via -Xarch_).
Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input);
for (const auto &II : Inputs) {
if (!TC.HasNativeLLVMSupport()) {
// Don't try to pass LLVM inputs unless we have native support.
if (II.getType() == types::TY_LLVM_IR ||
II.getType() == types::TY_LTO_IR ||
II.getType() == types::TY_LLVM_BC ||
II.getType() == types::TY_LTO_BC)
D.Diag(diag::err_drv_no_linker_llvm_support)
<< TC.getTripleString();
}
// Add filenames immediately.
if (II.isFilename()) {
CmdArgs.push_back(II.getFilename());
continue;
}
// Otherwise, this is a linker input argument.
const Arg &A = II.getInputArg();
// Handle reserved library options.
if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx))
TC.AddCXXStdlibLibArgs(Args, CmdArgs);
else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext))
TC.AddCCKextLibArgs(Args, CmdArgs);
else if (A.getOption().matches(options::OPT_z)) {
// Pass -z prefix for gcc linker compatibility.
A.claim();
A.render(Args, CmdArgs);
} else {
A.renderAsInput(Args, CmdArgs);
}
}
// LIBRARY_PATH - included following the user specified library paths.
// and only supported on native toolchains.
if (!TC.isCrossCompiling())
addDirectoryList(Args, CmdArgs, "-L", "LIBRARY_PATH");
}
/// \brief Determine whether Objective-C automated reference counting is
/// enabled.
static bool isObjCAutoRefCount(const ArgList &Args) {
return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false);
}
/// \brief Determine whether we are linking the ObjC runtime.
static bool isObjCRuntimeLinked(const ArgList &Args) {
if (isObjCAutoRefCount(Args)) {
Args.ClaimAllArgs(options::OPT_fobjc_link_runtime);
return true;
}
return Args.hasArg(options::OPT_fobjc_link_runtime);
}
static bool forwardToGCC(const Option &O) {
// Don't forward inputs from the original command line. They are added from
// InputInfoList.
return O.getKind() != Option::InputClass &&
!O.hasFlag(options::DriverOption) &&
!O.hasFlag(options::LinkerInput);
}
void Clang::AddPreprocessingOptions(Compilation &C,
const JobAction &JA,
const Driver &D,
const ArgList &Args,
ArgStringList &CmdArgs,
const InputInfo &Output,
const InputInfoList &Inputs) const {
Arg *A;
CheckPreprocessingOptions(D, Args);
Args.AddLastArg(CmdArgs, options::OPT_C);
Args.AddLastArg(CmdArgs, options::OPT_CC);
// Handle dependency file generation.
if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) ||
(A = Args.getLastArg(options::OPT_MD)) ||
(A = Args.getLastArg(options::OPT_MMD))) {
// Determine the output location.
const char *DepFile;
if (Arg *MF = Args.getLastArg(options::OPT_MF)) {
DepFile = MF->getValue();
C.addFailureResultFile(DepFile, &JA);
} else if (Output.getType() == types::TY_Dependencies) {
DepFile = Output.getFilename();
} else if (A->getOption().matches(options::OPT_M) ||
A->getOption().matches(options::OPT_MM)) {
DepFile = "-";
} else {
DepFile = getDependencyFileName(Args, Inputs);
C.addFailureResultFile(DepFile, &JA);
}
CmdArgs.push_back("-dependency-file");
CmdArgs.push_back(DepFile);
// Add a default target if one wasn't specified.
if (!Args.hasArg(options::OPT_MT) && !Args.hasArg(options::OPT_MQ)) {
const char *DepTarget;
// If user provided -o, that is the dependency target, except
// when we are only generating a dependency file.
Arg *OutputOpt = Args.getLastArg(options::OPT_o);
if (OutputOpt && Output.getType() != types::TY_Dependencies) {
DepTarget = OutputOpt->getValue();
} else {
// Otherwise derive from the base input.
//
// FIXME: This should use the computed output file location.
SmallString<128> P(Inputs[0].getBaseInput());
llvm::sys::path::replace_extension(P, "o");
DepTarget = Args.MakeArgString(llvm::sys::path::filename(P));
}
CmdArgs.push_back("-MT");
SmallString<128> Quoted;
QuoteTarget(DepTarget, Quoted);
CmdArgs.push_back(Args.MakeArgString(Quoted));
}
if (A->getOption().matches(options::OPT_M) ||
A->getOption().matches(options::OPT_MD))
CmdArgs.push_back("-sys-header-deps");
if (isa<PrecompileJobAction>(JA))
CmdArgs.push_back("-module-file-deps");
}
if (Args.hasArg(options::OPT_MG)) {
if (!A || A->getOption().matches(options::OPT_MD) ||
A->getOption().matches(options::OPT_MMD))
D.Diag(diag::err_drv_mg_requires_m_or_mm);
CmdArgs.push_back("-MG");
}
Args.AddLastArg(CmdArgs, options::OPT_MP);
// Convert all -MQ <target> args to -MT <quoted target>
for (arg_iterator it = Args.filtered_begin(options::OPT_MT,
options::OPT_MQ),
ie = Args.filtered_end(); it != ie; ++it) {
const Arg *A = *it;
A->claim();
if (A->getOption().matches(options::OPT_MQ)) {
CmdArgs.push_back("-MT");
SmallString<128> Quoted;
QuoteTarget(A->getValue(), Quoted);
CmdArgs.push_back(Args.MakeArgString(Quoted));
// -MT flag - no change
} else {
A->render(Args, CmdArgs);
}
}
// Add -i* options, and automatically translate to
// -include-pch/-include-pth for transparent PCH support. It's
// wonky, but we include looking for .gch so we can support seamless
// replacement into a build system already set up to be generating
// .gch files.
bool RenderedImplicitInclude = false;
for (arg_iterator it = Args.filtered_begin(options::OPT_clang_i_Group),
ie = Args.filtered_end(); it != ie; ++it) {
const Arg *A = it;
if (A->getOption().matches(options::OPT_include)) {
bool IsFirstImplicitInclude = !RenderedImplicitInclude;
RenderedImplicitInclude = true;
// Use PCH if the user requested it.
bool UsePCH = D.CCCUsePCH;
bool FoundPTH = false;
bool FoundPCH = false;
SmallString<128> P(A->getValue());
// We want the files to have a name like foo.h.pch. Add a dummy extension
// so that replace_extension does the right thing.
P += ".dummy";
if (UsePCH) {
llvm::sys::path::replace_extension(P, "pch");
if (llvm::sys::fs::exists(P.str()))
FoundPCH = true;
}
if (!FoundPCH) {
llvm::sys::path::replace_extension(P, "pth");
if (llvm::sys::fs::exists(P.str()))
FoundPTH = true;
}
if (!FoundPCH && !FoundPTH) {
llvm::sys::path::replace_extension(P, "gch");
if (llvm::sys::fs::exists(P.str())) {
FoundPCH = UsePCH;
FoundPTH = !UsePCH;
}
}
if (FoundPCH || FoundPTH) {
if (IsFirstImplicitInclude) {
A->claim();
if (UsePCH)
CmdArgs.push_back("-include-pch");
else
CmdArgs.push_back("-include-pth");
CmdArgs.push_back(Args.MakeArgString(P.str()));
continue;
} else {
// Ignore the PCH if not first on command line and emit warning.
D.Diag(diag::warn_drv_pch_not_first_include)
<< P.str() << A->getAsString(Args);
}
}
}
// Not translated, render as usual.
A->claim();
A->render(Args, CmdArgs);
}
Args.AddAllArgs(CmdArgs, options::OPT_D, options::OPT_U);
Args.AddAllArgs(CmdArgs, options::OPT_I_Group, options::OPT_F,
options::OPT_index_header_map);
// Add -Wp, and -Xassembler if using the preprocessor.
// FIXME: There is a very unfortunate problem here, some troubled
// souls abuse -Wp, to pass preprocessor options in gcc syntax. To
// really support that we would have to parse and then translate
// those options. :(
Args.AddAllArgValues(CmdArgs, options::OPT_Wp_COMMA,
options::OPT_Xpreprocessor);
// -I- is a deprecated GCC feature, reject it.
if (Arg *A = Args.getLastArg(options::OPT_I_))
D.Diag(diag::err_drv_I_dash_not_supported) << A->getAsString(Args);
// If we have a --sysroot, and don't have an explicit -isysroot flag, add an
// -isysroot to the CC1 invocation.
StringRef sysroot = C.getSysRoot();
if (sysroot != "") {
if (!Args.hasArg(options::OPT_isysroot)) {
CmdArgs.push_back("-isysroot");
CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
}
}
// Parse additional include paths from environment variables.
// FIXME: We should probably sink the logic for handling these from the
// frontend into the driver. It will allow deleting 4 otherwise unused flags.
// CPATH - included following the user specified includes (but prior to
// builtin and standard includes).
addDirectoryList(Args, CmdArgs, "-I", "CPATH");
// C_INCLUDE_PATH - system includes enabled when compiling C.
addDirectoryList(Args, CmdArgs, "-c-isystem", "C_INCLUDE_PATH");
// CPLUS_INCLUDE_PATH - system includes enabled when compiling C++.
addDirectoryList(Args, CmdArgs, "-cxx-isystem", "CPLUS_INCLUDE_PATH");
// OBJC_INCLUDE_PATH - system includes enabled when compiling ObjC.
addDirectoryList(Args, CmdArgs, "-objc-isystem", "OBJC_INCLUDE_PATH");
// OBJCPLUS_INCLUDE_PATH - system includes enabled when compiling ObjC++.
addDirectoryList(Args, CmdArgs, "-objcxx-isystem", "OBJCPLUS_INCLUDE_PATH");
// Add C++ include arguments, if needed.
if (types::isCXX(Inputs[0].getType()))
getToolChain().AddClangCXXStdlibIncludeArgs(Args, CmdArgs);
// Add system include arguments.
getToolChain().AddClangSystemIncludeArgs(Args, CmdArgs);
}
// FIXME: Move to target hook.
static bool isSignedCharDefault(const llvm::Triple &Triple) {
switch (Triple.getArch()) {
default:
return true;
case llvm::Triple::aarch64:
case llvm::Triple::aarch64_be:
case llvm::Triple::arm64:
case llvm::Triple::arm64_be:
case llvm::Triple::arm:
case llvm::Triple::armeb:
if (Triple.isOSDarwin() || Triple.isOSWindows())
return true;
return false;
case llvm::Triple::ppc:
case llvm::Triple::ppc64:
if (Triple.isOSDarwin())
return true;
return false;
case llvm::Triple::ppc64le:
case llvm::Triple::systemz:
case llvm::Triple::xcore:
return false;
}
}
static bool isNoCommonDefault(const llvm::Triple &Triple) {
switch (Triple.getArch()) {
default:
return false;
case llvm::Triple::xcore:
return true;
}
}
// Handle -mhwdiv=.
static void getARMHWDivFeatures(const Driver &D, const Arg *A,
const ArgList &Args,
std::vector<const char *> &Features) {
StringRef HWDiv = A->getValue();
if (HWDiv == "arm") {
Features.push_back("+hwdiv-arm");
Features.push_back("-hwdiv");
} else if (HWDiv == "thumb") {
Features.push_back("-hwdiv-arm");
Features.push_back("+hwdiv");
} else if (HWDiv == "arm,thumb" || HWDiv == "thumb,arm") {
Features.push_back("+hwdiv-arm");
Features.push_back("+hwdiv");
} else if (HWDiv == "none") {
Features.push_back("-hwdiv-arm");
Features.push_back("-hwdiv");
} else
D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
}
// Handle -mfpu=.
//
// FIXME: Centralize feature selection, defaulting shouldn't be also in the
// frontend target.
static void getARMFPUFeatures(const Driver &D, const Arg *A,
const ArgList &Args,
std::vector<const char *> &Features) {
StringRef FPU = A->getValue();
// Set the target features based on the FPU.
if (FPU == "fpa" || FPU == "fpe2" || FPU == "fpe3" || FPU == "maverick") {
// Disable any default FPU support.
Features.push_back("-vfp2");
Features.push_back("-vfp3");
Features.push_back("-neon");
} else if (FPU == "vfp") {
Features.push_back("+vfp2");
Features.push_back("-neon");
} else if (FPU == "vfp3-d16" || FPU == "vfpv3-d16") {
Features.push_back("+vfp3");
Features.push_back("+d16");
Features.push_back("-neon");
} else if (FPU == "vfp3" || FPU == "vfpv3") {
Features.push_back("+vfp3");
Features.push_back("-neon");
} else if (FPU == "vfp4-d16" || FPU == "vfpv4-d16") {
Features.push_back("+vfp4");
Features.push_back("+d16");
Features.push_back("-neon");
} else if (FPU == "vfp4" || FPU == "vfpv4") {
Features.push_back("+vfp4");
Features.push_back("-neon");
} else if (FPU == "fp4-sp-d16" || FPU == "fpv4-sp-d16") {
Features.push_back("+vfp4");
Features.push_back("+d16");
Features.push_back("+fp-only-sp");
Features.push_back("-neon");
} else if (FPU == "fp-armv8") {
Features.push_back("+fp-armv8");
Features.push_back("-neon");
Features.push_back("-crypto");
} else if (FPU == "neon-fp-armv8") {
Features.push_back("+fp-armv8");
Features.push_back("+neon");
Features.push_back("-crypto");
} else if (FPU == "crypto-neon-fp-armv8") {
Features.push_back("+fp-armv8");
Features.push_back("+neon");
Features.push_back("+crypto");
} else if (FPU == "neon") {
Features.push_back("+neon");
} else if (FPU == "none") {
Features.push_back("-vfp2");
Features.push_back("-vfp3");
Features.push_back("-vfp4");
Features.push_back("-fp-armv8");
Features.push_back("-crypto");
Features.push_back("-neon");
} else
D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
}
// Select the float ABI as determined by -msoft-float, -mhard-float, and
// -mfloat-abi=.
StringRef tools::arm::getARMFloatABI(const Driver &D, const ArgList &Args,
const llvm::Triple &Triple) {
StringRef FloatABI;
if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
options::OPT_mhard_float,
options::OPT_mfloat_abi_EQ)) {
if (A->getOption().matches(options::OPT_msoft_float))
FloatABI = "soft";
else if (A->getOption().matches(options::OPT_mhard_float))
FloatABI = "hard";
else {
FloatABI = A->getValue();
if (FloatABI != "soft" && FloatABI != "softfp" && FloatABI != "hard") {
D.Diag(diag::err_drv_invalid_mfloat_abi)
<< A->getAsString(Args);
FloatABI = "soft";
}
}
}
// If unspecified, choose the default based on the platform.
if (FloatABI.empty()) {
switch (Triple.getOS()) {
case llvm::Triple::Darwin:
case llvm::Triple::MacOSX:
case llvm::Triple::IOS: {
// Darwin defaults to "softfp" for v6 and v7.
//
// FIXME: Factor out an ARM class so we can cache the arch somewhere.
std::string ArchName =
arm::getLLVMArchSuffixForARM(arm::getARMTargetCPU(Args, Triple));
if (StringRef(ArchName).startswith("v6") ||
StringRef(ArchName).startswith("v7"))
FloatABI = "softfp";
else
FloatABI = "soft";
break;
}
// FIXME: this is invalid for WindowsCE
case llvm::Triple::Win32:
FloatABI = "hard";
break;
case llvm::Triple::FreeBSD:
switch(Triple.getEnvironment()) {
case llvm::Triple::GNUEABIHF:
FloatABI = "hard";
break;
default:
// FreeBSD defaults to soft float
FloatABI = "soft";
break;
}
break;
default:
switch(Triple.getEnvironment()) {
case llvm::Triple::GNUEABIHF:
FloatABI = "hard";
break;
case llvm::Triple::GNUEABI:
FloatABI = "softfp";
break;
case llvm::Triple::EABIHF:
FloatABI = "hard";
break;
case llvm::Triple::EABI:
// EABI is always AAPCS, and if it was not marked 'hard', it's softfp
FloatABI = "softfp";
break;
case llvm::Triple::Android: {
std::string ArchName =
arm::getLLVMArchSuffixForARM(arm::getARMTargetCPU(Args, Triple));
if (StringRef(ArchName).startswith("v7"))
FloatABI = "softfp";
else
FloatABI = "soft";
break;
}
default:
// Assume "soft", but warn the user we are guessing.
FloatABI = "soft";
if (Triple.getOS() != llvm::Triple::UnknownOS ||
!Triple.isOSBinFormatMachO())
D.Diag(diag::warn_drv_assuming_mfloat_abi_is) << "soft";
break;
}
}
}
return FloatABI;
}
static void getARMTargetFeatures(const Driver &D, const llvm::Triple &Triple,
const ArgList &Args,
std::vector<const char *> &Features,
bool ForAS) {
StringRef FloatABI = tools::arm::getARMFloatABI(D, Args, Triple);
if (!ForAS) {
// FIXME: Note, this is a hack, the LLVM backend doesn't actually use these
// yet (it uses the -mfloat-abi and -msoft-float options), and it is
// stripped out by the ARM target. We should probably pass this a new
// -target-option, which is handled by the -cc1/-cc1as invocation.
//
// FIXME2: For consistency, it would be ideal if we set up the target
// machine state the same when using the frontend or the assembler. We don't
// currently do that for the assembler, we pass the options directly to the
// backend and never even instantiate the frontend TargetInfo. If we did,
// and used its handleTargetFeatures hook, then we could ensure the
// assembler and the frontend behave the same.
// Use software floating point operations?
if (FloatABI == "soft")
Features.push_back("+soft-float");
// Use software floating point argument passing?
if (FloatABI != "hard")
Features.push_back("+soft-float-abi");
}
// Honor -mfpu=.
if (const Arg *A = Args.getLastArg(options::OPT_mfpu_EQ))
getARMFPUFeatures(D, A, Args, Features);
if (const Arg *A = Args.getLastArg(options::OPT_mhwdiv_EQ))
getARMHWDivFeatures(D, A, Args, Features);
// Setting -msoft-float effectively disables NEON because of the GCC
// implementation, although the same isn't true of VFP or VFP3.
if (FloatABI == "soft") {
Features.push_back("-neon");
// Also need to explicitly disable features which imply NEON.
Features.push_back("-crypto");
}
// En/disable crc
if (Arg *A = Args.getLastArg(options::OPT_mcrc,
options::OPT_mnocrc)) {
if (A->getOption().matches(options::OPT_mcrc))
Features.push_back("+crc");
else
Features.push_back("-crc");
}
}
void Clang::AddARMTargetArgs(const ArgList &Args,
ArgStringList &CmdArgs,
bool KernelOrKext) const {
const Driver &D = getToolChain().getDriver();
// Get the effective triple, which takes into account the deployment target.
std::string TripleStr = getToolChain().ComputeEffectiveClangTriple(Args);
llvm::Triple Triple(TripleStr);
std::string CPUName = arm::getARMTargetCPU(Args, Triple);
// Select the ABI to use.
//
// FIXME: Support -meabi.
const char *ABIName = nullptr;
if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) {
ABIName = A->getValue();
} else if (Triple.isOSBinFormatMachO()) {
// The backend is hardwired to assume AAPCS for M-class processors, ensure
// the frontend matches that.
if (Triple.getEnvironment() == llvm::Triple::EABI ||
(Triple.getOS() == llvm::Triple::UnknownOS &&
Triple.getObjectFormat() == llvm::Triple::MachO) ||
StringRef(CPUName).startswith("cortex-m")) {
ABIName = "aapcs";
} else {
ABIName = "apcs-gnu";
}
} else if (Triple.isOSWindows()) {
// FIXME: this is invalid for WindowsCE
ABIName = "aapcs";
} else {
// Select the default based on the platform.
switch(Triple.getEnvironment()) {
case llvm::Triple::Android:
case llvm::Triple::GNUEABI:
case llvm::Triple::GNUEABIHF:
ABIName = "aapcs-linux";
break;
case llvm::Triple::EABIHF:
case llvm::Triple::EABI:
ABIName = "aapcs";
break;
default:
ABIName = "apcs-gnu";
}
}
CmdArgs.push_back("-target-abi");
CmdArgs.push_back(ABIName);
// Determine floating point ABI from the options & target defaults.
StringRef FloatABI = tools::arm::getARMFloatABI(D, Args, Triple);
if (FloatABI == "soft") {
// Floating point operations and argument passing are soft.
//
// FIXME: This changes CPP defines, we need -target-soft-float.
CmdArgs.push_back("-msoft-float");
CmdArgs.push_back("-mfloat-abi");
CmdArgs.push_back("soft");
} else if (FloatABI == "softfp") {
// Floating point operations are hard, but argument passing is soft.
CmdArgs.push_back("-mfloat-abi");
CmdArgs.push_back("soft");
} else {
// Floating point operations and argument passing are hard.
assert(FloatABI == "hard" && "Invalid float abi!");
CmdArgs.push_back("-mfloat-abi");
CmdArgs.push_back("hard");
}
// Kernel code has more strict alignment requirements.
if (KernelOrKext) {
if (!Triple.isiOS() || Triple.isOSVersionLT(6)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-long-calls");
}
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-strict-align");
// The kext linker doesn't know how to deal with movw/movt.
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-use-movt=0");
}
// Setting -mno-global-merge disables the codegen global merge pass. Setting
// -mglobal-merge has no effect as the pass is enabled by default.
if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge,
options::OPT_mno_global_merge)) {
if (A->getOption().matches(options::OPT_mno_global_merge))
CmdArgs.push_back("-mno-global-merge");
}
if (!Args.hasFlag(options::OPT_mimplicit_float,
options::OPT_mno_implicit_float,
true))
CmdArgs.push_back("-no-implicit-float");
// llvm does not support reserving registers in general. There is support
// for reserving r9 on ARM though (defined as a platform-specific register
// in ARM EABI).
if (Args.hasArg(options::OPT_ffixed_r9)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-reserve-r9");
}
}
/// getAArch64TargetCPU - Get the (LLVM) name of the AArch64 cpu we are
/// targeting.
static std::string getAArch64TargetCPU(const ArgList &Args) {
Arg *A;
std::string CPU;
// If we have -mtune or -mcpu, use that.
if ((A = Args.getLastArg(options::OPT_mtune_EQ))) {
CPU = A->getValue();
} else if ((A = Args.getLastArg(options::OPT_mcpu_EQ))) {
StringRef Mcpu = A->getValue();
CPU = Mcpu.split("+").first;
}
// Handle CPU name is 'native'.
if (CPU == "native")
return llvm::sys::getHostCPUName();
else if (CPU.size())
return CPU;
// Make sure we pick "cyclone" if -arch is used.
// FIXME: Should this be picked by checking the target triple instead?
if (Args.getLastArg(options::OPT_arch))
return "cyclone";
return "generic";
}
void Clang::AddAArch64TargetArgs(const ArgList &Args,
ArgStringList &CmdArgs) const {
std::string TripleStr = getToolChain().ComputeEffectiveClangTriple(Args);
llvm::Triple Triple(TripleStr);
if (!Args.hasFlag(options::OPT_mred_zone, options::OPT_mno_red_zone, true) ||
Args.hasArg(options::OPT_mkernel) ||
Args.hasArg(options::OPT_fapple_kext))
CmdArgs.push_back("-disable-red-zone");
if (!Args.hasFlag(options::OPT_mimplicit_float,
options::OPT_mno_implicit_float, true))
CmdArgs.push_back("-no-implicit-float");
const char *ABIName = nullptr;
if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ))
ABIName = A->getValue();
else if (Triple.isOSDarwin())
ABIName = "darwinpcs";
else
ABIName = "aapcs";
CmdArgs.push_back("-target-abi");
CmdArgs.push_back(ABIName);
if (Args.hasArg(options::OPT_mstrict_align)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-aarch64-strict-align");
}
// Setting -mno-global-merge disables the codegen global merge pass. Setting
// -mglobal-merge has no effect as the pass is enabled by default.
if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge,
options::OPT_mno_global_merge)) {
if (A->getOption().matches(options::OPT_mno_global_merge))
CmdArgs.push_back("-mno-global-merge");
}
}
// Get CPU and ABI names. They are not independent
// so we have to calculate them together.
void mips::getMipsCPUAndABI(const ArgList &Args,
const llvm::Triple &Triple,
StringRef &CPUName,
StringRef &ABIName) {
const char *DefMips32CPU = "mips32r2";
const char *DefMips64CPU = "mips64r2";
// MIPS32r6 is the default for mips(el)?-img-linux-gnu and MIPS64r6 is the
// default for mips64(el)?-img-linux-gnu.
if (Triple.getVendor() == llvm::Triple::ImaginationTechnologies &&
Triple.getEnvironment() == llvm::Triple::GNU) {
DefMips32CPU = "mips32r6";
DefMips64CPU = "mips64r6";
}
if (Arg *A = Args.getLastArg(options::OPT_march_EQ,
options::OPT_mcpu_EQ))
CPUName = A->getValue();
if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) {
ABIName = A->getValue();
// Convert a GNU style Mips ABI name to the name
// accepted by LLVM Mips backend.
ABIName = llvm::StringSwitch<llvm::StringRef>(ABIName)
.Case("32", "o32")
.Case("64", "n64")
.Default(ABIName);
}
// Setup default CPU and ABI names.
if (CPUName.empty() && ABIName.empty()) {
switch (Triple.getArch()) {
default:
llvm_unreachable("Unexpected triple arch name");
case llvm::Triple::mips:
case llvm::Triple::mipsel:
CPUName = DefMips32CPU;
break;
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
CPUName = DefMips64CPU;
break;
}
}
if (ABIName.empty()) {
// Deduce ABI name from the target triple.
if (Triple.getArch() == llvm::Triple::mips ||
Triple.getArch() == llvm::Triple::mipsel)
ABIName = "o32";
else
ABIName = "n64";
}
if (CPUName.empty()) {
// Deduce CPU name from ABI name.
CPUName = llvm::StringSwitch<const char *>(ABIName)
.Cases("o32", "eabi", DefMips32CPU)
.Cases("n32", "n64", DefMips64CPU)
.Default("");
}
}
// Convert ABI name to the GNU tools acceptable variant.
static StringRef getGnuCompatibleMipsABIName(StringRef ABI) {
return llvm::StringSwitch<llvm::StringRef>(ABI)
.Case("o32", "32")
.Case("n64", "64")
.Default(ABI);
}
// Select the MIPS float ABI as determined by -msoft-float, -mhard-float,
// and -mfloat-abi=.
static StringRef getMipsFloatABI(const Driver &D, const ArgList &Args) {
StringRef FloatABI;
if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
options::OPT_mhard_float,
options::OPT_mfloat_abi_EQ)) {
if (A->getOption().matches(options::OPT_msoft_float))
FloatABI = "soft";
else if (A->getOption().matches(options::OPT_mhard_float))
FloatABI = "hard";
else {
FloatABI = A->getValue();
if (FloatABI != "soft" && FloatABI != "hard") {
D.Diag(diag::err_drv_invalid_mfloat_abi) << A->getAsString(Args);
FloatABI = "hard";
}
}
}
// If unspecified, choose the default based on the platform.
if (FloatABI.empty()) {
// Assume "hard", because it's a default value used by gcc.
// When we start to recognize specific target MIPS processors,
// we will be able to select the default more correctly.
FloatABI = "hard";
}
return FloatABI;
}
static void AddTargetFeature(const ArgList &Args,
std::vector<const char *> &Features,
OptSpecifier OnOpt, OptSpecifier OffOpt,
StringRef FeatureName) {
if (Arg *A = Args.getLastArg(OnOpt, OffOpt)) {
if (A->getOption().matches(OnOpt))
Features.push_back(Args.MakeArgString("+" + FeatureName));
else
Features.push_back(Args.MakeArgString("-" + FeatureName));
}
}
static void getMIPSTargetFeatures(const Driver &D, const llvm::Triple &Triple,
const ArgList &Args,
std::vector<const char *> &Features) {
StringRef CPUName;
StringRef ABIName;
mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName);
ABIName = getGnuCompatibleMipsABIName(ABIName);
// Always override the backend's default ABI.
std::string ABIFeature = llvm::StringSwitch<StringRef>(ABIName)
.Case("32", "+o32")
.Case("n32", "+n32")
.Case("64", "+n64")
.Case("eabi", "+eabi")
.Default(("+" + ABIName).str());
Features.push_back("-o32");
Features.push_back("-n64");
Features.push_back(Args.MakeArgString(ABIFeature));
StringRef FloatABI = getMipsFloatABI(D, Args);
if (FloatABI == "soft") {
// FIXME: Note, this is a hack. We need to pass the selected float
// mode to the MipsTargetInfoBase to define appropriate macros there.
// Now it is the only method.
Features.push_back("+soft-float");
}
if (Arg *A = Args.getLastArg(options::OPT_mnan_EQ)) {
StringRef Val = StringRef(A->getValue());
if (Val == "2008")
Features.push_back("+nan2008");
else if (Val == "legacy")
Features.push_back("-nan2008");
else
D.Diag(diag::err_drv_unsupported_option_argument)
<< A->getOption().getName() << Val;
}
AddTargetFeature(Args, Features, options::OPT_msingle_float,
options::OPT_mdouble_float, "single-float");
AddTargetFeature(Args, Features, options::OPT_mips16, options::OPT_mno_mips16,
"mips16");
AddTargetFeature(Args, Features, options::OPT_mmicromips,
options::OPT_mno_micromips, "micromips");
AddTargetFeature(Args, Features, options::OPT_mdsp, options::OPT_mno_dsp,
"dsp");
AddTargetFeature(Args, Features, options::OPT_mdspr2, options::OPT_mno_dspr2,
"dspr2");
AddTargetFeature(Args, Features, options::OPT_mmsa, options::OPT_mno_msa,
"msa");
// Add the last -mfp32/-mfpxx/-mfp64 or if none are given and the ABI is O32
// pass -mfpxx
if (Arg *A = Args.getLastArg(options::OPT_mfp32, options::OPT_mfpxx,
options::OPT_mfp64)) {
if (A->getOption().matches(options::OPT_mfp32))
Features.push_back(Args.MakeArgString("-fp64"));
else if (A->getOption().matches(options::OPT_mfpxx)) {
Features.push_back(Args.MakeArgString("+fpxx"));
Features.push_back(Args.MakeArgString("+nooddspreg"));
} else
Features.push_back(Args.MakeArgString("+fp64"));
} else if (mips::isFPXXDefault(Triple, CPUName, ABIName)) {
Features.push_back(Args.MakeArgString("+fpxx"));
Features.push_back(Args.MakeArgString("+nooddspreg"));
}
AddTargetFeature(Args, Features, options::OPT_mno_odd_spreg,
options::OPT_modd_spreg, "nooddspreg");
}
void Clang::AddMIPSTargetArgs(const ArgList &Args,
ArgStringList &CmdArgs) const {
const Driver &D = getToolChain().getDriver();
StringRef CPUName;
StringRef ABIName;
const llvm::Triple &Triple = getToolChain().getTriple();
mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName);
CmdArgs.push_back("-target-abi");
CmdArgs.push_back(ABIName.data());
StringRef FloatABI = getMipsFloatABI(D, Args);
if (FloatABI == "soft") {
// Floating point operations and argument passing are soft.
CmdArgs.push_back("-msoft-float");
CmdArgs.push_back("-mfloat-abi");
CmdArgs.push_back("soft");
}
else {
// Floating point operations and argument passing are hard.
assert(FloatABI == "hard" && "Invalid float abi!");
CmdArgs.push_back("-mfloat-abi");
CmdArgs.push_back("hard");
}
if (Arg *A = Args.getLastArg(options::OPT_mxgot, options::OPT_mno_xgot)) {
if (A->getOption().matches(options::OPT_mxgot)) {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-mxgot");
}
}
if (Arg *A = Args.getLastArg(options::OPT_mldc1_sdc1,
options::OPT_mno_ldc1_sdc1)) {
if (A->getOption().matches(options::OPT_mno_ldc1_sdc1)) {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-mno-ldc1-sdc1");
}
}
if (Arg *A = Args.getLastArg(options::OPT_mcheck_zero_division,
options::OPT_mno_check_zero_division)) {
if (A->getOption().matches(options::OPT_mno_check_zero_division)) {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-mno-check-zero-division");
}
}
if (Arg *A = Args.getLastArg(options::OPT_G)) {
StringRef v = A->getValue();
CmdArgs.push_back("-mllvm");
CmdArgs.push_back(Args.MakeArgString("-mips-ssection-threshold=" + v));
A->claim();
}
}
/// getPPCTargetCPU - Get the (LLVM) name of the PowerPC cpu we are targeting.
static std::string getPPCTargetCPU(const ArgList &Args) {
if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
StringRef CPUName = A->getValue();
if (CPUName == "native") {
std::string CPU = llvm::sys::getHostCPUName();
if (!CPU.empty() && CPU != "generic")
return CPU;
else
return "";
}
return llvm::StringSwitch<const char *>(CPUName)
.Case("common", "generic")
.Case("440", "440")
.Case("440fp", "440")
.Case("450", "450")
.Case("601", "601")
.Case("602", "602")
.Case("603", "603")
.Case("603e", "603e")
.Case("603ev", "603ev")
.Case("604", "604")
.Case("604e", "604e")
.Case("620", "620")
.Case("630", "pwr3")
.Case("G3", "g3")
.Case("7400", "7400")
.Case("G4", "g4")
.Case("7450", "7450")
.Case("G4+", "g4+")
.Case("750", "750")
.Case("970", "970")
.Case("G5", "g5")
.Case("a2", "a2")
.Case("a2q", "a2q")
.Case("e500mc", "e500mc")
.Case("e5500", "e5500")
.Case("power3", "pwr3")
.Case("power4", "pwr4")
.Case("power5", "pwr5")
.Case("power5x", "pwr5x")
.Case("power6", "pwr6")
.Case("power6x", "pwr6x")
.Case("power7", "pwr7")
.Case("power8", "pwr8")
.Case("pwr3", "pwr3")
.Case("pwr4", "pwr4")
.Case("pwr5", "pwr5")
.Case("pwr5x", "pwr5x")
.Case("pwr6", "pwr6")
.Case("pwr6x", "pwr6x")
.Case("pwr7", "pwr7")
.Case("pwr8", "pwr8")
.Case("powerpc", "ppc")
.Case("powerpc64", "ppc64")
.Case("powerpc64le", "ppc64le")
.Default("");
}
return "";
}
static void getPPCTargetFeatures(const ArgList &Args,
std::vector<const char *> &Features) {
for (arg_iterator it = Args.filtered_begin(options::OPT_m_ppc_Features_Group),
ie = Args.filtered_end();
it != ie; ++it) {
StringRef Name = (*it)->getOption().getName();
(*it)->claim();
// Skip over "-m".
assert(Name.startswith("m") && "Invalid feature name.");
Name = Name.substr(1);
bool IsNegative = Name.startswith("no-");
if (IsNegative)
Name = Name.substr(3);
// Note that gcc calls this mfcrf and LLVM calls this mfocrf so we
// pass the correct option to the backend while calling the frontend
// option the same.
// TODO: Change the LLVM backend option maybe?
if (Name == "mfcrf")
Name = "mfocrf";
Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
}
// Altivec is a bit weird, allow overriding of the Altivec feature here.
AddTargetFeature(Args, Features, options::OPT_faltivec,
options::OPT_fno_altivec, "altivec");
}
/// Get the (LLVM) name of the R600 gpu we are targeting.
static std::string getR600TargetGPU(const ArgList &Args) {
if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
const char *GPUName = A->getValue();
return llvm::StringSwitch<const char *>(GPUName)
.Cases("rv630", "rv635", "r600")
.Cases("rv610", "rv620", "rs780", "rs880")
.Case("rv740", "rv770")
.Case("palm", "cedar")
.Cases("sumo", "sumo2", "sumo")
.Case("hemlock", "cypress")
.Case("aruba", "cayman")
.Default(GPUName);
}
return "";
}
static void getSparcTargetFeatures(const ArgList &Args,
std::vector<const char *> &Features) {
bool SoftFloatABI = true;
if (Arg *A =
Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float)) {
if (A->getOption().matches(options::OPT_mhard_float))
SoftFloatABI = false;
}
if (SoftFloatABI)
Features.push_back("+soft-float");
}
void Clang::AddSparcTargetArgs(const ArgList &Args,
ArgStringList &CmdArgs) const {
const Driver &D = getToolChain().getDriver();
// Select the float ABI as determined by -msoft-float and -mhard-float.
StringRef FloatABI;
if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
options::OPT_mhard_float)) {
if (A->getOption().matches(options::OPT_msoft_float))
FloatABI = "soft";
else if (A->getOption().matches(options::OPT_mhard_float))
FloatABI = "hard";
}
// If unspecified, choose the default based on the platform.
if (FloatABI.empty()) {
// Assume "soft", but warn the user we are guessing.
FloatABI = "soft";
D.Diag(diag::warn_drv_assuming_mfloat_abi_is) << "soft";
}
if (FloatABI == "soft") {
// Floating point operations and argument passing are soft.
//
// FIXME: This changes CPP defines, we need -target-soft-float.
CmdArgs.push_back("-msoft-float");
} else {
assert(FloatABI == "hard" && "Invalid float abi!");
CmdArgs.push_back("-mhard-float");
}
}
const char *getCanonicalGenxTargetCPU(std::string CPU) {
// As side-effect of the way we accept the CM command line options for
// backwards compatiblity, the CPU string may be prefixed by '=' or ':'.
// If so, remove the prefix character.
size_t CPUNameStart = CPU.find_first_not_of("=:");
if (CPUNameStart == std::string::npos)
CPUNameStart = 0;
std::string CPUName = CPU.substr(CPUNameStart);
std::transform(CPUName.begin(), CPUName.end(), CPUName.begin(), ::toupper);
// Ensure the CPU name is in canonical form
const char *CanonicalCPU = llvm::StringSwitch<const char*>(CPUName)
.Cases("GEN7_5", "HSW", "HSW")
.Cases("GEN8", "BDW", "BDW")
.Cases("GEN8LP", "GEN8_5", "CHV", "CHV")
.Cases("GEN9", "SKL", "SKL")
.Cases("GEN9LP", "BXT", "BXT")
.Cases("GEN9_5", "GEN9P5", "KBL", "KBL")
.Cases("GEN9_5LP", "GEN9P5LP", "GLK", "GLK")
.Cases("GEN10", "CNL", "CNL")
.Default("");
return CanonicalCPU;
}
const char *getFinalizerPlatform(const char *CPU) {
// Unfortunately, the finalizer doesn't support all platforms, so we map
// any unsupported platforms to the most appropriate supported one.
const char *FinalizerPlatform = llvm::StringSwitch<const char*>(CPU)
.Case("KBL", "SKL")
.Case("GLK", "BXT")
.Default(CPU);
return FinalizerPlatform;
}
static bool mayDisableIGA(std::string CPU) {
return false;
}
static const char *getGenxTargetCPU(const ArgList &Args) {
// GenX target CPU may be specified using one of /Qxcm_jit_target=xxx,
// -mcpu=xxx, or -march=xxx.
if (const Arg *A = Args.getLastArg(options::OPT_Qxcm_jit_target)) {
const char *Jit_CPU = getCanonicalGenxTargetCPU(A->getValue());
if (strlen(Jit_CPU))
return Jit_CPU;
}
if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
const char *Mcpu_CPU = getCanonicalGenxTargetCPU(A->getValue());
if (strlen(Mcpu_CPU))
return Mcpu_CPU;
}
if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
const char *March_CPU = getCanonicalGenxTargetCPU(A->getValue());
if (strlen(March_CPU))
return March_CPU;
}
// no GenX target CPU specified
return "";
}
static const char *getSystemZTargetCPU(const ArgList &Args) {
if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
return A->getValue();
return "z10";
}
static const char *getX86TargetCPU(const ArgList &Args,
const llvm::Triple &Triple) {
if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
if (StringRef(A->getValue()) != "native") {
if (Triple.isOSDarwin() && Triple.getArchName() == "x86_64h")
return "core-avx2";
return A->getValue();
}
// CPU is expected to be a canonical Genx target name.
// FIXME: Reject attempts to use -march=native unless the target matches
// the host.
//
// FIXME: We should also incorporate the detected target features for use
// with -native.
std::string CPU = llvm::sys::getHostCPUName();
if (!CPU.empty() && CPU != "generic")
return Args.MakeArgString(CPU);
}
// Select the default CPU if none was given (or detection failed).
if (Triple.getArch() != llvm::Triple::x86_64 &&
Triple.getArch() != llvm::Triple::x86)
return nullptr; // This routine is only handling x86 targets.
bool Is64Bit = Triple.getArch() == llvm::Triple::x86_64;
// FIXME: Need target hooks.
if (Triple.isOSDarwin()) {
if (Triple.getArchName() == "x86_64h")
return "core-avx2";
return Is64Bit ? "core2" : "yonah";
}
// On Android use targets compatible with gcc
if (Triple.getEnvironment() == llvm::Triple::Android)
return Is64Bit ? "x86-64" : "i686";
// Everything else goes to x86-64 in 64-bit mode.
if (Is64Bit)
return "x86-64";
switch (Triple.getOS()) {
case llvm::Triple::FreeBSD:
case llvm::Triple::NetBSD:
case llvm::Triple::OpenBSD:
return "i486";
case llvm::Triple::Haiku:
return "i586";
case llvm::Triple::Bitrig:
return "i686";
default:
// Fallback to p4.
return "pentium4";
}
}
static std::string getCPUName(const ArgList &Args, const llvm::Triple &T) {
switch(T.getArch()) {
default:
return "";
case llvm::Triple::aarch64:
case llvm::Triple::aarch64_be:
case llvm::Triple::arm64:
case llvm::Triple::arm64_be:
return getAArch64TargetCPU(Args);
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb:
return arm::getARMTargetCPU(Args, T);
case llvm::Triple::genx32:
case llvm::Triple::genx64:
return getGenxTargetCPU(Args);
case llvm::Triple::mips:
case llvm::Triple::mipsel:
case llvm::Triple::mips64:
case llvm::Triple::mips64el: {
StringRef CPUName;
StringRef ABIName;
mips::getMipsCPUAndABI(Args, T, CPUName, ABIName);
return CPUName;
}
case llvm::Triple::ppc:
case llvm::Triple::ppc64:
case llvm::Triple::ppc64le: {
std::string TargetCPUName = getPPCTargetCPU(Args);
// LLVM may default to generating code for the native CPU,
// but, like gcc, we default to a more generic option for
// each architecture. (except on Darwin)
if (TargetCPUName.empty() && !T.isOSDarwin()) {
if (T.getArch() == llvm::Triple::ppc64)
TargetCPUName = "ppc64";
else if (T.getArch() == llvm::Triple::ppc64le)
TargetCPUName = "ppc64le";
else
TargetCPUName = "ppc";
}
return TargetCPUName;
}
case llvm::Triple::sparc:
case llvm::Triple::sparcv9:
if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
return A->getValue();
return "";
case llvm::Triple::x86:
case llvm::Triple::x86_64:
return getX86TargetCPU(Args, T);
case llvm::Triple::hexagon:
return "hexagon" + toolchains::Hexagon_TC::GetTargetCPU(Args).str();
case llvm::Triple::systemz:
return getSystemZTargetCPU(Args);
case llvm::Triple::r600:
return getR600TargetGPU(Args);
}
}
static void AddGoldPlugin(const ToolChain &ToolChain, const ArgList &Args,
ArgStringList &CmdArgs) {
// Tell the linker to load the plugin. This has to come before AddLinkerInputs
// as gold requires -plugin to come before any -plugin-opt that -Wl might
// forward.
CmdArgs.push_back("-plugin");
std::string Plugin = ToolChain.getDriver().Dir + "/../lib/LLVMgold.so";
CmdArgs.push_back(Args.MakeArgString(Plugin));
// Try to pass driver level flags relevant to LTO code generation down to
// the plugin.
// Handle flags for selecting CPU variants.
std::string CPU = getCPUName(Args, ToolChain.getTriple());
if (!CPU.empty())
CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=mcpu=") + CPU));
}
static void getX86TargetFeatures(const Driver & D,
const llvm::Triple &Triple,
const ArgList &Args,
std::vector<const char *> &Features) {
if (Triple.getArchName() == "x86_64h") {
// x86_64h implies quite a few of the more modern subtarget features
// for Haswell class CPUs, but not all of them. Opt-out of a few.
Features.push_back("-rdrnd");
Features.push_back("-aes");
Features.push_back("-pclmul");
Features.push_back("-rtm");
Features.push_back("-hle");
Features.push_back("-fsgsbase");
}
// Add features to comply with gcc on Android
if (Triple.getEnvironment() == llvm::Triple::Android) {
if (Triple.getArch() == llvm::Triple::x86_64) {
Features.push_back("+sse4.2");
Features.push_back("+popcnt");
} else
Features.push_back("+ssse3");
}
// Set features according to the -arch flag on MSVC
if (Arg *A = Args.getLastArg(options::OPT__SLASH_arch)) {
StringRef Arch = A->getValue();
bool ArchUsed = false;
// First, look for flags that are shared in x86 and x86-64.
if (Triple.getArch() == llvm::Triple::x86_64 ||
Triple.getArch() == llvm::Triple::x86) {
if (Arch == "AVX" || Arch == "AVX2") {
ArchUsed = true;
Features.push_back(Args.MakeArgString("+" + Arch.lower()));
}
}
// Then, look for x86-specific flags.
if (Triple.getArch() == llvm::Triple::x86) {
if (Arch == "IA32") {
ArchUsed = true;
} else if (Arch == "SSE" || Arch == "SSE2") {
ArchUsed = true;
Features.push_back(Args.MakeArgString("+" + Arch.lower()));
}
}
if (!ArchUsed)
D.Diag(clang::diag::warn_drv_unused_argument) << A->getAsString(Args);
}
// Now add any that the user explicitly requested on the command line,
// which may override the defaults.
for (arg_iterator it = Args.filtered_begin(options::OPT_m_x86_Features_Group),
ie = Args.filtered_end();
it != ie; ++it) {
StringRef Name = (*it)->getOption().getName();
(*it)->claim();
// Skip over "-m".
assert(Name.startswith("m") && "Invalid feature name.");
Name = Name.substr(1);
bool IsNegative = Name.startswith("no-");
if (IsNegative)
Name = Name.substr(3);
Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
}
}
void Clang::AddX86TargetArgs(const ArgList &Args,
ArgStringList &CmdArgs) const {
if (!Args.hasFlag(options::OPT_mred_zone,
options::OPT_mno_red_zone,
true) ||
Args.hasArg(options::OPT_mkernel) ||
Args.hasArg(options::OPT_fapple_kext))
CmdArgs.push_back("-disable-red-zone");
// Default to avoid implicit floating-point for kernel/kext code, but allow
// that to be overridden with -mno-soft-float.
bool NoImplicitFloat = (Args.hasArg(options::OPT_mkernel) ||
Args.hasArg(options::OPT_fapple_kext));
if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
options::OPT_mno_soft_float,
options::OPT_mimplicit_float,
options::OPT_mno_implicit_float)) {
const Option &O = A->getOption();
NoImplicitFloat = (O.matches(options::OPT_mno_implicit_float) ||
O.matches(options::OPT_msoft_float));
}
if (NoImplicitFloat)
CmdArgs.push_back("-no-implicit-float");
if (Arg *A = Args.getLastArg(options::OPT_masm_EQ)) {
StringRef Value = A->getValue();
if (Value == "intel" || Value == "att") {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back(Args.MakeArgString("-x86-asm-syntax=" + Value));
} else {
getToolChain().getDriver().Diag(diag::err_drv_unsupported_option_argument)
<< A->getOption().getName() << Value;
}
}
}
static inline bool HasPICArg(const ArgList &Args) {
return Args.hasArg(options::OPT_fPIC)
|| Args.hasArg(options::OPT_fpic);
}
static Arg *GetLastSmallDataThresholdArg(const ArgList &Args) {
return Args.getLastArg(options::OPT_G,
options::OPT_G_EQ,
options::OPT_msmall_data_threshold_EQ);
}
static std::string GetHexagonSmallDataThresholdValue(const ArgList &Args) {
std::string value;
if (HasPICArg(Args))
value = "0";
else if (Arg *A = GetLastSmallDataThresholdArg(Args)) {
value = A->getValue();
A->claim();
}
return value;
}
void Clang::AddHexagonTargetArgs(const ArgList &Args,
ArgStringList &CmdArgs) const {
CmdArgs.push_back("-fno-signed-char");
CmdArgs.push_back("-mqdsp6-compat");
CmdArgs.push_back("-Wreturn-type");
std::string SmallDataThreshold = GetHexagonSmallDataThresholdValue(Args);
if (!SmallDataThreshold.empty()) {
CmdArgs.push_back ("-mllvm");
CmdArgs.push_back(Args.MakeArgString(
"-hexagon-small-data-threshold=" + SmallDataThreshold));
}
if (!Args.hasArg(options::OPT_fno_short_enums))
CmdArgs.push_back("-fshort-enums");
if (Args.getLastArg(options::OPT_mieee_rnd_near)) {
CmdArgs.push_back ("-mllvm");
CmdArgs.push_back ("-enable-hexagon-ieee-rnd-near");
}
CmdArgs.push_back ("-mllvm");
CmdArgs.push_back ("-machine-sink-split=0");
}
void Clang::AddGenXTargetArgs(const ArgList &Args,
ArgStringList &CmdArgs) const {
if (Args.hasArg(options::OPT_mCM_no_input_reorder)) {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-enable-kernel-arg-reordering=false");
}
}
// Decode AArch64 features from string like +[no]featureA+[no]featureB+...
static bool DecodeAArch64Features(const Driver &D, const StringRef &text,
std::vector<const char *> &Features) {
SmallVector<StringRef, 8> Split;
text.split(Split, StringRef("+"), -1, false);
for (unsigned I = 0, E = Split.size(); I != E; ++I) {
const char *result = llvm::StringSwitch<const char *>(Split[I])
.Case("fp", "+fp-armv8")
.Case("simd", "+neon")
.Case("crc", "+crc")
.Case("crypto", "+crypto")
.Case("nofp", "-fp-armv8")
.Case("nosimd", "-neon")
.Case("nocrc", "-crc")
.Case("nocrypto", "-crypto")
.Default(nullptr);
if (result)
Features.push_back(result);
else if (Split[I] == "neon" || Split[I] == "noneon")
D.Diag(diag::err_drv_no_neon_modifier);
else
return false;
}
return true;
}
// Check if the CPU name and feature modifiers in -mcpu are legal. If yes,
// decode CPU and feature.
static bool DecodeAArch64Mcpu(const Driver &D, StringRef Mcpu, StringRef &CPU,
std::vector<const char *> &Features) {
std::pair<StringRef, StringRef> Split = Mcpu.split("+");
CPU = Split.first;
if (CPU == "cyclone" || CPU == "cortex-a53" || CPU == "cortex-a57") {
Features.push_back("+neon");
Features.push_back("+crc");
Features.push_back("+crypto");
} else if (CPU == "generic") {
Features.push_back("+neon");
} else {
return false;
}
if (Split.second.size() && !DecodeAArch64Features(D, Split.second, Features))
return false;
return true;
}
static bool
getAArch64ArchFeaturesFromMarch(const Driver &D, StringRef March,
const ArgList &Args,
std::vector<const char *> &Features) {
std::pair<StringRef, StringRef> Split = March.split("+");
if (Split.first != "armv8-a")
return false;
if (Split.second.size() && !DecodeAArch64Features(D, Split.second, Features))
return false;
return true;
}
static bool
getAArch64ArchFeaturesFromMcpu(const Driver &D, StringRef Mcpu,
const ArgList &Args,
std::vector<const char *> &Features) {
StringRef CPU;
if (!DecodeAArch64Mcpu(D, Mcpu, CPU, Features))
return false;
return true;
}
static bool
getAArch64MicroArchFeaturesFromMtune(const Driver &D, StringRef Mtune,
const ArgList &Args,
std::vector<const char *> &Features) {
// Handle CPU name is 'native'.
if (Mtune == "native")
Mtune = llvm::sys::getHostCPUName();
if (Mtune == "cyclone") {
Features.push_back("+zcm");
Features.push_back("+zcz");
}
return true;
}
static bool
getAArch64MicroArchFeaturesFromMcpu(const Driver &D, StringRef Mcpu,
const ArgList &Args,
std::vector<const char *> &Features) {
StringRef CPU;
std::vector<const char *> DecodedFeature;
if (!DecodeAArch64Mcpu(D, Mcpu, CPU, DecodedFeature))
return false;
return getAArch64MicroArchFeaturesFromMtune(D, CPU, Args, Features);
}
static void getAArch64TargetFeatures(const Driver &D, const ArgList &Args,
std::vector<const char *> &Features) {
Arg *A;
bool success = true;
// Enable NEON by default.
Features.push_back("+neon");
if ((A = Args.getLastArg(options::OPT_march_EQ)))
success = getAArch64ArchFeaturesFromMarch(D, A->getValue(), Args, Features);
else if ((A = Args.getLastArg(options::OPT_mcpu_EQ)))
success = getAArch64ArchFeaturesFromMcpu(D, A->getValue(), Args, Features);
if (success && (A = Args.getLastArg(options::OPT_mtune_EQ)))
success =
getAArch64MicroArchFeaturesFromMtune(D, A->getValue(), Args, Features);
else if (success && (A = Args.getLastArg(options::OPT_mcpu_EQ)))
success =
getAArch64MicroArchFeaturesFromMcpu(D, A->getValue(), Args, Features);
if (!success)
D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
if (Args.getLastArg(options::OPT_mgeneral_regs_only)) {
Features.push_back("-fp-armv8");
Features.push_back("-crypto");
Features.push_back("-neon");
}
// En/disable crc
if (Arg *A = Args.getLastArg(options::OPT_mcrc,
options::OPT_mnocrc)) {
if (A->getOption().matches(options::OPT_mcrc))
Features.push_back("+crc");
else
Features.push_back("-crc");
}
}
static void getGenXTargetFeatures(const Driver &D,
const llvm::Triple &Triple,
const ArgList &Args,
std::vector<const char *> &Features) {
// svmptr_t may be 32 or 64 bit, and is specified by the -cm_svmptr option.
// Default is set to the same value as the compiler's default pointer size.
const char *svmptr = (sizeof(int*) == 8) ? "+svmptr-64" : "-svmptr-64";
if (Arg *A = Args.getLastArg(options::OPT_cm_svmptr)) {
const char *Value = A->getValue();
if ((Value[0] == '=') || (Value[0] == ':'))
Value = &Value[1];
if (strcmp(Value, "64") == 0)
svmptr = "+svmptr-64";
else if (strcmp(Value, "32") == 0)
svmptr = "-svmptr-64";
else
D.Diag(diag::err_cm_svmptr_value_invalid) << Value ;
}
Features.push_back(svmptr);
if (Args.getLastArg(options::OPT_mdump_regalloc))
Features.push_back("+dump_regalloc");
if (Args.getLastArg(options::OPT_mCM_disable_jmpi))
Features.push_back("+disable_jmpi");
if (Args.getLastArg(options::OPT_mCM_warn_callable))
Features.push_back("+warn_callable");
if (Args.getLastArg(options::OPT_mCM_no_vector_decomposition))
Features.push_back("+disable_vec_decomp");
}
static void getTargetFeatures(const Driver &D, const llvm::Triple &Triple,
const ArgList &Args, ArgStringList &CmdArgs,
bool ForAS) {
std::vector<const char *> Features;
switch (Triple.getArch()) {
default:
break;
case llvm::Triple::mips:
case llvm::Triple::mipsel:
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
getMIPSTargetFeatures(D, Triple, Args, Features);
break;
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb:
getARMTargetFeatures(D, Triple, Args, Features, ForAS);
break;
case llvm::Triple::ppc:
case llvm::Triple::ppc64:
case llvm::Triple::ppc64le:
getPPCTargetFeatures(Args, Features);
break;
case llvm::Triple::sparc:
getSparcTargetFeatures(Args, Features);
break;
case llvm::Triple::aarch64:
case llvm::Triple::aarch64_be:
case llvm::Triple::arm64:
case llvm::Triple::arm64_be:
getAArch64TargetFeatures(D, Args, Features);
break;
case llvm::Triple::x86:
case llvm::Triple::x86_64:
getX86TargetFeatures(D, Triple, Args, Features);
break;
case llvm::Triple::genx32:
case llvm::Triple::genx64:
getGenXTargetFeatures(D, Triple, Args, Features);
break;
}
// Find the last of each feature.
llvm::StringMap<unsigned> LastOpt;
for (unsigned I = 0, N = Features.size(); I < N; ++I) {
const char *Name = Features[I];
assert(Name[0] == '-' || Name[0] == '+');
LastOpt[Name + 1] = I;
}
for (unsigned I = 0, N = Features.size(); I < N; ++I) {
// If this feature was overridden, ignore it.
const char *Name = Features[I];
llvm::StringMap<unsigned>::iterator LastI = LastOpt.find(Name + 1);
assert(LastI != LastOpt.end());
unsigned Last = LastI->second;
if (Last != I)
continue;
CmdArgs.push_back("-target-feature");
CmdArgs.push_back(Name);
}
}
static bool
shouldUseExceptionTablesForObjCExceptions(const ObjCRuntime &runtime,
const llvm::Triple &Triple) {
// We use the zero-cost exception tables for Objective-C if the non-fragile
// ABI is enabled or when compiling for x86_64 and ARM on Snow Leopard and
// later.
if (runtime.isNonFragile())
return true;
if (!Triple.isMacOSX())
return false;
return (!Triple.isMacOSXVersionLT(10,5) &&
(Triple.getArch() == llvm::Triple::x86_64 ||
Triple.getArch() == llvm::Triple::arm));
}
namespace {
struct ExceptionSettings {
bool ExceptionsEnabled;
bool ShouldUseExceptionTables;
ExceptionSettings() : ExceptionsEnabled(false),
ShouldUseExceptionTables(false) {}
};
} // end anonymous namespace.
// exceptionSettings() exists to share the logic between -cc1 and linker
// invocations.
static ExceptionSettings exceptionSettings(const ArgList &Args,
const llvm::Triple &Triple) {
ExceptionSettings ES;
// Are exceptions enabled by default?
ES.ExceptionsEnabled = (Triple.getArch() != llvm::Triple::xcore);
// This keeps track of whether exceptions were explicitly turned on or off.
bool DidHaveExplicitExceptionFlag = false;
if (Arg *A = Args.getLastArg(options::OPT_fexceptions,
options::OPT_fno_exceptions)) {
if (A->getOption().matches(options::OPT_fexceptions))
ES.ExceptionsEnabled = true;
else
ES.ExceptionsEnabled = false;
DidHaveExplicitExceptionFlag = true;
}
// Exception tables and cleanups can be enabled with -fexceptions even if the
// language itself doesn't support exceptions.
if (ES.ExceptionsEnabled && DidHaveExplicitExceptionFlag)
ES.ShouldUseExceptionTables = true;
return ES;
}
/// addExceptionArgs - Adds exception related arguments to the driver command
/// arguments. There's a master flag, -fexceptions and also language specific
/// flags to enable/disable C++ and Objective-C exceptions.
/// This makes it possible to for example disable C++ exceptions but enable
/// Objective-C exceptions.
static void addExceptionArgs(const ArgList &Args, types::ID InputType,
const llvm::Triple &Triple,
bool KernelOrKext,
const ObjCRuntime &objcRuntime,
ArgStringList &CmdArgs) {
if (KernelOrKext) {
// -mkernel and -fapple-kext imply no exceptions, so claim exception related
// arguments now to avoid warnings about unused arguments.
Args.ClaimAllArgs(options::OPT_fexceptions);
Args.ClaimAllArgs(options::OPT_fno_exceptions);
Args.ClaimAllArgs(options::OPT_fobjc_exceptions);
Args.ClaimAllArgs(options::OPT_fno_objc_exceptions);
Args.ClaimAllArgs(options::OPT_fcxx_exceptions);
Args.ClaimAllArgs(options::OPT_fno_cxx_exceptions);
return;
}
// Gather the exception settings from the command line arguments.
ExceptionSettings ES = exceptionSettings(Args, Triple);
// Obj-C exceptions are enabled by default, regardless of -fexceptions. This
// is not necessarily sensible, but follows GCC.
if (types::isObjC(InputType) &&
Args.hasFlag(options::OPT_fobjc_exceptions,
options::OPT_fno_objc_exceptions,
true)) {
CmdArgs.push_back("-fobjc-exceptions");
ES.ShouldUseExceptionTables |=
shouldUseExceptionTablesForObjCExceptions(objcRuntime, Triple);
}
if (types::isCXX(InputType)) {
bool CXXExceptionsEnabled = ES.ExceptionsEnabled;
if (Arg *A = Args.getLastArg(options::OPT_fcxx_exceptions,
options::OPT_fno_cxx_exceptions,
options::OPT_fexceptions,
options::OPT_fno_exceptions)) {
if (A->getOption().matches(options::OPT_fcxx_exceptions))
CXXExceptionsEnabled = true;
else if (A->getOption().matches(options::OPT_fno_cxx_exceptions))
CXXExceptionsEnabled = false;
}
if (CXXExceptionsEnabled) {
CmdArgs.push_back("-fcxx-exceptions");
ES.ShouldUseExceptionTables = true;
}
}
if (ES.ShouldUseExceptionTables)
CmdArgs.push_back("-fexceptions");
}
static bool ShouldDisableAutolink(const ArgList &Args,
const ToolChain &TC) {
bool Default = true;
if (TC.getTriple().isOSDarwin()) {
// The native darwin assembler doesn't support the linker_option directives,
// so we disable them if we think the .s file will be passed to it.
Default = TC.useIntegratedAs();
}
return !Args.hasFlag(options::OPT_fautolink, options::OPT_fno_autolink,
Default);
}
static bool ShouldDisableDwarfDirectory(const ArgList &Args,
const ToolChain &TC) {
bool UseDwarfDirectory = Args.hasFlag(options::OPT_fdwarf_directory_asm,
options::OPT_fno_dwarf_directory_asm,
TC.useIntegratedAs());
return !UseDwarfDirectory;
}
/// \brief Check whether the given input tree contains any compilation actions.
static bool ContainsCompileAction(const Action *A) {
if (isa<CompileJobAction>(A))
return true;
for (const auto &Act : *A)
if (ContainsCompileAction(Act))
return true;
return false;
}
/// \brief Check if -relax-all should be passed to the internal assembler.
/// This is done by default when compiling non-assembler source with -O0.
static bool UseRelaxAll(Compilation &C, const ArgList &Args) {
bool RelaxDefault = true;
if (Arg *A = Args.getLastArg(options::OPT_O_Group))
RelaxDefault = A->getOption().matches(options::OPT_O0);
if (RelaxDefault) {
RelaxDefault = false;
for (const auto &Act : C.getActions()) {
if (ContainsCompileAction(Act)) {
RelaxDefault = true;
break;
}
}
}
return Args.hasFlag(options::OPT_mrelax_all, options::OPT_mno_relax_all,
RelaxDefault);
}
static void CollectArgsForIntegratedAssembler(Compilation &C,
const ArgList &Args,
ArgStringList &CmdArgs,
const Driver &D) {
if (UseRelaxAll(C, Args))
CmdArgs.push_back("-mrelax-all");
// When passing -I arguments to the assembler we sometimes need to
// unconditionally take the next argument. For example, when parsing
// '-Wa,-I -Wa,foo' we need to accept the -Wa,foo arg after seeing the
// -Wa,-I arg and when parsing '-Wa,-I,foo' we need to accept the 'foo'
// arg after parsing the '-I' arg.
bool TakeNextArg = false;
// When using an integrated assembler, translate -Wa, and -Xassembler
// options.
bool CompressDebugSections = false;
for (arg_iterator it = Args.filtered_begin(options::OPT_Wa_COMMA,
options::OPT_Xassembler),
ie = Args.filtered_end(); it != ie; ++it) {
const Arg *A = *it;
A->claim();
for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
StringRef Value = A->getValue(i);
if (TakeNextArg) {
CmdArgs.push_back(Value.data());
TakeNextArg = false;
continue;
}
if (Value == "-force_cpusubtype_ALL") {
// Do nothing, this is the default and we don't support anything else.
} else if (Value == "-L") {
CmdArgs.push_back("-msave-temp-labels");
} else if (Value == "--fatal-warnings") {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-fatal-assembler-warnings");
} else if (Value == "--noexecstack") {
CmdArgs.push_back("-mnoexecstack");
} else if (Value == "-compress-debug-sections" ||
Value == "--compress-debug-sections") {
CompressDebugSections = true;
} else if (Value == "-nocompress-debug-sections" ||
Value == "--nocompress-debug-sections") {
CompressDebugSections = false;
} else if (Value.startswith("-I")) {
CmdArgs.push_back(Value.data());
// We need to consume the next argument if the current arg is a plain
// -I. The next arg will be the include directory.
if (Value == "-I")
TakeNextArg = true;
} else if (Value.startswith("-gdwarf-")) {
CmdArgs.push_back(Value.data());
} else {
D.Diag(diag::err_drv_unsupported_option_argument)
<< A->getOption().getName() << Value;
}
}
}
if (CompressDebugSections) {
if (llvm::zlib::isAvailable())
CmdArgs.push_back("-compress-debug-sections");
else
D.Diag(diag::warn_debug_compression_unavailable);
}
}
// Until ARM libraries are build separately, we have them all in one library
static StringRef getArchNameForCompilerRTLib(const ToolChain &TC) {
if (TC.getArch() == llvm::Triple::arm ||
TC.getArch() == llvm::Triple::armeb)
return "arm";
else
return TC.getArchName();
}
static SmallString<128> getCompilerRTLibDir(const ToolChain &TC) {
// The runtimes are located in the OS-specific resource directory.
SmallString<128> Res(TC.getDriver().ResourceDir);
const llvm::Triple &Triple = TC.getTriple();
// TC.getOS() yield "freebsd10.0" whereas "freebsd" is expected.
StringRef OSLibName = (Triple.getOS() == llvm::Triple::FreeBSD) ?
"freebsd" : TC.getOS();
llvm::sys::path::append(Res, "lib", OSLibName);
return Res;
}
// This adds the static libclang_rt.builtins-arch.a directly to the command line
// FIXME: Make sure we can also emit shared objects if they're requested
// and available, check for possible errors, etc.
static void addClangRTLinux(
const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) {
SmallString<128> LibClangRT = getCompilerRTLibDir(TC);
llvm::sys::path::append(LibClangRT, Twine("libclang_rt.builtins-") +
getArchNameForCompilerRTLib(TC) +
".a");
CmdArgs.push_back(Args.MakeArgString(LibClangRT));
CmdArgs.push_back("-lgcc_s");
if (TC.getDriver().CCCIsCXX())
CmdArgs.push_back("-lgcc_eh");
}
static void addProfileRT(
const ToolChain &TC, const ArgList &Args, ArgStringList &CmdArgs) {
if (!(Args.hasArg(options::OPT_fprofile_arcs) ||
Args.hasArg(options::OPT_fprofile_generate) ||
Args.hasArg(options::OPT_fprofile_instr_generate) ||
Args.hasArg(options::OPT_fcreate_profile) ||
Args.hasArg(options::OPT_coverage)))
return;
// -fprofile-instr-generate requires position-independent code to build with
// shared objects. Link against the right archive.
const char *Lib = "libclang_rt.profile-";
if (Args.hasArg(options::OPT_fprofile_instr_generate) &&
Args.hasArg(options::OPT_shared))
Lib = "libclang_rt.profile-pic-";
SmallString<128> LibProfile = getCompilerRTLibDir(TC);
llvm::sys::path::append(LibProfile,
Twine(Lib) + getArchNameForCompilerRTLib(TC) + ".a");
CmdArgs.push_back(Args.MakeArgString(LibProfile));
}
static SmallString<128> getSanitizerRTLibName(const ToolChain &TC,
const StringRef Sanitizer,
bool Shared) {
// Sanitizer runtime has name "libclang_rt.<Sanitizer>-<ArchName>.{a,so}"
// (or "libclang_rt.<Sanitizer>-<ArchName>-android.so for Android)
const char *EnvSuffix =
TC.getTriple().getEnvironment() == llvm::Triple::Android ? "-android" : "";
SmallString<128> LibSanitizer = getCompilerRTLibDir(TC);
llvm::sys::path::append(LibSanitizer,
Twine("libclang_rt.") + Sanitizer + "-" +
getArchNameForCompilerRTLib(TC) + EnvSuffix +
(Shared ? ".so" : ".a"));
return LibSanitizer;
}
static void addSanitizerRTLinkFlags(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs,
const StringRef Sanitizer,
bool BeforeLibStdCXX,
bool ExportSymbols = true,
bool LinkDeps = true) {
SmallString<128> LibSanitizer =
getSanitizerRTLibName(TC, Sanitizer, /*Shared*/ false);
// Sanitizer runtime may need to come before -lstdc++ (or -lc++, libstdc++.a,
// etc.) so that the linker picks custom versions of the global 'operator
// new' and 'operator delete' symbols. We take the extreme (but simple)
// strategy of inserting it at the front of the link command. It also
// needs to be forced to end up in the executable, so wrap it in
// whole-archive.
SmallVector<const char *, 3> LibSanitizerArgs;
LibSanitizerArgs.push_back("-whole-archive");
LibSanitizerArgs.push_back(Args.MakeArgString(LibSanitizer));
LibSanitizerArgs.push_back("-no-whole-archive");
CmdArgs.insert(BeforeLibStdCXX ? CmdArgs.begin() : CmdArgs.end(),
LibSanitizerArgs.begin(), LibSanitizerArgs.end());
if (LinkDeps) {
// Link sanitizer dependencies explicitly
CmdArgs.push_back("-lpthread");
CmdArgs.push_back("-lrt");
CmdArgs.push_back("-lm");
// There's no libdl on FreeBSD.
if (TC.getTriple().getOS() != llvm::Triple::FreeBSD)
CmdArgs.push_back("-ldl");
}
// If possible, use a dynamic symbols file to export the symbols from the
// runtime library. If we can't do so, use -export-dynamic instead to export
// all symbols from the binary.
if (ExportSymbols) {
if (llvm::sys::fs::exists(LibSanitizer + ".syms"))
CmdArgs.push_back(
Args.MakeArgString("--dynamic-list=" + LibSanitizer + ".syms"));
else
CmdArgs.push_back("-export-dynamic");
}
}
/// If AddressSanitizer is enabled, add appropriate linker flags (Linux).
/// This needs to be called before we add the C run-time (malloc, etc).
static void addAsanRT(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs, bool Shared, bool IsCXX) {
if (Shared) {
// Link dynamic runtime if necessary.
SmallString<128> LibSanitizer =
getSanitizerRTLibName(TC, "asan", Shared);
CmdArgs.insert(CmdArgs.begin(), Args.MakeArgString(LibSanitizer));
}
// Do not link static runtime to DSOs or if compiling for Android.
if (Args.hasArg(options::OPT_shared) ||
(TC.getTriple().getEnvironment() == llvm::Triple::Android))
return;
if (Shared) {
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "asan-preinit",
/*BeforeLibStdCXX*/ true, /*ExportSymbols*/ false,
/*LinkDeps*/ false);
} else {
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "asan", true);
if (IsCXX)
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "asan_cxx", true);
}
}
/// If ThreadSanitizer is enabled, add appropriate linker flags (Linux).
/// This needs to be called before we add the C run-time (malloc, etc).
static void addTsanRT(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs) {
if (!Args.hasArg(options::OPT_shared))
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "tsan", true);
}
/// If MemorySanitizer is enabled, add appropriate linker flags (Linux).
/// This needs to be called before we add the C run-time (malloc, etc).
static void addMsanRT(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs) {
if (!Args.hasArg(options::OPT_shared))
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "msan", true);
}
/// If LeakSanitizer is enabled, add appropriate linker flags (Linux).
/// This needs to be called before we add the C run-time (malloc, etc).
static void addLsanRT(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs) {
if (!Args.hasArg(options::OPT_shared))
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "lsan", true);
}
/// If UndefinedBehaviorSanitizer is enabled, add appropriate linker flags
/// (Linux).
static void addUbsanRT(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs, bool IsCXX,
bool HasOtherSanitizerRt) {
// Do not link runtime into shared libraries.
if (Args.hasArg(options::OPT_shared))
return;
// Need a copy of sanitizer_common. This could come from another sanitizer
// runtime; if we're not including one, include our own copy.
if (!HasOtherSanitizerRt)
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "san", true, false);
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "ubsan", false, true);
// Only include the bits of the runtime which need a C++ ABI library if
// we're linking in C++ mode.
if (IsCXX)
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "ubsan_cxx", false, true);
}
static void addDfsanRT(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs) {
if (!Args.hasArg(options::OPT_shared))
addSanitizerRTLinkFlags(TC, Args, CmdArgs, "dfsan", true);
}
// Should be called before we add C++ ABI library.
static void addSanitizerRuntimes(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs) {
const SanitizerArgs &Sanitize = TC.getSanitizerArgs();
const Driver &D = TC.getDriver();
if (Sanitize.needsUbsanRt())
addUbsanRT(TC, Args, CmdArgs, D.CCCIsCXX(),
Sanitize.needsAsanRt() || Sanitize.needsTsanRt() ||
Sanitize.needsMsanRt() || Sanitize.needsLsanRt());
if (Sanitize.needsAsanRt())
addAsanRT(TC, Args, CmdArgs, Sanitize.needsSharedAsanRt(), D.CCCIsCXX());
if (Sanitize.needsTsanRt())
addTsanRT(TC, Args, CmdArgs);
if (Sanitize.needsMsanRt())
addMsanRT(TC, Args, CmdArgs);
if (Sanitize.needsLsanRt())
addLsanRT(TC, Args, CmdArgs);
if (Sanitize.needsDfsanRt())
addDfsanRT(TC, Args, CmdArgs);
}
static bool shouldUseFramePointerForTarget(const ArgList &Args,
const llvm::Triple &Triple) {
switch (Triple.getArch()) {
// Don't use a frame pointer on linux if optimizing for certain targets.
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
case llvm::Triple::mips:
case llvm::Triple::mipsel:
case llvm::Triple::systemz:
case llvm::Triple::x86:
case llvm::Triple::x86_64:
if (Triple.isOSLinux())
if (Arg *A = Args.getLastArg(options::OPT_O_Group))
if (!A->getOption().matches(options::OPT_O0))
return false;
return true;
case llvm::Triple::xcore:
return false;
default:
return true;
}
}
static bool shouldUseFramePointer(const ArgList &Args,
const llvm::Triple &Triple) {
if (Arg *A = Args.getLastArg(options::OPT_fno_omit_frame_pointer,
options::OPT_fomit_frame_pointer))
return A->getOption().matches(options::OPT_fno_omit_frame_pointer);
return shouldUseFramePointerForTarget(Args, Triple);
}
static bool shouldUseLeafFramePointer(const ArgList &Args,
const llvm::Triple &Triple) {
if (Arg *A = Args.getLastArg(options::OPT_mno_omit_leaf_frame_pointer,
options::OPT_momit_leaf_frame_pointer))
return A->getOption().matches(options::OPT_mno_omit_leaf_frame_pointer);
return shouldUseFramePointerForTarget(Args, Triple);
}
/// Add a CC1 option to specify the debug compilation directory.
static void addDebugCompDirArg(const ArgList &Args, ArgStringList &CmdArgs) {
SmallString<128> cwd;
if (!llvm::sys::fs::current_path(cwd)) {
CmdArgs.push_back("-fdebug-compilation-dir");
CmdArgs.push_back(Args.MakeArgString(cwd));
}
}
static const char *SplitDebugName(const ArgList &Args,
const InputInfoList &Inputs) {
Arg *FinalOutput = Args.getLastArg(options::OPT_o);
if (FinalOutput && Args.hasArg(options::OPT_c)) {
SmallString<128> T(FinalOutput->getValue());
llvm::sys::path::replace_extension(T, "dwo");
return Args.MakeArgString(T);
} else {
// Use the compilation dir.
SmallString<128> T(
Args.getLastArgValue(options::OPT_fdebug_compilation_dir));
SmallString<128> F(llvm::sys::path::stem(Inputs[0].getBaseInput()));
llvm::sys::path::replace_extension(F, "dwo");
T += F;
return Args.MakeArgString(F);
}
}
static void SplitDebugInfo(const ToolChain &TC, Compilation &C,
const Tool &T, const JobAction &JA,
const ArgList &Args, const InputInfo &Output,
const char *OutFile) {
ArgStringList ExtractArgs;
ExtractArgs.push_back("--extract-dwo");
ArgStringList StripArgs;
StripArgs.push_back("--strip-dwo");
// Grabbing the output of the earlier compile step.
StripArgs.push_back(Output.getFilename());
ExtractArgs.push_back(Output.getFilename());
ExtractArgs.push_back(OutFile);
const char *Exec =
Args.MakeArgString(TC.GetProgramPath("objcopy"));
// First extract the dwo sections.
C.addCommand(new Command(JA, T, Exec, ExtractArgs));
// Then remove them from the original .o file.
C.addCommand(new Command(JA, T, Exec, StripArgs));
}
/// \brief Vectorize at all optimization levels greater than 1 except for -Oz.
/// For -Oz the loop vectorizer is disable, while the slp vectorizer is enabled.
static bool shouldEnableVectorizerAtOLevel(const ArgList &Args, bool isSlpVec) {
if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
if (A->getOption().matches(options::OPT_O4) ||
A->getOption().matches(options::OPT_Ofast))
return true;
if (A->getOption().matches(options::OPT_O0))
return false;
assert(A->getOption().matches(options::OPT_O) && "Must have a -O flag");
// Vectorize -Os.
StringRef S(A->getValue());
if (S == "s")
return true;
// Don't vectorize -Oz, unless it's the slp vectorizer.
if (S == "z")
return isSlpVec;
unsigned OptLevel = 0;
if (S.getAsInteger(10, OptLevel))
return false;
return OptLevel > 1;
}
return false;
}
/// Add -x lang to \p CmdArgs for \p Input.
static void addDashXForInput(const ArgList &Args, const InputInfo &Input,
ArgStringList &CmdArgs) {
// When using -verify-pch, we don't want to provide the type
// 'precompiled-header' if it was inferred from the file extension
if (Args.hasArg(options::OPT_verify_pch) && Input.getType() == types::TY_PCH)
return;
CmdArgs.push_back("-x");
if (Args.hasArg(options::OPT_rewrite_objc))
CmdArgs.push_back(types::getTypeName(types::TY_PP_ObjCXX));
else
CmdArgs.push_back(types::getTypeName(Input.getType()));
}
static std::string getMSCompatibilityVersion(const char *VersionStr) {
unsigned Version;
if (StringRef(VersionStr).getAsInteger(10, Version))
return "0";
if (Version < 100)
return llvm::utostr_32(Version) + ".0";
if (Version < 10000)
return llvm::utostr_32(Version / 100) + "." +
llvm::utostr_32(Version % 100);
unsigned Build = 0, Factor = 1;
for ( ; Version > 10000; Version = Version / 10, Factor = Factor * 10)
Build = Build + (Version % 10) * Factor;
return llvm::utostr_32(Version / 100) + "." +
llvm::utostr_32(Version % 100) + "." +
llvm::utostr_32(Build);
}
void Clang::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
bool KernelOrKext = Args.hasArg(options::OPT_mkernel,
options::OPT_fapple_kext);
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
bool IsWindowsGNU = getToolChain().getTriple().isWindowsGNUEnvironment();
bool IsWindowsCygnus =
getToolChain().getTriple().isWindowsCygwinEnvironment();
bool IsWindowsMSVC = getToolChain().getTriple().isWindowsMSVCEnvironment();
assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
// Invoke ourselves in -cc1 mode.
//
// FIXME: Implement custom jobs for internal actions.
CmdArgs.push_back("-cc1");
// Add the "effective" target triple.
CmdArgs.push_back("-triple");
std::string TripleStr = getToolChain().ComputeEffectiveClangTriple(Args);
CmdArgs.push_back(Args.MakeArgString(TripleStr));
const llvm::Triple TT(TripleStr);
if (TT.isOSWindows() && (TT.getArch() == llvm::Triple::arm ||
TT.getArch() == llvm::Triple::thumb)) {
unsigned Offset = TT.getArch() == llvm::Triple::arm ? 4 : 6;
unsigned Version;
TT.getArchName().substr(Offset).getAsInteger(10, Version);
if (Version < 7)
D.Diag(diag::err_target_unsupported_arch) << TT.getArchName()
<< TripleStr;
}
// Push all default warning arguments that are specific to
// the given target. These come before user provided warning options
// are provided.
getToolChain().addClangWarningOptions(CmdArgs);
// Select the appropriate action.
RewriteKind rewriteKind = RK_None;
if (isa<AnalyzeJobAction>(JA)) {
assert(JA.getType() == types::TY_Plist && "Invalid output type.");
CmdArgs.push_back("-analyze");
} else if (isa<MigrateJobAction>(JA)) {
CmdArgs.push_back("-migrate");
} else if (isa<PreprocessJobAction>(JA)) {
if (Output.getType() == types::TY_Dependencies)
CmdArgs.push_back("-Eonly");
else {
CmdArgs.push_back("-E");
if (Args.hasArg(options::OPT_rewrite_objc) &&
!Args.hasArg(options::OPT_g_Group))
CmdArgs.push_back("-P");
}
} else if (isa<AssembleJobAction>(JA)) {
CmdArgs.push_back("-emit-obj");
CollectArgsForIntegratedAssembler(C, Args, CmdArgs, D);
// Also ignore explicit -force_cpusubtype_ALL option.
(void) Args.hasArg(options::OPT_force__cpusubtype__ALL);
} else if (isa<PrecompileJobAction>(JA)) {
// Use PCH if the user requested it.
bool UsePCH = D.CCCUsePCH;
if (JA.getType() == types::TY_Nothing)
CmdArgs.push_back("-fsyntax-only");
else if (UsePCH)
CmdArgs.push_back("-emit-pch");
else
CmdArgs.push_back("-emit-pth");
} else if (isa<VerifyPCHJobAction>(JA)) {
CmdArgs.push_back("-verify-pch");
} else {
assert(isa<CompileJobAction>(JA) && "Invalid action for clang tool.");
if (JA.getType() == types::TY_Nothing) {
CmdArgs.push_back("-fsyntax-only");
} else if (JA.getType() == types::TY_LLVM_IR ||
JA.getType() == types::TY_LTO_IR) {
CmdArgs.push_back("-emit-llvm");
} else if (JA.getType() == types::TY_LLVM_BC ||
JA.getType() == types::TY_LTO_BC) {
CmdArgs.push_back("-emit-llvm-bc");
} else if (JA.getType() == types::TY_PP_Asm) {
CmdArgs.push_back("-S");
} else if (JA.getType() == types::TY_AST) {
CmdArgs.push_back("-emit-pch");
} else if (JA.getType() == types::TY_ModuleFile) {
CmdArgs.push_back("-module-file-info");
} else if (JA.getType() == types::TY_RewrittenObjC) {
CmdArgs.push_back("-rewrite-objc");
rewriteKind = RK_NonFragile;
} else if (JA.getType() == types::TY_RewrittenLegacyObjC) {
CmdArgs.push_back("-rewrite-objc");
rewriteKind = RK_Fragile;
} else {
assert(JA.getType() == types::TY_PP_Asm &&
"Unexpected output type!");
}
}
// We normally speed up the clang process a bit by skipping destructors at
// exit, but when we're generating diagnostics we can rely on some of the
// cleanup.
if (!C.isForDiagnostics())
CmdArgs.push_back("-disable-free");
// Disable the verification pass in -asserts builds.
#ifdef NDEBUG
CmdArgs.push_back("-disable-llvm-verifier");
#endif
// Set the main file name, so that debug info works even with
// -save-temps.
CmdArgs.push_back("-main-file-name");
CmdArgs.push_back(getBaseInputName(Args, Inputs));
// Some flags which affect the language (via preprocessor
// defines).
if (Args.hasArg(options::OPT_static))
CmdArgs.push_back("-static-define");
if (isa<AnalyzeJobAction>(JA)) {
// Enable region store model by default.
CmdArgs.push_back("-analyzer-store=region");
// Treat blocks as analysis entry points.
CmdArgs.push_back("-analyzer-opt-analyze-nested-blocks");
CmdArgs.push_back("-analyzer-eagerly-assume");
// Add default argument set.
if (!Args.hasArg(options::OPT__analyzer_no_default_checks)) {
CmdArgs.push_back("-analyzer-checker=core");
if (!IsWindowsMSVC)
CmdArgs.push_back("-analyzer-checker=unix");
if (getToolChain().getTriple().getVendor() == llvm::Triple::Apple)
CmdArgs.push_back("-analyzer-checker=osx");
CmdArgs.push_back("-analyzer-checker=deadcode");
if (types::isCXX(Inputs[0].getType()))
CmdArgs.push_back("-analyzer-checker=cplusplus");
// Enable the following experimental checkers for testing.
CmdArgs.push_back(
"-analyzer-checker=security.insecureAPI.UncheckedReturn");
CmdArgs.push_back("-analyzer-checker=security.insecureAPI.getpw");
CmdArgs.push_back("-analyzer-checker=security.insecureAPI.gets");
CmdArgs.push_back("-analyzer-checker=security.insecureAPI.mktemp");
CmdArgs.push_back("-analyzer-checker=security.insecureAPI.mkstemp");
CmdArgs.push_back("-analyzer-checker=security.insecureAPI.vfork");
}
// Set the output format. The default is plist, for (lame) historical
// reasons.
CmdArgs.push_back("-analyzer-output");
if (Arg *A = Args.getLastArg(options::OPT__analyzer_output))
CmdArgs.push_back(A->getValue());
else
CmdArgs.push_back("plist");
// Disable the presentation of standard compiler warnings when
// using --analyze. We only want to show static analyzer diagnostics
// or frontend errors.
CmdArgs.push_back("-w");
// Add -Xanalyzer arguments when running as analyzer.
Args.AddAllArgValues(CmdArgs, options::OPT_Xanalyzer);
}
CheckCodeGenerationOptions(D, Args);
bool PIE = getToolChain().isPIEDefault();
bool PIC = PIE || getToolChain().isPICDefault();
bool IsPICLevelTwo = PIC;
// Android-specific defaults for PIC/PIE
if (getToolChain().getTriple().getEnvironment() == llvm::Triple::Android) {
switch (getToolChain().getTriple().getArch()) {
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb:
case llvm::Triple::aarch64:
case llvm::Triple::arm64:
case llvm::Triple::mips:
case llvm::Triple::mipsel:
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
PIC = true; // "-fpic"
break;
case llvm::Triple::x86:
case llvm::Triple::x86_64:
PIC = true; // "-fPIC"
IsPICLevelTwo = true;
break;
default:
break;
}
}
// OpenBSD-specific defaults for PIE
if (getToolChain().getTriple().getOS() == llvm::Triple::OpenBSD) {
switch (getToolChain().getTriple().getArch()) {
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
case llvm::Triple::sparc:
case llvm::Triple::x86:
case llvm::Triple::x86_64:
IsPICLevelTwo = false; // "-fpie"
break;
case llvm::Triple::ppc:
case llvm::Triple::sparcv9:
IsPICLevelTwo = true; // "-fPIE"
break;
default:
break;
}
}
// For the PIC and PIE flag options, this logic is different from the
// legacy logic in very old versions of GCC, as that logic was just
// a bug no one had ever fixed. This logic is both more rational and
// consistent with GCC's new logic now that the bugs are fixed. The last
// argument relating to either PIC or PIE wins, and no other argument is
// used. If the last argument is any flavor of the '-fno-...' arguments,
// both PIC and PIE are disabled. Any PIE option implicitly enables PIC
// at the same level.
Arg *LastPICArg =Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
options::OPT_fpic, options::OPT_fno_pic,
options::OPT_fPIE, options::OPT_fno_PIE,
options::OPT_fpie, options::OPT_fno_pie);
// Check whether the tool chain trumps the PIC-ness decision. If the PIC-ness
// is forced, then neither PIC nor PIE flags will have no effect.
if (!getToolChain().isPICDefaultForced()) {
if (LastPICArg) {
Option O = LastPICArg->getOption();
if (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) ||
O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie)) {
PIE = O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie);
PIC = PIE || O.matches(options::OPT_fPIC) ||
O.matches(options::OPT_fpic);
IsPICLevelTwo = O.matches(options::OPT_fPIE) ||
O.matches(options::OPT_fPIC);
} else {
PIE = PIC = false;
}
}
}
// Introduce a Darwin-specific hack. If the default is PIC but the flags
// specified while enabling PIC enabled level 1 PIC, just force it back to
// level 2 PIC instead. This matches the behavior of Darwin GCC (based on my
// informal testing).
if (PIC && getToolChain().getTriple().isOSDarwin())
IsPICLevelTwo |= getToolChain().isPICDefault();
// Note that these flags are trump-cards. Regardless of the order w.r.t. the
// PIC or PIE options above, if these show up, PIC is disabled.
llvm::Triple Triple(TripleStr);
if (KernelOrKext && (!Triple.isiOS() || Triple.isOSVersionLT(6) ||
Triple.getArch() == llvm::Triple::arm64 ||
Triple.getArch() == llvm::Triple::aarch64))
PIC = PIE = false;
if (Args.hasArg(options::OPT_static))
PIC = PIE = false;
if (Arg *A = Args.getLastArg(options::OPT_mdynamic_no_pic)) {
// This is a very special mode. It trumps the other modes, almost no one
// uses it, and it isn't even valid on any OS but Darwin.
if (!getToolChain().getTriple().isOSDarwin())
D.Diag(diag::err_drv_unsupported_opt_for_target)
<< A->getSpelling() << getToolChain().getTriple().str();
// FIXME: Warn when this flag trumps some other PIC or PIE flag.
CmdArgs.push_back("-mrelocation-model");
CmdArgs.push_back("dynamic-no-pic");
// Only a forced PIC mode can cause the actual compile to have PIC defines
// etc., no flags are sufficient. This behavior was selected to closely
// match that of llvm-gcc and Apple GCC before that.
if (getToolChain().isPICDefault() && getToolChain().isPICDefaultForced()) {
CmdArgs.push_back("-pic-level");
CmdArgs.push_back("2");
}
} else {
// Currently, LLVM only knows about PIC vs. static; the PIE differences are
// handled in Clang's IRGen by the -pie-level flag.
CmdArgs.push_back("-mrelocation-model");
CmdArgs.push_back(PIC ? "pic" : "static");
if (PIC) {
CmdArgs.push_back("-pic-level");
CmdArgs.push_back(IsPICLevelTwo ? "2" : "1");
if (PIE) {
CmdArgs.push_back("-pie-level");
CmdArgs.push_back(IsPICLevelTwo ? "2" : "1");
}
}
}
if (!Args.hasFlag(options::OPT_fmerge_all_constants,
options::OPT_fno_merge_all_constants))
CmdArgs.push_back("-fno-merge-all-constants");
// LLVM Code Generator Options.
if (Arg *A = Args.getLastArg(options::OPT_Wframe_larger_than_EQ)) {
StringRef v = A->getValue();
CmdArgs.push_back("-mllvm");
CmdArgs.push_back(Args.MakeArgString("-warn-stack-size=" + v));
A->claim();
}
if (Arg *A = Args.getLastArg(options::OPT_mregparm_EQ)) {
CmdArgs.push_back("-mregparm");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_fpcc_struct_return,
options::OPT_freg_struct_return)) {
if (getToolChain().getArch() != llvm::Triple::x86) {
D.Diag(diag::err_drv_unsupported_opt_for_target)
<< A->getSpelling() << getToolChain().getTriple().str();
} else if (A->getOption().matches(options::OPT_fpcc_struct_return)) {
CmdArgs.push_back("-fpcc-struct-return");
} else {
assert(A->getOption().matches(options::OPT_freg_struct_return));
CmdArgs.push_back("-freg-struct-return");
}
}
if (Args.hasFlag(options::OPT_mrtd, options::OPT_mno_rtd, false))
CmdArgs.push_back("-mrtd");
if (shouldUseFramePointer(Args, getToolChain().getTriple()))
CmdArgs.push_back("-mdisable-fp-elim");
if (!Args.hasFlag(options::OPT_fzero_initialized_in_bss,
options::OPT_fno_zero_initialized_in_bss))
CmdArgs.push_back("-mno-zero-initialized-in-bss");
bool OFastEnabled = isOptimizationLevelFast(Args);
// If -Ofast is the optimization level, then -fstrict-aliasing should be
// enabled. This alias option is being used to simplify the hasFlag logic.
OptSpecifier StrictAliasingAliasOption = OFastEnabled ? options::OPT_Ofast :
options::OPT_fstrict_aliasing;
// We turn strict aliasing off by default if we're in CL mode, since MSVC
// doesn't do any TBAA.
bool TBAAOnByDefault = !getToolChain().getDriver().IsCLMode();
if (!Args.hasFlag(options::OPT_fstrict_aliasing, StrictAliasingAliasOption,
options::OPT_fno_strict_aliasing, TBAAOnByDefault))
CmdArgs.push_back("-relaxed-aliasing");
if (!Args.hasFlag(options::OPT_fstruct_path_tbaa,
options::OPT_fno_struct_path_tbaa))
CmdArgs.push_back("-no-struct-path-tbaa");
if (Args.hasFlag(options::OPT_fstrict_enums, options::OPT_fno_strict_enums,
false))
CmdArgs.push_back("-fstrict-enums");
if (!Args.hasFlag(options::OPT_foptimize_sibling_calls,
options::OPT_fno_optimize_sibling_calls))
CmdArgs.push_back("-mdisable-tail-calls");
// Handle segmented stacks.
if (Args.hasArg(options::OPT_fsplit_stack))
CmdArgs.push_back("-split-stacks");
// If -Ofast is the optimization level, then -ffast-math should be enabled.
// This alias option is being used to simplify the getLastArg logic.
OptSpecifier FastMathAliasOption = OFastEnabled ? options::OPT_Ofast :
options::OPT_ffast_math;
// Handle various floating point optimization flags, mapping them to the
// appropriate LLVM code generation flags. The pattern for all of these is to
// default off the codegen optimizations, and if any flag enables them and no
// flag disables them after the flag enabling them, enable the codegen
// optimization. This is complicated by several "umbrella" flags.
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_ffinite_math_only,
options::OPT_fno_finite_math_only,
options::OPT_fhonor_infinities,
options::OPT_fno_honor_infinities))
if (A->getOption().getID() != options::OPT_fno_fast_math &&
A->getOption().getID() != options::OPT_fno_finite_math_only &&
A->getOption().getID() != options::OPT_fhonor_infinities)
CmdArgs.push_back("-menable-no-infs");
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_ffinite_math_only,
options::OPT_fno_finite_math_only,
options::OPT_fhonor_nans,
options::OPT_fno_honor_nans))
if (A->getOption().getID() != options::OPT_fno_fast_math &&
A->getOption().getID() != options::OPT_fno_finite_math_only &&
A->getOption().getID() != options::OPT_fhonor_nans)
CmdArgs.push_back("-menable-no-nans");
// -fmath-errno is the default on some platforms, e.g. BSD-derived OSes.
bool MathErrno = getToolChain().IsMathErrnoDefault();
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_fmath_errno,
options::OPT_fno_math_errno)) {
// Turning on -ffast_math (with either flag) removes the need for MathErrno.
// However, turning *off* -ffast_math merely restores the toolchain default
// (which may be false).
if (A->getOption().getID() == options::OPT_fno_math_errno ||
A->getOption().getID() == options::OPT_ffast_math ||
A->getOption().getID() == options::OPT_Ofast)
MathErrno = false;
else if (A->getOption().getID() == options::OPT_fmath_errno)
MathErrno = true;
}
if (MathErrno)
CmdArgs.push_back("-fmath-errno");
// There are several flags which require disabling very specific
// optimizations. Any of these being disabled forces us to turn off the
// entire set of LLVM optimizations, so collect them through all the flag
// madness.
bool AssociativeMath = false;
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_funsafe_math_optimizations,
options::OPT_fno_unsafe_math_optimizations,
options::OPT_fassociative_math,
options::OPT_fno_associative_math))
if (A->getOption().getID() != options::OPT_fno_fast_math &&
A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
A->getOption().getID() != options::OPT_fno_associative_math)
AssociativeMath = true;
bool ReciprocalMath = false;
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_funsafe_math_optimizations,
options::OPT_fno_unsafe_math_optimizations,
options::OPT_freciprocal_math,
options::OPT_fno_reciprocal_math))
if (A->getOption().getID() != options::OPT_fno_fast_math &&
A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
A->getOption().getID() != options::OPT_fno_reciprocal_math)
ReciprocalMath = true;
bool SignedZeros = true;
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_funsafe_math_optimizations,
options::OPT_fno_unsafe_math_optimizations,
options::OPT_fsigned_zeros,
options::OPT_fno_signed_zeros))
if (A->getOption().getID() != options::OPT_fno_fast_math &&
A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
A->getOption().getID() != options::OPT_fsigned_zeros)
SignedZeros = false;
bool TrappingMath = true;
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_funsafe_math_optimizations,
options::OPT_fno_unsafe_math_optimizations,
options::OPT_ftrapping_math,
options::OPT_fno_trapping_math))
if (A->getOption().getID() != options::OPT_fno_fast_math &&
A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
A->getOption().getID() != options::OPT_ftrapping_math)
TrappingMath = false;
if (!MathErrno && AssociativeMath && ReciprocalMath && !SignedZeros &&
!TrappingMath)
CmdArgs.push_back("-menable-unsafe-fp-math");
// Validate and pass through -fp-contract option.
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math,
options::OPT_ffp_contract)) {
if (A->getOption().getID() == options::OPT_ffp_contract) {
StringRef Val = A->getValue();
if (Val == "fast" || Val == "on" || Val == "off") {
CmdArgs.push_back(Args.MakeArgString("-ffp-contract=" + Val));
} else {
D.Diag(diag::err_drv_unsupported_option_argument)
<< A->getOption().getName() << Val;
}
} else if (A->getOption().matches(options::OPT_ffast_math) ||
(OFastEnabled && A->getOption().matches(options::OPT_Ofast))) {
// If fast-math is set then set the fp-contract mode to fast.
CmdArgs.push_back(Args.MakeArgString("-ffp-contract=fast"));
}
}
// We separately look for the '-ffast-math' and '-ffinite-math-only' flags,
// and if we find them, tell the frontend to provide the appropriate
// preprocessor macros. This is distinct from enabling any optimizations as
// these options induce language changes which must survive serialization
// and deserialization, etc.
if (Arg *A = Args.getLastArg(options::OPT_ffast_math, FastMathAliasOption,
options::OPT_fno_fast_math))
if (!A->getOption().matches(options::OPT_fno_fast_math))
CmdArgs.push_back("-ffast-math");
if (Arg *A = Args.getLastArg(options::OPT_ffinite_math_only,
options::OPT_fno_fast_math))
if (A->getOption().matches(options::OPT_ffinite_math_only))
CmdArgs.push_back("-ffinite-math-only");
// Decide whether to use verbose asm. Verbose assembly is the default on
// toolchains which have the integrated assembler on by default.
bool IsIntegratedAssemblerDefault =
getToolChain().IsIntegratedAssemblerDefault();
if (Args.hasFlag(options::OPT_fverbose_asm, options::OPT_fno_verbose_asm,
IsIntegratedAssemblerDefault) ||
Args.hasArg(options::OPT_dA))
CmdArgs.push_back("-masm-verbose");
if (!Args.hasFlag(options::OPT_fintegrated_as, options::OPT_fno_integrated_as,
IsIntegratedAssemblerDefault))
CmdArgs.push_back("-no-integrated-as");
if (Args.hasArg(options::OPT_fdebug_pass_structure)) {
CmdArgs.push_back("-mdebug-pass");
CmdArgs.push_back("Structure");
}
if (Args.hasArg(options::OPT_fdebug_pass_arguments)) {
CmdArgs.push_back("-mdebug-pass");
CmdArgs.push_back("Arguments");
}
// Enable -mconstructor-aliases except on darwin, where we have to
// work around a linker bug; see <rdar://problem/7651567>.
if (!getToolChain().getTriple().isOSDarwin())
CmdArgs.push_back("-mconstructor-aliases");
// Darwin's kernel doesn't support guard variables; just die if we
// try to use them.
if (KernelOrKext && getToolChain().getTriple().isOSDarwin())
CmdArgs.push_back("-fforbid-guard-variables");
if (Args.hasArg(options::OPT_mms_bitfields)) {
CmdArgs.push_back("-mms-bitfields");
}
// This is a coarse approximation of what llvm-gcc actually does, both
// -fasynchronous-unwind-tables and -fnon-call-exceptions interact in more
// complicated ways.
bool AsynchronousUnwindTables =
Args.hasFlag(options::OPT_fasynchronous_unwind_tables,
options::OPT_fno_asynchronous_unwind_tables,
(getToolChain().IsUnwindTablesDefault() ||
getToolChain().getSanitizerArgs().needsUnwindTables()) &&
!KernelOrKext);
if (Args.hasFlag(options::OPT_funwind_tables, options::OPT_fno_unwind_tables,
AsynchronousUnwindTables))
CmdArgs.push_back("-munwind-tables");
getToolChain().addClangTargetOptions(Args, CmdArgs);
if (Arg *A = Args.getLastArg(options::OPT_flimited_precision_EQ)) {
CmdArgs.push_back("-mlimit-float-precision");
CmdArgs.push_back(A->getValue());
}
// FIXME: Handle -mtune=.
(void) Args.hasArg(options::OPT_mtune_EQ);
if (Arg *A = Args.getLastArg(options::OPT_mcmodel_EQ)) {
CmdArgs.push_back("-mcode-model");
CmdArgs.push_back(A->getValue());
}
// Add the target cpu
std::string ETripleStr = getToolChain().ComputeEffectiveClangTriple(Args);
llvm::Triple ETriple(ETripleStr);
std::string CPU = getCPUName(Args, ETriple);
if (!CPU.empty()) {
CmdArgs.push_back("-target-cpu");
CmdArgs.push_back(Args.MakeArgString(CPU));
}
if (const Arg *A = Args.getLastArg(options::OPT_mfpmath_EQ)) {
CmdArgs.push_back("-mfpmath");
CmdArgs.push_back(A->getValue());
}
// Add the target features
getTargetFeatures(D, ETriple, Args, CmdArgs, false);
// Add target specific flags.
switch(getToolChain().getArch()) {
default:
break;
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb:
AddARMTargetArgs(Args, CmdArgs, KernelOrKext);
break;
case llvm::Triple::aarch64:
case llvm::Triple::aarch64_be:
case llvm::Triple::arm64:
case llvm::Triple::arm64_be:
AddAArch64TargetArgs(Args, CmdArgs);
break;
case llvm::Triple::mips:
case llvm::Triple::mipsel:
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
AddMIPSTargetArgs(Args, CmdArgs);
break;
case llvm::Triple::sparc:
case llvm::Triple::sparcv9:
AddSparcTargetArgs(Args, CmdArgs);
break;
case llvm::Triple::x86:
case llvm::Triple::x86_64:
AddX86TargetArgs(Args, CmdArgs);
break;
case llvm::Triple::hexagon:
AddHexagonTargetArgs(Args, CmdArgs);
break;
case llvm::Triple::genx32:
case llvm::Triple::genx64:
AddGenXTargetArgs(Args, CmdArgs);
break;
}
// Add clang-cl arguments.
if (getToolChain().getDriver().IsCLMode())
AddClangCLArgs(Args, CmdArgs);
// Pass the linker version in use.
if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ)) {
CmdArgs.push_back("-target-linker-version");
CmdArgs.push_back(A->getValue());
}
if (!shouldUseLeafFramePointer(Args, getToolChain().getTriple()))
CmdArgs.push_back("-momit-leaf-frame-pointer");
types::ID InputType = Inputs[0].getType();
// If -std=cm is specified, set the source input type to MDF CM.
if (Arg *Std = Args.getLastArg(options::OPT_std_EQ)) {
if (strcmp(Std->getValue(), "cm") == 0) {
InputType = types::TY_MDF_CM;
}
}
// If the input type is MDF CM enable MSVC format diagnostics, and pass on
// any assembly file name option.
// We also enable shadow declaration warnings by default.
if (InputType == types::TY_MDF_CM) {
CmdArgs.push_back("-fdiagnostics-format");
CmdArgs.push_back("msvc");
const char *AsmName = "";
if (Arg *A = Args.getLastArg(options::OPT_Qxcm_asm_output))
AsmName = A->getValue();
else if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa))
AsmName = A->getValue();
if ((AsmName[0] == '=') || (AsmName[0] == ':'))
AsmName = &AsmName[1];
if (strlen(AsmName)) {
CmdArgs.push_back("-cm-asm-name");
CmdArgs.push_back(AsmName);
}
CmdArgs.push_back("-Wshadow");
CmdArgs.push_back("-Wuninitialized");
if (Args.hasFlag(options::OPT_fvldst, options::OPT_fno_vldst, true))
CmdArgs.push_back("-fvldst");
if (Args.getLastArg(options::OPT_mCM_init_global))
CmdArgs.push_back("-mCM_init_global");
if (Args.getLastArg(options::OPT_mCM_reverse_kernels))
CmdArgs.push_back("-mCM_reverse_kernels");
}
if (Args.getLastArg(options::OPT_fno_force_noinline))
CmdArgs.push_back("-fno-force-noinline");
// Explicitly error on some things we know we don't support and can't just
// ignore.
if (!Args.hasArg(options::OPT_fallow_unsupported)) {
Arg *Unsupported;
if (types::isCXX(InputType) &&
getToolChain().getTriple().isOSDarwin() &&
getToolChain().getArch() == llvm::Triple::x86) {
if ((Unsupported = Args.getLastArg(options::OPT_fapple_kext)) ||
(Unsupported = Args.getLastArg(options::OPT_mkernel)))
D.Diag(diag::err_drv_clang_unsupported_opt_cxx_darwin_i386)
<< Unsupported->getOption().getName();
}
}
Args.AddAllArgs(CmdArgs, options::OPT_v);
Args.AddLastArg(CmdArgs, options::OPT_H);
if (D.CCPrintHeaders && !D.CCGenDiagnostics) {
CmdArgs.push_back("-header-include-file");
CmdArgs.push_back(D.CCPrintHeadersFilename ?
D.CCPrintHeadersFilename : "-");
}
Args.AddLastArg(CmdArgs, options::OPT_P);
Args.AddLastArg(CmdArgs, options::OPT_print_ivar_layout);
if (D.CCLogDiagnostics && !D.CCGenDiagnostics) {
CmdArgs.push_back("-diagnostic-log-file");
CmdArgs.push_back(D.CCLogDiagnosticsFilename ?
D.CCLogDiagnosticsFilename : "-");
}
// Use the last option from "-g" group. "-gline-tables-only" and "-gdwarf-x"
// are preserved, all other debug options are substituted with "-g".
Args.ClaimAllArgs(options::OPT_g_Group);
if (Arg *A = Args.getLastArg(options::OPT_g_Group)) {
if (A->getOption().matches(options::OPT_gline_tables_only)) {
// FIXME: we should support specifying dwarf version with
// -gline-tables-only.
CmdArgs.push_back("-gline-tables-only");
// Default is dwarf-2 for Darwin, OpenBSD and FreeBSD.
const llvm::Triple &Triple = getToolChain().getTriple();
if (Triple.isOSDarwin() || Triple.getOS() == llvm::Triple::OpenBSD ||
Triple.getOS() == llvm::Triple::FreeBSD)
CmdArgs.push_back("-gdwarf-2");
} else if (A->getOption().matches(options::OPT_gdwarf_2))
CmdArgs.push_back("-gdwarf-2");
else if (A->getOption().matches(options::OPT_gdwarf_3))
CmdArgs.push_back("-gdwarf-3");
else if (A->getOption().matches(options::OPT_gdwarf_4))
CmdArgs.push_back("-gdwarf-4");
else if (!A->getOption().matches(options::OPT_g0) &&
!A->getOption().matches(options::OPT_ggdb0)) {
// Default is dwarf-2 for Darwin, OpenBSD and FreeBSD.
const llvm::Triple &Triple = getToolChain().getTriple();
if (Triple.isOSDarwin() || Triple.getOS() == llvm::Triple::OpenBSD ||
Triple.getOS() == llvm::Triple::FreeBSD)
CmdArgs.push_back("-gdwarf-2");
else
CmdArgs.push_back("-g");
}
} else if (D.CCCIsCM()) {
if (!Args.hasArg(options::OPT_mCM_no_debug)) {
// for CM we implicitly specify -gline-tables-only if no "-g" group options
// were specified unless it's requested explicitly in the other direction.
CmdArgs.push_back("-gline-tables-only");
}
}
// We ignore flags -gstrict-dwarf and -grecord-gcc-switches for now.
Args.ClaimAllArgs(options::OPT_g_flags_Group);
if (Args.hasFlag(options::OPT_gcolumn_info, options::OPT_gno_column_info,
/*Default*/ true))
CmdArgs.push_back("-dwarf-column-info");
// FIXME: Move backend command line options to the module.
// -gsplit-dwarf should turn on -g and enable the backend dwarf
// splitting and extraction.
// FIXME: Currently only works on Linux.
if (getToolChain().getTriple().isOSLinux() &&
Args.hasArg(options::OPT_gsplit_dwarf)) {
CmdArgs.push_back("-g");
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-split-dwarf=Enable");
}
// -ggnu-pubnames turns on gnu style pubnames in the backend.
if (Args.hasArg(options::OPT_ggnu_pubnames)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-generate-gnu-dwarf-pub-sections");
}
// -gdwarf-aranges turns on the emission of the aranges section in the
// backend.
if (Args.hasArg(options::OPT_gdwarf_aranges)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-generate-arange-section");
}
if (Args.hasFlag(options::OPT_fdebug_types_section,
options::OPT_fno_debug_types_section, false)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-generate-type-units");
}
if (Args.hasFlag(options::OPT_ffunction_sections,
options::OPT_fno_function_sections, false)) {
CmdArgs.push_back("-ffunction-sections");
}
if (Args.hasFlag(options::OPT_fdata_sections,
options::OPT_fno_data_sections, false)) {
CmdArgs.push_back("-fdata-sections");
}
Args.AddAllArgs(CmdArgs, options::OPT_finstrument_functions);
if (Args.hasArg(options::OPT_fprofile_instr_generate) &&
(Args.hasArg(options::OPT_fprofile_instr_use) ||
Args.hasArg(options::OPT_fprofile_instr_use_EQ)))
D.Diag(diag::err_drv_argument_not_allowed_with)
<< "-fprofile-instr-generate" << "-fprofile-instr-use";
Args.AddAllArgs(CmdArgs, options::OPT_fprofile_instr_generate);
if (Arg *A = Args.getLastArg(options::OPT_fprofile_instr_use_EQ))
A->render(Args, CmdArgs);
else if (Args.hasArg(options::OPT_fprofile_instr_use))
CmdArgs.push_back("-fprofile-instr-use=pgo-data");
if (Args.hasArg(options::OPT_ftest_coverage) ||
Args.hasArg(options::OPT_coverage))
CmdArgs.push_back("-femit-coverage-notes");
if (Args.hasArg(options::OPT_fprofile_arcs) ||
Args.hasArg(options::OPT_coverage))
CmdArgs.push_back("-femit-coverage-data");
if (C.getArgs().hasArg(options::OPT_c) ||
C.getArgs().hasArg(options::OPT_S)) {
if (Output.isFilename()) {
CmdArgs.push_back("-coverage-file");
SmallString<128> CoverageFilename(Output.getFilename());
if (llvm::sys::path::is_relative(CoverageFilename.str())) {
SmallString<128> Pwd;
if (!llvm::sys::fs::current_path(Pwd)) {
llvm::sys::path::append(Pwd, CoverageFilename.str());
CoverageFilename.swap(Pwd);
}
}
CmdArgs.push_back(Args.MakeArgString(CoverageFilename));
}
}
// Pass options for controlling the default header search paths.
if (Args.hasArg(options::OPT_nostdinc)) {
CmdArgs.push_back("-nostdsysteminc");
CmdArgs.push_back("-nobuiltininc");
} else {
if (Args.hasArg(options::OPT_nostdlibinc))
CmdArgs.push_back("-nostdsysteminc");
Args.AddLastArg(CmdArgs, options::OPT_nostdincxx);
Args.AddLastArg(CmdArgs, options::OPT_nobuiltininc);
}
// Pass the path to compiler resource files.
CmdArgs.push_back("-resource-dir");
CmdArgs.push_back(D.ResourceDir.c_str());
Args.AddLastArg(CmdArgs, options::OPT_working_directory);
bool ARCMTEnabled = false;
if (!Args.hasArg(options::OPT_fno_objc_arc, options::OPT_fobjc_arc)) {
if (const Arg *A = Args.getLastArg(options::OPT_ccc_arcmt_check,
options::OPT_ccc_arcmt_modify,
options::OPT_ccc_arcmt_migrate)) {
ARCMTEnabled = true;
switch (A->getOption().getID()) {
default:
llvm_unreachable("missed a case");
case options::OPT_ccc_arcmt_check:
CmdArgs.push_back("-arcmt-check");
break;
case options::OPT_ccc_arcmt_modify:
CmdArgs.push_back("-arcmt-modify");
break;
case options::OPT_ccc_arcmt_migrate:
CmdArgs.push_back("-arcmt-migrate");
CmdArgs.push_back("-mt-migrate-directory");
CmdArgs.push_back(A->getValue());
Args.AddLastArg(CmdArgs, options::OPT_arcmt_migrate_report_output);
Args.AddLastArg(CmdArgs, options::OPT_arcmt_migrate_emit_arc_errors);
break;
}
}
} else {
Args.ClaimAllArgs(options::OPT_ccc_arcmt_check);
Args.ClaimAllArgs(options::OPT_ccc_arcmt_modify);
Args.ClaimAllArgs(options::OPT_ccc_arcmt_migrate);
}
if (const Arg *A = Args.getLastArg(options::OPT_ccc_objcmt_migrate)) {
if (ARCMTEnabled) {
D.Diag(diag::err_drv_argument_not_allowed_with)
<< A->getAsString(Args) << "-ccc-arcmt-migrate";
}
CmdArgs.push_back("-mt-migrate-directory");
CmdArgs.push_back(A->getValue());
if (!Args.hasArg(options::OPT_objcmt_migrate_literals,
options::OPT_objcmt_migrate_subscripting,
options::OPT_objcmt_migrate_property)) {
// None specified, means enable them all.
CmdArgs.push_back("-objcmt-migrate-literals");
CmdArgs.push_back("-objcmt-migrate-subscripting");
CmdArgs.push_back("-objcmt-migrate-property");
} else {
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_literals);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_subscripting);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_property);
}
} else {
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_literals);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_subscripting);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_property);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_all);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_readonly_property);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_readwrite_property);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_annotation);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_instancetype);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_nsmacros);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_protocol_conformance);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_atomic_property);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_returns_innerpointer_property);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_ns_nonatomic_iosonly);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_designated_init);
Args.AddLastArg(CmdArgs, options::OPT_objcmt_whitelist_dir_path);
}
// Add preprocessing options like -I, -D, etc. if we are using the
// preprocessor.
//
// FIXME: Support -fpreprocessed
if (types::getPreprocessedType(InputType) != types::TY_INVALID)
AddPreprocessingOptions(C, JA, D, Args, CmdArgs, Output, Inputs);
// Don't warn about "clang -c -DPIC -fPIC test.i" because libtool.m4 assumes
// that "The compiler can only warn and ignore the option if not recognized".
// When building with ccache, it will pass -D options to clang even on
// preprocessed inputs and configure concludes that -fPIC is not supported.
Args.ClaimAllArgs(options::OPT_D);
// Manually translate -O4 to -O3; let clang reject others.
if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
// For CM we ignore any O group options as the default optimizations are
// currently necessary to avoid generating IR which causes asserts in the
// Gen backend.
if (!D.CCCIsCM()) {
if (A->getOption().matches(options::OPT_O4)) {
CmdArgs.push_back("-O3");
D.Diag(diag::warn_O4_is_O3);
} else {
A->render(Args, CmdArgs);
}
}
}
// Warn about ignored options to clang.
for (arg_iterator it = Args.filtered_begin(
options::OPT_clang_ignored_gcc_optimization_f_Group),
ie = Args.filtered_end(); it != ie; ++it) {
D.Diag(diag::warn_ignored_gcc_optimization) << (*it)->getAsString(Args);
}
// Don't warn about unused -flto. This can happen when we're preprocessing or
// precompiling.
Args.ClaimAllArgs(options::OPT_flto);
Args.AddAllArgs(CmdArgs, options::OPT_W_Group);
if (Args.hasFlag(options::OPT_pedantic, options::OPT_no_pedantic, false))
CmdArgs.push_back("-pedantic");
Args.AddLastArg(CmdArgs, options::OPT_pedantic_errors);
Args.AddLastArg(CmdArgs, options::OPT_w);
// Handle -{std, ansi, trigraphs} -- take the last of -{std, ansi}
// (-ansi is equivalent to -std=c89 or -std=c++98).
//
// If a std is supplied, only add -trigraphs if it follows the
// option.
if (Arg *Std = Args.getLastArg(options::OPT_std_EQ, options::OPT_ansi)) {
if (Std->getOption().matches(options::OPT_ansi))
if (types::isCXX(InputType))
CmdArgs.push_back("-std=c++98");
else
CmdArgs.push_back("-std=c89");
else
Std->render(Args, CmdArgs);
if (Arg *A = Args.getLastArg(options::OPT_std_EQ, options::OPT_ansi,
options::OPT_trigraphs))
if (A != Std)
A->render(Args, CmdArgs);
} else {
// Honor -std-default.
//
// FIXME: Clang doesn't correctly handle -std= when the input language
// doesn't match. For the time being just ignore this for C++ inputs;
// eventually we want to do all the standard defaulting here instead of
// splitting it between the driver and clang -cc1.
if (!types::isCXX(InputType))
Args.AddAllArgsTranslated(CmdArgs, options::OPT_std_default_EQ,
"-std=", /*Joined=*/true);
else if (IsWindowsMSVC)
CmdArgs.push_back("-std=c++11");
Args.AddLastArg(CmdArgs, options::OPT_trigraphs);
}
// GCC's behavior for -Wwrite-strings is a bit strange:
// * In C, this "warning flag" changes the types of string literals from
// 'char[N]' to 'const char[N]', and thus triggers an unrelated warning
// for the discarded qualifier.
// * In C++, this is just a normal warning flag.
//
// Implementing this warning correctly in C is hard, so we follow GCC's
// behavior for now. FIXME: Directly diagnose uses of a string literal as
// a non-const char* in C, rather than using this crude hack.
if (!types::isCXX(InputType)) {
// FIXME: This should behave just like a warning flag, and thus should also
// respect -Weverything, -Wno-everything, -Werror=write-strings, and so on.
Arg *WriteStrings =
Args.getLastArg(options::OPT_Wwrite_strings,
options::OPT_Wno_write_strings, options::OPT_w);
if (WriteStrings &&
WriteStrings->getOption().matches(options::OPT_Wwrite_strings))
CmdArgs.push_back("-fconst-strings");
}
// GCC provides a macro definition '__DEPRECATED' when -Wdeprecated is active
// during C++ compilation, which it is by default. GCC keeps this define even
// in the presence of '-w', match this behavior bug-for-bug.
if (types::isCXX(InputType) &&
Args.hasFlag(options::OPT_Wdeprecated, options::OPT_Wno_deprecated,
true)) {
CmdArgs.push_back("-fdeprecated-macro");
}
// Translate GCC's misnamer '-fasm' arguments to '-fgnu-keywords'.
if (Arg *Asm = Args.getLastArg(options::OPT_fasm, options::OPT_fno_asm)) {
if (Asm->getOption().matches(options::OPT_fasm))
CmdArgs.push_back("-fgnu-keywords");
else
CmdArgs.push_back("-fno-gnu-keywords");
}
if (ShouldDisableDwarfDirectory(Args, getToolChain()))
CmdArgs.push_back("-fno-dwarf-directory-asm");
if (ShouldDisableAutolink(Args, getToolChain()))
CmdArgs.push_back("-fno-autolink");
// Add in -fdebug-compilation-dir if necessary.
addDebugCompDirArg(Args, CmdArgs);
if (Arg *A = Args.getLastArg(options::OPT_ftemplate_depth_,
options::OPT_ftemplate_depth_EQ)) {
CmdArgs.push_back("-ftemplate-depth");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_foperator_arrow_depth_EQ)) {
CmdArgs.push_back("-foperator-arrow-depth");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_depth_EQ)) {
CmdArgs.push_back("-fconstexpr-depth");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_steps_EQ)) {
CmdArgs.push_back("-fconstexpr-steps");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_fbracket_depth_EQ)) {
CmdArgs.push_back("-fbracket-depth");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_Wlarge_by_value_copy_EQ,
options::OPT_Wlarge_by_value_copy_def)) {
if (A->getNumValues()) {
StringRef bytes = A->getValue();
CmdArgs.push_back(Args.MakeArgString("-Wlarge-by-value-copy=" + bytes));
} else
CmdArgs.push_back("-Wlarge-by-value-copy=64"); // default value
}
if (Args.hasArg(options::OPT_relocatable_pch))
CmdArgs.push_back("-relocatable-pch");
if (Arg *A = Args.getLastArg(options::OPT_fconstant_string_class_EQ)) {
CmdArgs.push_back("-fconstant-string-class");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_ftabstop_EQ)) {
CmdArgs.push_back("-ftabstop");
CmdArgs.push_back(A->getValue());
}
CmdArgs.push_back("-ferror-limit");
if (Arg *A = Args.getLastArg(options::OPT_ferror_limit_EQ))
CmdArgs.push_back(A->getValue());
else
CmdArgs.push_back("19");
if (Arg *A = Args.getLastArg(options::OPT_fmacro_backtrace_limit_EQ)) {
CmdArgs.push_back("-fmacro-backtrace-limit");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_ftemplate_backtrace_limit_EQ)) {
CmdArgs.push_back("-ftemplate-backtrace-limit");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_backtrace_limit_EQ)) {
CmdArgs.push_back("-fconstexpr-backtrace-limit");
CmdArgs.push_back(A->getValue());
}
// Pass -fmessage-length=.
CmdArgs.push_back("-fmessage-length");
if (Arg *A = Args.getLastArg(options::OPT_fmessage_length_EQ)) {
CmdArgs.push_back(A->getValue());
} else {
// If -fmessage-length=N was not specified, determine whether this is a
// terminal and, if so, implicitly define -fmessage-length appropriately.
unsigned N = llvm::sys::Process::StandardErrColumns();
CmdArgs.push_back(Args.MakeArgString(Twine(N)));
}
// -fvisibility= and -fvisibility-ms-compat are of a piece.
if (const Arg *A = Args.getLastArg(options::OPT_fvisibility_EQ,
options::OPT_fvisibility_ms_compat)) {
if (A->getOption().matches(options::OPT_fvisibility_EQ)) {
CmdArgs.push_back("-fvisibility");
CmdArgs.push_back(A->getValue());
} else {
assert(A->getOption().matches(options::OPT_fvisibility_ms_compat));
CmdArgs.push_back("-fvisibility");
CmdArgs.push_back("hidden");
CmdArgs.push_back("-ftype-visibility");
CmdArgs.push_back("default");
}
}
Args.AddLastArg(CmdArgs, options::OPT_fvisibility_inlines_hidden);
Args.AddLastArg(CmdArgs, options::OPT_ftlsmodel_EQ);
// -fhosted is default.
if (Args.hasFlag(options::OPT_ffreestanding, options::OPT_fhosted, false) ||
KernelOrKext)
CmdArgs.push_back("-ffreestanding");
// Forward -f (flag) options which we can pass directly.
Args.AddLastArg(CmdArgs, options::OPT_femit_all_decls);
Args.AddLastArg(CmdArgs, options::OPT_fheinous_gnu_extensions);
Args.AddLastArg(CmdArgs, options::OPT_fstandalone_debug);
Args.AddLastArg(CmdArgs, options::OPT_fno_standalone_debug);
Args.AddLastArg(CmdArgs, options::OPT_fno_operator_names);
// AltiVec language extensions aren't relevant for assembling.
if (!isa<PreprocessJobAction>(JA) ||
Output.getType() != types::TY_PP_Asm)
Args.AddLastArg(CmdArgs, options::OPT_faltivec);
Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_show_template_tree);
Args.AddLastArg(CmdArgs, options::OPT_fno_elide_type);
const SanitizerArgs &Sanitize = getToolChain().getSanitizerArgs();
Sanitize.addArgs(Args, CmdArgs);
if (!Args.hasFlag(options::OPT_fsanitize_recover,
options::OPT_fno_sanitize_recover,
true))
CmdArgs.push_back("-fno-sanitize-recover");
if (Args.hasFlag(options::OPT_fsanitize_undefined_trap_on_error,
options::OPT_fno_sanitize_undefined_trap_on_error, false))
CmdArgs.push_back("-fsanitize-undefined-trap-on-error");
// Report an error for -faltivec on anything other than PowerPC.
if (const Arg *A = Args.getLastArg(options::OPT_faltivec))
if (!(getToolChain().getArch() == llvm::Triple::ppc ||
getToolChain().getArch() == llvm::Triple::ppc64 ||
getToolChain().getArch() == llvm::Triple::ppc64le))
D.Diag(diag::err_drv_argument_only_allowed_with)
<< A->getAsString(Args) << "ppc/ppc64/ppc64le";
if (getToolChain().SupportsProfiling())
Args.AddLastArg(CmdArgs, options::OPT_pg);
// -flax-vector-conversions is default.
if (!Args.hasFlag(options::OPT_flax_vector_conversions,
options::OPT_fno_lax_vector_conversions))
CmdArgs.push_back("-fno-lax-vector-conversions");
if (Args.getLastArg(options::OPT_fapple_kext))
CmdArgs.push_back("-fapple-kext");
Args.AddLastArg(CmdArgs, options::OPT_fobjc_sender_dependent_dispatch);
Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_print_source_range_info);
Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_parseable_fixits);
Args.AddLastArg(CmdArgs, options::OPT_ftime_report);
Args.AddLastArg(CmdArgs, options::OPT_ftrapv);
if (Arg *A = Args.getLastArg(options::OPT_ftrapv_handler_EQ)) {
CmdArgs.push_back("-ftrapv-handler");
CmdArgs.push_back(A->getValue());
}
Args.AddLastArg(CmdArgs, options::OPT_ftrap_function_EQ);
// -fno-strict-overflow implies -fwrapv if it isn't disabled, but
// -fstrict-overflow won't turn off an explicitly enabled -fwrapv.
if (Arg *A = Args.getLastArg(options::OPT_fwrapv,
options::OPT_fno_wrapv)) {
if (A->getOption().matches(options::OPT_fwrapv))
CmdArgs.push_back("-fwrapv");
} else if (Arg *A = Args.getLastArg(options::OPT_fstrict_overflow,
options::OPT_fno_strict_overflow)) {
if (A->getOption().matches(options::OPT_fno_strict_overflow))
CmdArgs.push_back("-fwrapv");
}
if (Arg *A = Args.getLastArg(options::OPT_freroll_loops,
options::OPT_fno_reroll_loops))
if (A->getOption().matches(options::OPT_freroll_loops))
CmdArgs.push_back("-freroll-loops");
Args.AddLastArg(CmdArgs, options::OPT_fwritable_strings);
Args.AddLastArg(CmdArgs, options::OPT_funroll_loops,
options::OPT_fno_unroll_loops);
Args.AddLastArg(CmdArgs, options::OPT_pthread);
// -stack-protector=0 is default.
unsigned StackProtectorLevel = 0;
if (Arg *A = Args.getLastArg(options::OPT_fno_stack_protector,
options::OPT_fstack_protector_all,
options::OPT_fstack_protector_strong,
options::OPT_fstack_protector)) {
if (A->getOption().matches(options::OPT_fstack_protector)) {
StackProtectorLevel = std::max<unsigned>(LangOptions::SSPOn,
getToolChain().GetDefaultStackProtectorLevel(KernelOrKext));
} else if (A->getOption().matches(options::OPT_fstack_protector_strong))
StackProtectorLevel = LangOptions::SSPStrong;
else if (A->getOption().matches(options::OPT_fstack_protector_all))
StackProtectorLevel = LangOptions::SSPReq;
} else {
StackProtectorLevel =
getToolChain().GetDefaultStackProtectorLevel(KernelOrKext);
}
if (StackProtectorLevel) {
CmdArgs.push_back("-stack-protector");
CmdArgs.push_back(Args.MakeArgString(Twine(StackProtectorLevel)));
}
// --param ssp-buffer-size=
for (arg_iterator it = Args.filtered_begin(options::OPT__param),
ie = Args.filtered_end(); it != ie; ++it) {
StringRef Str((*it)->getValue());
if (Str.startswith("ssp-buffer-size=")) {
if (StackProtectorLevel) {
CmdArgs.push_back("-stack-protector-buffer-size");
// FIXME: Verify the argument is a valid integer.
CmdArgs.push_back(Args.MakeArgString(Str.drop_front(16)));
}
(*it)->claim();
}
}
// Translate -mstackrealign
if (Args.hasFlag(options::OPT_mstackrealign, options::OPT_mno_stackrealign,
false)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-force-align-stack");
}
if (!Args.hasFlag(options::OPT_mno_stackrealign, options::OPT_mstackrealign,
false)) {
CmdArgs.push_back(Args.MakeArgString("-mstackrealign"));
}
if (Args.hasArg(options::OPT_mstack_alignment)) {
StringRef alignment = Args.getLastArgValue(options::OPT_mstack_alignment);
CmdArgs.push_back(Args.MakeArgString("-mstack-alignment=" + alignment));
}
// -mkernel implies -mstrict-align; don't add the redundant option.
if (!KernelOrKext) {
if (Arg *A = Args.getLastArg(options::OPT_mno_unaligned_access,
options::OPT_munaligned_access)) {
if (A->getOption().matches(options::OPT_mno_unaligned_access)) {
CmdArgs.push_back("-backend-option");
if (getToolChain().getTriple().getArch() == llvm::Triple::aarch64 ||
getToolChain().getTriple().getArch() == llvm::Triple::aarch64_be ||
getToolChain().getTriple().getArch() == llvm::Triple::arm64 ||
getToolChain().getTriple().getArch() == llvm::Triple::arm64_be)
CmdArgs.push_back("-aarch64-strict-align");
else
CmdArgs.push_back("-arm-strict-align");
} else {
CmdArgs.push_back("-backend-option");
if (getToolChain().getTriple().getArch() == llvm::Triple::aarch64 ||
getToolChain().getTriple().getArch() == llvm::Triple::aarch64_be ||
getToolChain().getTriple().getArch() == llvm::Triple::arm64 ||
getToolChain().getTriple().getArch() == llvm::Triple::arm64_be)
CmdArgs.push_back("-aarch64-no-strict-align");
else
CmdArgs.push_back("-arm-no-strict-align");
}
}
}
if (Arg *A = Args.getLastArg(options::OPT_mrestrict_it,
options::OPT_mno_restrict_it)) {
if (A->getOption().matches(options::OPT_mrestrict_it)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-restrict-it");
} else {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-no-restrict-it");
}
} else if (TT.isOSWindows() && (TT.getArch() == llvm::Triple::arm ||
TT.getArch() == llvm::Triple::thumb)) {
// Windows on ARM expects restricted IT blocks
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-restrict-it");
}
if (TT.getArch() == llvm::Triple::arm ||
TT.getArch() == llvm::Triple::thumb) {
if (Arg *A = Args.getLastArg(options::OPT_mlong_calls,
options::OPT_mno_long_calls)) {
if (A->getOption().matches(options::OPT_mlong_calls)) {
CmdArgs.push_back("-backend-option");
CmdArgs.push_back("-arm-long-calls");
}
}
}
// Forward -f options with positive and negative forms; we translate
// these by hand.
if (Arg *A = Args.getLastArg(options::OPT_fprofile_sample_use_EQ)) {
StringRef fname = A->getValue();
if (!llvm::sys::fs::exists(fname))
D.Diag(diag::err_drv_no_such_file) << fname;
else
A->render(Args, CmdArgs);
}
if (Arg *A = Args.getLastArg(options::OPT_Rpass_EQ))
A->render(Args, CmdArgs);
if (Arg *A = Args.getLastArg(options::OPT_Rpass_missed_EQ))
A->render(Args, CmdArgs);
if (Arg *A = Args.getLastArg(options::OPT_Rpass_analysis_EQ))
A->render(Args, CmdArgs);
if (Args.hasArg(options::OPT_mkernel)) {
if (!Args.hasArg(options::OPT_fapple_kext) && types::isCXX(InputType))
CmdArgs.push_back("-fapple-kext");
if (!Args.hasArg(options::OPT_fbuiltin))
CmdArgs.push_back("-fno-builtin");
Args.ClaimAllArgs(options::OPT_fno_builtin);
}
// -fbuiltin is default.
else if (!Args.hasFlag(options::OPT_fbuiltin, options::OPT_fno_builtin))
CmdArgs.push_back("-fno-builtin");
if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
options::OPT_fno_assume_sane_operator_new))
CmdArgs.push_back("-fno-assume-sane-operator-new");
// -fblocks=0 is default.
if (Args.hasFlag(options::OPT_fblocks, options::OPT_fno_blocks,
getToolChain().IsBlocksDefault()) ||
(Args.hasArg(options::OPT_fgnu_runtime) &&
Args.hasArg(options::OPT_fobjc_nonfragile_abi) &&
!Args.hasArg(options::OPT_fno_blocks))) {
CmdArgs.push_back("-fblocks");
if (!Args.hasArg(options::OPT_fgnu_runtime) &&
!getToolChain().hasBlocksRuntime())
CmdArgs.push_back("-fblocks-runtime-optional");
}
// -fmodules enables modules (off by default). However, for C++/Objective-C++,
// users must also pass -fcxx-modules. The latter flag will disappear once the
// modules implementation is solid for C++/Objective-C++ programs as well.
bool HaveModules = false;
if (Args.hasFlag(options::OPT_fmodules, options::OPT_fno_modules, false)) {
bool AllowedInCXX = Args.hasFlag(options::OPT_fcxx_modules,
options::OPT_fno_cxx_modules,
false);
if (AllowedInCXX || !types::isCXX(InputType)) {
CmdArgs.push_back("-fmodules");
HaveModules = true;
}
}
// -fmodule-maps enables module map processing (off by default) for header
// checking. It is implied by -fmodules.
if (Args.hasFlag(options::OPT_fmodule_maps, options::OPT_fno_module_maps,
false)) {
CmdArgs.push_back("-fmodule-maps");
}
// -fmodules-decluse checks that modules used are declared so (off by
// default).
if (Args.hasFlag(options::OPT_fmodules_decluse,
options::OPT_fno_modules_decluse,
false)) {
CmdArgs.push_back("-fmodules-decluse");
}
// -fmodules-strict-decluse is like -fmodule-decluse, but also checks that
// all #included headers are part of modules.
if (Args.hasFlag(options::OPT_fmodules_strict_decluse,
options::OPT_fno_modules_strict_decluse,
false)) {
CmdArgs.push_back("-fmodules-strict-decluse");
}
// -fmodule-name specifies the module that is currently being built (or
// used for header checking by -fmodule-maps).
if (Arg *A = Args.getLastArg(options::OPT_fmodule_name))
A->render(Args, CmdArgs);
// -fmodule-map-file can be used to specify a file containing module
// definitions.
if (Arg *A = Args.getLastArg(options::OPT_fmodule_map_file))
A->render(Args, CmdArgs);
// -fmodule-cache-path specifies where our module files should be written.
SmallString<128> ModuleCachePath;
if (Arg *A = Args.getLastArg(options::OPT_fmodules_cache_path))
ModuleCachePath = A->getValue();
if (HaveModules) {
if (C.isForDiagnostics()) {
// When generating crash reports, we want to emit the modules along with
// the reproduction sources, so we ignore any provided module path.
ModuleCachePath = Output.getFilename();
llvm::sys::path::replace_extension(ModuleCachePath, ".cache");
llvm::sys::path::append(ModuleCachePath, "modules");
} else if (ModuleCachePath.empty()) {
// No module path was provided: use the default.
llvm::sys::path::system_temp_directory(/*erasedOnReboot=*/false,
ModuleCachePath);
llvm::sys::path::append(ModuleCachePath, "org.llvm.clang");
llvm::sys::path::append(ModuleCachePath, "ModuleCache");
}
const char Arg[] = "-fmodules-cache-path=";
ModuleCachePath.insert(ModuleCachePath.begin(), Arg, Arg + strlen(Arg));
CmdArgs.push_back(Args.MakeArgString(ModuleCachePath));
}
// When building modules and generating crashdumps, we need to dump a module
// dependency VFS alongside the output.
if (HaveModules && C.isForDiagnostics()) {
SmallString<128> VFSDir(Output.getFilename());
llvm::sys::path::replace_extension(VFSDir, ".cache");
llvm::sys::path::append(VFSDir, "vfs");
CmdArgs.push_back("-module-dependency-dir");
CmdArgs.push_back(Args.MakeArgString(VFSDir));
}
if (Arg *A = Args.getLastArg(options::OPT_fmodules_user_build_path))
if (HaveModules)
A->render(Args, CmdArgs);
// Pass through all -fmodules-ignore-macro arguments.
Args.AddAllArgs(CmdArgs, options::OPT_fmodules_ignore_macro);
Args.AddLastArg(CmdArgs, options::OPT_fmodules_prune_interval);
Args.AddLastArg(CmdArgs, options::OPT_fmodules_prune_after);
Args.AddLastArg(CmdArgs, options::OPT_fbuild_session_timestamp);
if (Args.getLastArg(options::OPT_fmodules_validate_once_per_build_session)) {
if (!Args.getLastArg(options::OPT_fbuild_session_timestamp))
D.Diag(diag::err_drv_modules_validate_once_requires_timestamp);
Args.AddLastArg(CmdArgs,
options::OPT_fmodules_validate_once_per_build_session);
}
Args.AddLastArg(CmdArgs, options::OPT_fmodules_validate_system_headers);
// -faccess-control is default.
if (Args.hasFlag(options::OPT_fno_access_control,
options::OPT_faccess_control,
false))
CmdArgs.push_back("-fno-access-control");
// -felide-constructors is the default.
if (Args.hasFlag(options::OPT_fno_elide_constructors,
options::OPT_felide_constructors,
false))
CmdArgs.push_back("-fno-elide-constructors");
// -frtti is default.
if (!Args.hasFlag(options::OPT_frtti, options::OPT_fno_rtti) ||
KernelOrKext) {
CmdArgs.push_back("-fno-rtti");
// -fno-rtti cannot usefully be combined with -fsanitize=vptr.
if (Sanitize.sanitizesVptr()) {
std::string NoRttiArg =
Args.getLastArg(options::OPT_mkernel,
options::OPT_fapple_kext,
options::OPT_fno_rtti)->getAsString(Args);
D.Diag(diag::err_drv_argument_not_allowed_with)
<< "-fsanitize=vptr" << NoRttiArg;
}
}
// -fshort-enums=0 is default for all architectures except Hexagon.
if (Args.hasFlag(options::OPT_fshort_enums,
options::OPT_fno_short_enums,
getToolChain().getArch() ==
llvm::Triple::hexagon))
CmdArgs.push_back("-fshort-enums");
// -fsigned-char is default.
if (!Args.hasFlag(options::OPT_fsigned_char, options::OPT_funsigned_char,
isSignedCharDefault(getToolChain().getTriple())))
CmdArgs.push_back("-fno-signed-char");
// -fthreadsafe-static is default.
if (!Args.hasFlag(options::OPT_fthreadsafe_statics,
options::OPT_fno_threadsafe_statics))
CmdArgs.push_back("-fno-threadsafe-statics");
// -fuse-cxa-atexit is default.
if (!Args.hasFlag(options::OPT_fuse_cxa_atexit,
options::OPT_fno_use_cxa_atexit,
!IsWindowsCygnus && !IsWindowsGNU &&
getToolChain().getArch() != llvm::Triple::hexagon &&
getToolChain().getArch() != llvm::Triple::xcore) ||
KernelOrKext)
CmdArgs.push_back("-fno-use-cxa-atexit");
// -fms-extensions=0 is default.
if (Args.hasFlag(options::OPT_fms_extensions, options::OPT_fno_ms_extensions,
(IsWindowsMSVC) &&
(InputType != types::TY_MDF_CM)))
CmdArgs.push_back("-fms-extensions");
// -fms-compatibility=0 is default.
if (Args.hasFlag(options::OPT_fms_compatibility,
options::OPT_fno_ms_compatibility,
(IsWindowsMSVC && Args.hasFlag(options::OPT_fms_extensions,
options::OPT_fno_ms_extensions,
(InputType != types::TY_MDF_CM)))))
CmdArgs.push_back("-fms-compatibility");
// -fms-compatibility-version=17.00 is default.
if (Args.hasFlag(options::OPT_fms_extensions, options::OPT_fno_ms_extensions,
IsWindowsMSVC) || Args.hasArg(options::OPT_fmsc_version) ||
Args.hasArg(options::OPT_fms_compatibility_version)) {
const Arg *MSCVersion = Args.getLastArg(options::OPT_fmsc_version);
const Arg *MSCompatibilityVersion =
Args.getLastArg(options::OPT_fms_compatibility_version);
if (MSCVersion && MSCompatibilityVersion)
D.Diag(diag::err_drv_argument_not_allowed_with)
<< MSCVersion->getAsString(Args)
<< MSCompatibilityVersion->getAsString(Args);
std::string Ver;
if (MSCompatibilityVersion)
Ver = Args.getLastArgValue(options::OPT_fms_compatibility_version);
else if (MSCVersion)
Ver = getMSCompatibilityVersion(MSCVersion->getValue());
if (Ver.empty())
CmdArgs.push_back("-fms-compatibility-version=17.00");
else
CmdArgs.push_back(Args.MakeArgString("-fms-compatibility-version=" + Ver));
}
// -fm_ix86=600 is default.
if (Args.hasFlag(options::OPT_fms_extensions, options::OPT_fno_ms_extensions,
getToolChain().getTriple().getOS() == llvm::Triple::Win32) ||
Args.hasArg(options::OPT_fm_ix86)) {
StringRef m_ix86 = Args.getLastArgValue(options::OPT_fm_ix86);
if (!m_ix86.empty())
CmdArgs.push_back(Args.MakeArgString("-fm_ix86=" + m_ix86));
}
// -fno-borland-extensions is default.
if (Args.hasFlag(options::OPT_fborland_extensions,
options::OPT_fno_borland_extensions, false))
CmdArgs.push_back("-fborland-extensions");
// -fno-delayed-template-parsing is default, except for Windows where MSVC STL
// needs it.
if (Args.hasFlag(options::OPT_fdelayed_template_parsing,
options::OPT_fno_delayed_template_parsing, IsWindowsMSVC))
CmdArgs.push_back("-fdelayed-template-parsing");
// -fgnu-keywords default varies depending on language; only pass if
// specified.
if (Arg *A = Args.getLastArg(options::OPT_fgnu_keywords,
options::OPT_fno_gnu_keywords))
A->render(Args, CmdArgs);
if (Args.hasFlag(options::OPT_fgnu89_inline,
options::OPT_fno_gnu89_inline,
false))
CmdArgs.push_back("-fgnu89-inline");
if (Args.hasArg(options::OPT_fno_inline))
CmdArgs.push_back("-fno-inline");
if (Args.hasArg(options::OPT_fno_inline_functions))
CmdArgs.push_back("-fno-inline-functions");
ObjCRuntime objcRuntime = AddObjCRuntimeArgs(Args, CmdArgs, rewriteKind);
// -fobjc-dispatch-method is only relevant with the nonfragile-abi, and
// legacy is the default. Except for deployment taget of 10.5,
// next runtime is always legacy dispatch and -fno-objc-legacy-dispatch
// gets ignored silently.
if (objcRuntime.isNonFragile()) {
if (!Args.hasFlag(options::OPT_fobjc_legacy_dispatch,
options::OPT_fno_objc_legacy_dispatch,
objcRuntime.isLegacyDispatchDefaultForArch(
getToolChain().getArch()))) {
if (getToolChain().UseObjCMixedDispatch())
CmdArgs.push_back("-fobjc-dispatch-method=mixed");
else
CmdArgs.push_back("-fobjc-dispatch-method=non-legacy");
}
}
// When ObjectiveC legacy runtime is in effect on MacOSX,
// turn on the option to do Array/Dictionary subscripting
// by default.
if (getToolChain().getTriple().getArch() == llvm::Triple::x86 &&
getToolChain().getTriple().isMacOSX() &&
!getToolChain().getTriple().isMacOSXVersionLT(10, 7) &&
objcRuntime.getKind() == ObjCRuntime::FragileMacOSX &&
objcRuntime.isNeXTFamily())
CmdArgs.push_back("-fobjc-subscripting-legacy-runtime");
// -fencode-extended-block-signature=1 is default.
if (getToolChain().IsEncodeExtendedBlockSignatureDefault()) {
CmdArgs.push_back("-fencode-extended-block-signature");
}
// Allow -fno-objc-arr to trump -fobjc-arr/-fobjc-arc.
// NOTE: This logic is duplicated in ToolChains.cpp.
bool ARC = isObjCAutoRefCount(Args);
if (ARC) {
getToolChain().CheckObjCARC();
CmdArgs.push_back("-fobjc-arc");
// FIXME: It seems like this entire block, and several around it should be
// wrapped in isObjC, but for now we just use it here as this is where it
// was being used previously.
if (types::isCXX(InputType) && types::isObjC(InputType)) {
if (getToolChain().GetCXXStdlibType(Args) == ToolChain::CST_Libcxx)
CmdArgs.push_back("-fobjc-arc-cxxlib=libc++");
else
CmdArgs.push_back("-fobjc-arc-cxxlib=libstdc++");
}
// Allow the user to enable full exceptions code emission.
// We define off for Objective-CC, on for Objective-C++.
if (Args.hasFlag(options::OPT_fobjc_arc_exceptions,
options::OPT_fno_objc_arc_exceptions,
/*default*/ types::isCXX(InputType)))
CmdArgs.push_back("-fobjc-arc-exceptions");
}
// -fobjc-infer-related-result-type is the default, except in the Objective-C
// rewriter.
if (rewriteKind != RK_None)
CmdArgs.push_back("-fno-objc-infer-related-result-type");
// Handle -fobjc-gc and -fobjc-gc-only. They are exclusive, and -fobjc-gc-only
// takes precedence.
const Arg *GCArg = Args.getLastArg(options::OPT_fobjc_gc_only);
if (!GCArg)
GCArg = Args.getLastArg(options::OPT_fobjc_gc);
if (GCArg) {
if (ARC) {
D.Diag(diag::err_drv_objc_gc_arr)
<< GCArg->getAsString(Args);
} else if (getToolChain().SupportsObjCGC()) {
GCArg->render(Args, CmdArgs);
} else {
// FIXME: We should move this to a hard error.
D.Diag(diag::warn_drv_objc_gc_unsupported)
<< GCArg->getAsString(Args);
}
}
// Handle GCC-style exception args.
if (!C.getDriver().IsCLMode())
addExceptionArgs(Args, InputType, getToolChain().getTriple(), KernelOrKext,
objcRuntime, CmdArgs);
if (getToolChain().UseSjLjExceptions())
CmdArgs.push_back("-fsjlj-exceptions");
// C++ "sane" operator new.
if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
options::OPT_fno_assume_sane_operator_new))
CmdArgs.push_back("-fno-assume-sane-operator-new");
// -fconstant-cfstrings is default, and may be subject to argument translation
// on Darwin.
if (!Args.hasFlag(options::OPT_fconstant_cfstrings,
options::OPT_fno_constant_cfstrings) ||
!Args.hasFlag(options::OPT_mconstant_cfstrings,
options::OPT_mno_constant_cfstrings))
CmdArgs.push_back("-fno-constant-cfstrings");
// -fshort-wchar default varies depending on platform; only
// pass if specified.
if (Arg *A = Args.getLastArg(options::OPT_fshort_wchar,
options::OPT_fno_short_wchar))
A->render(Args, CmdArgs);
// -fno-pascal-strings is default, only pass non-default.
if (Args.hasFlag(options::OPT_fpascal_strings,
options::OPT_fno_pascal_strings,
false))
CmdArgs.push_back("-fpascal-strings");
// Honor -fpack-struct= and -fpack-struct, if given. Note that
// -fno-pack-struct doesn't apply to -fpack-struct=.
if (Arg *A = Args.getLastArg(options::OPT_fpack_struct_EQ)) {
std::string PackStructStr = "-fpack-struct=";
PackStructStr += A->getValue();
CmdArgs.push_back(Args.MakeArgString(PackStructStr));
} else if (Args.hasFlag(options::OPT_fpack_struct,
options::OPT_fno_pack_struct, false)) {
CmdArgs.push_back("-fpack-struct=1");
}
if (KernelOrKext || isNoCommonDefault(getToolChain().getTriple())) {
if (!Args.hasArg(options::OPT_fcommon))
CmdArgs.push_back("-fno-common");
Args.ClaimAllArgs(options::OPT_fno_common);
}
// -fcommon is default, only pass non-default.
else if (!Args.hasFlag(options::OPT_fcommon, options::OPT_fno_common))
CmdArgs.push_back("-fno-common");
// -fsigned-bitfields is default, and clang doesn't yet support
// -funsigned-bitfields.
if (!Args.hasFlag(options::OPT_fsigned_bitfields,
options::OPT_funsigned_bitfields))
D.Diag(diag::warn_drv_clang_unsupported)
<< Args.getLastArg(options::OPT_funsigned_bitfields)->getAsString(Args);
// -fsigned-bitfields is default, and clang doesn't support -fno-for-scope.
if (!Args.hasFlag(options::OPT_ffor_scope,
options::OPT_fno_for_scope))
D.Diag(diag::err_drv_clang_unsupported)
<< Args.getLastArg(options::OPT_fno_for_scope)->getAsString(Args);
// -finput_charset=UTF-8 is default. Reject others
if (Arg *inputCharset = Args.getLastArg(
options::OPT_finput_charset_EQ)) {
StringRef value = inputCharset->getValue();
if (value != "UTF-8")
D.Diag(diag::err_drv_invalid_value) << inputCharset->getAsString(Args) << value;
}
// -fcaret-diagnostics is default.
if (!Args.hasFlag(options::OPT_fcaret_diagnostics,
options::OPT_fno_caret_diagnostics, true))
CmdArgs.push_back("-fno-caret-diagnostics");
// -fdiagnostics-fixit-info is default, only pass non-default.
if (!Args.hasFlag(options::OPT_fdiagnostics_fixit_info,
options::OPT_fno_diagnostics_fixit_info))
CmdArgs.push_back("-fno-diagnostics-fixit-info");
// Enable -fdiagnostics-show-option by default.
if (Args.hasFlag(options::OPT_fdiagnostics_show_option,
options::OPT_fno_diagnostics_show_option))
CmdArgs.push_back("-fdiagnostics-show-option");
if (const Arg *A =
Args.getLastArg(options::OPT_fdiagnostics_show_category_EQ)) {
CmdArgs.push_back("-fdiagnostics-show-category");
CmdArgs.push_back(A->getValue());
}
if (const Arg *A =
Args.getLastArg(options::OPT_fdiagnostics_format_EQ)) {
CmdArgs.push_back("-fdiagnostics-format");
CmdArgs.push_back(A->getValue());
}
if (Arg *A = Args.getLastArg(
options::OPT_fdiagnostics_show_note_include_stack,
options::OPT_fno_diagnostics_show_note_include_stack)) {
if (A->getOption().matches(
options::OPT_fdiagnostics_show_note_include_stack))
CmdArgs.push_back("-fdiagnostics-show-note-include-stack");
else
CmdArgs.push_back("-fno-diagnostics-show-note-include-stack");
}
// Color diagnostics are the default, unless the terminal doesn't support
// them.
// Support both clang's -f[no-]color-diagnostics and gcc's
// -f[no-]diagnostics-colors[=never|always|auto].
enum { Colors_On, Colors_Off, Colors_Auto } ShowColors = Colors_Auto;
for (const auto &Arg : Args) {
const Option &O = Arg->getOption();
if (!O.matches(options::OPT_fcolor_diagnostics) &&
!O.matches(options::OPT_fdiagnostics_color) &&
!O.matches(options::OPT_fno_color_diagnostics) &&
!O.matches(options::OPT_fno_diagnostics_color) &&
!O.matches(options::OPT_fdiagnostics_color_EQ))
continue;
Arg->claim();
if (O.matches(options::OPT_fcolor_diagnostics) ||
O.matches(options::OPT_fdiagnostics_color)) {
ShowColors = Colors_On;
} else if (O.matches(options::OPT_fno_color_diagnostics) ||
O.matches(options::OPT_fno_diagnostics_color)) {
ShowColors = Colors_Off;
} else {
assert(O.matches(options::OPT_fdiagnostics_color_EQ));
StringRef value(Arg->getValue());
if (value == "always")
ShowColors = Colors_On;
else if (value == "never")
ShowColors = Colors_Off;
else if (value == "auto")
ShowColors = Colors_Auto;
else
getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported)
<< ("-fdiagnostics-color=" + value).str();
}
}
if (ShowColors == Colors_On ||
(ShowColors == Colors_Auto && llvm::sys::Process::StandardErrHasColors()))
CmdArgs.push_back("-fcolor-diagnostics");
if (Args.hasArg(options::OPT_fansi_escape_codes))
CmdArgs.push_back("-fansi-escape-codes");
if (!Args.hasFlag(options::OPT_fshow_source_location,
options::OPT_fno_show_source_location))
CmdArgs.push_back("-fno-show-source-location");
if (!Args.hasFlag(options::OPT_fshow_column,
options::OPT_fno_show_column,
true))
CmdArgs.push_back("-fno-show-column");
if (!Args.hasFlag(options::OPT_fspell_checking,
options::OPT_fno_spell_checking))
CmdArgs.push_back("-fno-spell-checking");
// -fno-asm-blocks is default.
if (Args.hasFlag(options::OPT_fasm_blocks, options::OPT_fno_asm_blocks,
false))
CmdArgs.push_back("-fasm-blocks");
// Enable vectorization per default according to the optimization level
// selected. For optimization levels that want vectorization we use the alias
// option to simplify the hasFlag logic.
bool EnableVec = shouldEnableVectorizerAtOLevel(Args, false);
OptSpecifier VectorizeAliasOption = EnableVec ? options::OPT_O_Group :
options::OPT_fvectorize;
if (Args.hasFlag(options::OPT_fvectorize, VectorizeAliasOption,
options::OPT_fno_vectorize, EnableVec))
CmdArgs.push_back("-vectorize-loops");
// -fslp-vectorize is enabled based on the optimization level selected.
bool EnableSLPVec = shouldEnableVectorizerAtOLevel(Args, true);
OptSpecifier SLPVectAliasOption = EnableSLPVec ? options::OPT_O_Group :
options::OPT_fslp_vectorize;
if (Args.hasFlag(options::OPT_fslp_vectorize, SLPVectAliasOption,
options::OPT_fno_slp_vectorize, EnableSLPVec))
CmdArgs.push_back("-vectorize-slp");
// -fno-slp-vectorize-aggressive is default.
if (Args.hasFlag(options::OPT_fslp_vectorize_aggressive,
options::OPT_fno_slp_vectorize_aggressive, false))
CmdArgs.push_back("-vectorize-slp-aggressive");
if (Arg *A = Args.getLastArg(options::OPT_fshow_overloads_EQ))
A->render(Args, CmdArgs);
// -fdollars-in-identifiers default varies depending on platform and
// language; only pass if specified.
if (Arg *A = Args.getLastArg(options::OPT_fdollars_in_identifiers,
options::OPT_fno_dollars_in_identifiers)) {
if (A->getOption().matches(options::OPT_fdollars_in_identifiers))
CmdArgs.push_back("-fdollars-in-identifiers");
else
CmdArgs.push_back("-fno-dollars-in-identifiers");
}
// -funit-at-a-time is default, and we don't support -fno-unit-at-a-time for
// practical purposes.
if (Arg *A = Args.getLastArg(options::OPT_funit_at_a_time,
options::OPT_fno_unit_at_a_time)) {
if (A->getOption().matches(options::OPT_fno_unit_at_a_time))
D.Diag(diag::warn_drv_clang_unsupported) << A->getAsString(Args);
}
if (Args.hasFlag(options::OPT_fapple_pragma_pack,
options::OPT_fno_apple_pragma_pack, false))
CmdArgs.push_back("-fapple-pragma-pack");
// le32-specific flags:
// -fno-math-builtin: clang should not convert math builtins to intrinsics
// by default.
if (getToolChain().getArch() == llvm::Triple::le32) {
CmdArgs.push_back("-fno-math-builtin");
}
// Default to -fno-builtin-str{cat,cpy} on Darwin for ARM.
//
// FIXME: This is disabled until clang -cc1 supports -fno-builtin-foo. PR4941.
#if 0
if (getToolChain().getTriple().isOSDarwin() &&
(getToolChain().getArch() == llvm::Triple::arm ||
getToolChain().getArch() == llvm::Triple::thumb)) {
if (!Args.hasArg(options::OPT_fbuiltin_strcat))
CmdArgs.push_back("-fno-builtin-strcat");
if (!Args.hasArg(options::OPT_fbuiltin_strcpy))
CmdArgs.push_back("-fno-builtin-strcpy");
}
#endif
// Enable rewrite includes if the user's asked for it or if we're generating
// diagnostics.
// TODO: Once -module-dependency-dir works with -frewrite-includes it'd be
// nice to enable this when doing a crashdump for modules as well.
if (Args.hasFlag(options::OPT_frewrite_includes,
options::OPT_fno_rewrite_includes, false) ||
(C.isForDiagnostics() && !HaveModules))
CmdArgs.push_back("-frewrite-includes");
// Only allow -traditional or -traditional-cpp outside in preprocessing modes.
if (Arg *A = Args.getLastArg(options::OPT_traditional,
options::OPT_traditional_cpp)) {
if (isa<PreprocessJobAction>(JA))
CmdArgs.push_back("-traditional-cpp");
else
D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
}
Args.AddLastArg(CmdArgs, options::OPT_dM);
Args.AddLastArg(CmdArgs, options::OPT_dD);
// Handle serialized diagnostics.
if (Arg *A = Args.getLastArg(options::OPT__serialize_diags)) {
CmdArgs.push_back("-serialize-diagnostic-file");
CmdArgs.push_back(Args.MakeArgString(A->getValue()));
}
if (Args.hasArg(options::OPT_fretain_comments_from_system_headers))
CmdArgs.push_back("-fretain-comments-from-system-headers");
// Forward -fcomment-block-commands to -cc1.
Args.AddAllArgs(CmdArgs, options::OPT_fcomment_block_commands);
// Forward -fparse-all-comments to -cc1.
Args.AddAllArgs(CmdArgs, options::OPT_fparse_all_comments);
// Forward -Xclang arguments to -cc1, and -mllvm arguments to the LLVM option
// parser.
Args.AddAllArgValues(CmdArgs, options::OPT_Xclang);
for (arg_iterator it = Args.filtered_begin(options::OPT_mllvm),
ie = Args.filtered_end(); it != ie; ++it) {
(*it)->claim();
// We translate this by hand to the -cc1 argument, since nightly test uses
// it and developers have been trained to spell it with -mllvm.
if (StringRef((*it)->getValue(0)) == "-disable-llvm-optzns")
CmdArgs.push_back("-disable-llvm-optzns");
else
(*it)->render(Args, CmdArgs);
}
if (Output.getType() == types::TY_Dependencies) {
// Handled with other dependency code.
} else if (Output.isFilename()) {
if (D.CCCIsCM()) {
// When compiling for CM we allow '=' or ':' delimeters to be specified
// for backwards compatibility - we discard any such delimeters here.
const char *Filename = Output.getFilename();
while (*Filename == '=' || *Filename == ':')
++Filename;
if (strlen(Filename)) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Filename);
}
} else {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
}
} else {
assert(Output.isNothing() && "Invalid output.");
}
for (const auto &II : Inputs) {
addDashXForInput(Args, II, CmdArgs);
if (II.isFilename())
CmdArgs.push_back(II.getFilename());
else
II.getInputArg().renderAsInput(Args, CmdArgs);
}
Args.AddAllArgs(CmdArgs, options::OPT_undef);
const char *Exec = getToolChain().getDriver().getClangProgramPath();
// Optionally embed the -cc1 level arguments into the debug info, for build
// analysis.
if (getToolChain().UseDwarfDebugFlags()) {
ArgStringList OriginalArgs;
for (const auto &Arg : Args)
Arg->render(Args, OriginalArgs);
SmallString<256> Flags;
Flags += Exec;
for (unsigned i = 0, e = OriginalArgs.size(); i != e; ++i) {
Flags += " ";
Flags += OriginalArgs[i];
}
CmdArgs.push_back("-dwarf-debug-flags");
CmdArgs.push_back(Args.MakeArgString(Flags.str()));
}
// Add the split debug info name to the command lines here so we
// can propagate it to the backend.
bool SplitDwarf = Args.hasArg(options::OPT_gsplit_dwarf) &&
getToolChain().getTriple().isOSLinux() &&
(isa<AssembleJobAction>(JA) || isa<CompileJobAction>(JA));
const char *SplitDwarfOut;
if (SplitDwarf) {
CmdArgs.push_back("-split-dwarf-file");
SplitDwarfOut = SplitDebugName(Args, Inputs);
CmdArgs.push_back(SplitDwarfOut);
}
// Finally add the compile command to the compilation.
if (Args.hasArg(options::OPT__SLASH_fallback) &&
Output.getType() == types::TY_Object &&
(InputType == types::TY_C || InputType == types::TY_CXX)) {
Command *CLCommand = getCLFallback()->GetCommand(C, JA, Output, Inputs,
Args, LinkingOutput);
C.addCommand(new FallbackCommand(JA, *this, Exec, CmdArgs, CLCommand));
} else
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
// Handle the debug info splitting at object creation time if we're
// creating an object.
// TODO: Currently only works on linux with newer objcopy.
if (SplitDwarf && !isa<CompileJobAction>(JA))
SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output, SplitDwarfOut);
if (Arg *A = Args.getLastArg(options::OPT_pg))
if (Args.hasArg(options::OPT_fomit_frame_pointer))
D.Diag(diag::err_drv_argument_not_allowed_with)
<< "-fomit-frame-pointer" << A->getAsString(Args);
// Claim some arguments which clang supports automatically.
// -fpch-preprocess is used with gcc to add a special marker in the output to
// include the PCH file. Clang's PTH solution is completely transparent, so we
// do not need to deal with it at all.
Args.ClaimAllArgs(options::OPT_fpch_preprocess);
// Claim some arguments which clang doesn't support, but we don't
// care to warn the user about.
Args.ClaimAllArgs(options::OPT_clang_ignored_f_Group);
Args.ClaimAllArgs(options::OPT_clang_ignored_m_Group);
// Disable warnings for clang -E -emit-llvm foo.c
Args.ClaimAllArgs(options::OPT_emit_llvm);
}
/// Add options related to the Objective-C runtime/ABI.
///
/// Returns true if the runtime is non-fragile.
ObjCRuntime Clang::AddObjCRuntimeArgs(const ArgList &args,
ArgStringList &cmdArgs,
RewriteKind rewriteKind) const {
// Look for the controlling runtime option.
Arg *runtimeArg = args.getLastArg(options::OPT_fnext_runtime,
options::OPT_fgnu_runtime,
options::OPT_fobjc_runtime_EQ);
// Just forward -fobjc-runtime= to the frontend. This supercedes
// options about fragility.
if (runtimeArg &&
runtimeArg->getOption().matches(options::OPT_fobjc_runtime_EQ)) {
ObjCRuntime runtime;
StringRef value = runtimeArg->getValue();
if (runtime.tryParse(value)) {
getToolChain().getDriver().Diag(diag::err_drv_unknown_objc_runtime)
<< value;
}
runtimeArg->render(args, cmdArgs);
return runtime;
}
// Otherwise, we'll need the ABI "version". Version numbers are
// slightly confusing for historical reasons:
// 1 - Traditional "fragile" ABI
// 2 - Non-fragile ABI, version 1
// 3 - Non-fragile ABI, version 2
unsigned objcABIVersion = 1;
// If -fobjc-abi-version= is present, use that to set the version.
if (Arg *abiArg = args.getLastArg(options::OPT_fobjc_abi_version_EQ)) {
StringRef value = abiArg->getValue();
if (value == "1")
objcABIVersion = 1;
else if (value == "2")
objcABIVersion = 2;
else if (value == "3")
objcABIVersion = 3;
else
getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported)
<< value;
} else {
// Otherwise, determine if we are using the non-fragile ABI.
bool nonFragileABIIsDefault =
(rewriteKind == RK_NonFragile ||
(rewriteKind == RK_None &&
getToolChain().IsObjCNonFragileABIDefault()));
if (args.hasFlag(options::OPT_fobjc_nonfragile_abi,
options::OPT_fno_objc_nonfragile_abi,
nonFragileABIIsDefault)) {
// Determine the non-fragile ABI version to use.
#ifdef DISABLE_DEFAULT_NONFRAGILEABI_TWO
unsigned nonFragileABIVersion = 1;
#else
unsigned nonFragileABIVersion = 2;
#endif
if (Arg *abiArg = args.getLastArg(
options::OPT_fobjc_nonfragile_abi_version_EQ)) {
StringRef value = abiArg->getValue();
if (value == "1")
nonFragileABIVersion = 1;
else if (value == "2")
nonFragileABIVersion = 2;
else
getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported)
<< value;
}
objcABIVersion = 1 + nonFragileABIVersion;
} else {
objcABIVersion = 1;
}
}
// We don't actually care about the ABI version other than whether
// it's non-fragile.
bool isNonFragile = objcABIVersion != 1;
// If we have no runtime argument, ask the toolchain for its default runtime.
// However, the rewriter only really supports the Mac runtime, so assume that.
ObjCRuntime runtime;
if (!runtimeArg) {
switch (rewriteKind) {
case RK_None:
runtime = getToolChain().getDefaultObjCRuntime(isNonFragile);
break;
case RK_Fragile:
runtime = ObjCRuntime(ObjCRuntime::FragileMacOSX, VersionTuple());
break;
case RK_NonFragile:
runtime = ObjCRuntime(ObjCRuntime::MacOSX, VersionTuple());
break;
}
// -fnext-runtime
} else if (runtimeArg->getOption().matches(options::OPT_fnext_runtime)) {
// On Darwin, make this use the default behavior for the toolchain.
if (getToolChain().getTriple().isOSDarwin()) {
runtime = getToolChain().getDefaultObjCRuntime(isNonFragile);
// Otherwise, build for a generic macosx port.
} else {
runtime = ObjCRuntime(ObjCRuntime::MacOSX, VersionTuple());
}
// -fgnu-runtime
} else {
assert(runtimeArg->getOption().matches(options::OPT_fgnu_runtime));
// Legacy behaviour is to target the gnustep runtime if we are i
// non-fragile mode or the GCC runtime in fragile mode.
if (isNonFragile)
runtime = ObjCRuntime(ObjCRuntime::GNUstep, VersionTuple(1,6));
else
runtime = ObjCRuntime(ObjCRuntime::GCC, VersionTuple());
}
cmdArgs.push_back(args.MakeArgString(
"-fobjc-runtime=" + runtime.getAsString()));
return runtime;
}
static bool maybeConsumeDash(const std::string &EH, size_t &I) {
bool HaveDash = (I + 1 < EH.size() && EH[I + 1] == '-');
I += HaveDash;
return !HaveDash;
}
struct EHFlags {
EHFlags() : Synch(false), Asynch(false), NoExceptC(false) {}
bool Synch;
bool Asynch;
bool NoExceptC;
};
/// /EH controls whether to run destructor cleanups when exceptions are
/// thrown. There are three modifiers:
/// - s: Cleanup after "synchronous" exceptions, aka C++ exceptions.
/// - a: Cleanup after "asynchronous" exceptions, aka structured exceptions.
/// The 'a' modifier is unimplemented and fundamentally hard in LLVM IR.
/// - c: Assume that extern "C" functions are implicitly noexcept. This
/// modifier is an optimization, so we ignore it for now.
/// The default is /EHs-c-, meaning cleanups are disabled.
static EHFlags parseClangCLEHFlags(const Driver &D, const ArgList &Args) {
EHFlags EH;
std::vector<std::string> EHArgs = Args.getAllArgValues(options::OPT__SLASH_EH);
for (auto EHVal : EHArgs) {
for (size_t I = 0, E = EHVal.size(); I != E; ++I) {
switch (EHVal[I]) {
case 'a': EH.Asynch = maybeConsumeDash(EHVal, I); continue;
case 'c': EH.NoExceptC = maybeConsumeDash(EHVal, I); continue;
case 's': EH.Synch = maybeConsumeDash(EHVal, I); continue;
default: break;
}
D.Diag(clang::diag::err_drv_invalid_value) << "/EH" << EHVal;
break;
}
}
return EH;
}
void Clang::AddClangCLArgs(const ArgList &Args, ArgStringList &CmdArgs) const {
unsigned RTOptionID = options::OPT__SLASH_MT;
if (Args.hasArg(options::OPT__SLASH_LDd))
// The /LDd option implies /MTd. The dependent lib part can be overridden,
// but defining _DEBUG is sticky.
RTOptionID = options::OPT__SLASH_MTd;
if (Arg *A = Args.getLastArg(options::OPT__SLASH_M_Group))
RTOptionID = A->getOption().getID();
switch(RTOptionID) {
case options::OPT__SLASH_MD:
if (Args.hasArg(options::OPT__SLASH_LDd))
CmdArgs.push_back("-D_DEBUG");
CmdArgs.push_back("-D_MT");
CmdArgs.push_back("-D_DLL");
CmdArgs.push_back("--dependent-lib=msvcrt");
break;
case options::OPT__SLASH_MDd:
CmdArgs.push_back("-D_DEBUG");
CmdArgs.push_back("-D_MT");
CmdArgs.push_back("-D_DLL");
CmdArgs.push_back("--dependent-lib=msvcrtd");
break;
case options::OPT__SLASH_MT:
if (Args.hasArg(options::OPT__SLASH_LDd))
CmdArgs.push_back("-D_DEBUG");
CmdArgs.push_back("-D_MT");
CmdArgs.push_back("--dependent-lib=libcmt");
break;
case options::OPT__SLASH_MTd:
CmdArgs.push_back("-D_DEBUG");
CmdArgs.push_back("-D_MT");
CmdArgs.push_back("--dependent-lib=libcmtd");
break;
default:
llvm_unreachable("Unexpected option ID.");
}
// This provides POSIX compatibility (maps 'open' to '_open'), which most
// users want. The /Za flag to cl.exe turns this off, but it's not
// implemented in clang.
CmdArgs.push_back("--dependent-lib=oldnames");
// Both /showIncludes and /E (and /EP) write to stdout. Allowing both
// would produce interleaved output, so ignore /showIncludes in such cases.
if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_EP))
if (Arg *A = Args.getLastArg(options::OPT_show_includes))
A->render(Args, CmdArgs);
// This controls whether or not we emit RTTI data for polymorphic types.
if (Args.hasFlag(options::OPT__SLASH_GR_, options::OPT__SLASH_GR,
/*default=*/false))
CmdArgs.push_back("-fno-rtti-data");
const Driver &D = getToolChain().getDriver();
EHFlags EH = parseClangCLEHFlags(D, Args);
// FIXME: Do something with NoExceptC.
if (EH.Synch || EH.Asynch) {
CmdArgs.push_back("-fexceptions");
CmdArgs.push_back("-fcxx-exceptions");
}
// /EP should expand to -E -P.
if (Args.hasArg(options::OPT__SLASH_EP)) {
CmdArgs.push_back("-E");
CmdArgs.push_back("-P");
}
Arg *MostGeneralArg = Args.getLastArg(options::OPT__SLASH_vmg);
Arg *BestCaseArg = Args.getLastArg(options::OPT__SLASH_vmb);
if (MostGeneralArg && BestCaseArg)
D.Diag(clang::diag::err_drv_argument_not_allowed_with)
<< MostGeneralArg->getAsString(Args) << BestCaseArg->getAsString(Args);
if (MostGeneralArg) {
Arg *SingleArg = Args.getLastArg(options::OPT__SLASH_vms);
Arg *MultipleArg = Args.getLastArg(options::OPT__SLASH_vmm);
Arg *VirtualArg = Args.getLastArg(options::OPT__SLASH_vmv);
Arg *FirstConflict = SingleArg ? SingleArg : MultipleArg;
Arg *SecondConflict = VirtualArg ? VirtualArg : MultipleArg;
if (FirstConflict && SecondConflict && FirstConflict != SecondConflict)
D.Diag(clang::diag::err_drv_argument_not_allowed_with)
<< FirstConflict->getAsString(Args)
<< SecondConflict->getAsString(Args);
if (SingleArg)
CmdArgs.push_back("-fms-memptr-rep=single");
else if (MultipleArg)
CmdArgs.push_back("-fms-memptr-rep=multiple");
else
CmdArgs.push_back("-fms-memptr-rep=virtual");
}
if (Arg *A = Args.getLastArg(options::OPT_vtordisp_mode_EQ))
A->render(Args, CmdArgs);
if (!Args.hasArg(options::OPT_fdiagnostics_format_EQ)) {
CmdArgs.push_back("-fdiagnostics-format");
if (Args.hasArg(options::OPT__SLASH_fallback))
CmdArgs.push_back("msvc-fallback");
else
CmdArgs.push_back("msvc");
}
}
visualstudio::Compile *Clang::getCLFallback() const {
if (!CLFallback)
CLFallback.reset(new visualstudio::Compile(getToolChain()));
return CLFallback.get();
}
void ClangAs::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
assert(Inputs.size() == 1 && "Unexpected number of inputs.");
const InputInfo &Input = Inputs[0];
// Don't warn about "clang -w -c foo.s"
Args.ClaimAllArgs(options::OPT_w);
// and "clang -emit-llvm -c foo.s"
Args.ClaimAllArgs(options::OPT_emit_llvm);
// Invoke ourselves in -cc1as mode.
//
// FIXME: Implement custom jobs for internal actions.
CmdArgs.push_back("-cc1as");
// Add the "effective" target triple.
CmdArgs.push_back("-triple");
std::string TripleStr =
getToolChain().ComputeEffectiveClangTriple(Args, Input.getType());
CmdArgs.push_back(Args.MakeArgString(TripleStr));
// Set the output mode, we currently only expect to be used as a real
// assembler.
CmdArgs.push_back("-filetype");
CmdArgs.push_back("obj");
// Set the main file name, so that debug info works even with
// -save-temps or preprocessed assembly.
CmdArgs.push_back("-main-file-name");
CmdArgs.push_back(Clang::getBaseInputName(Args, Inputs));
// Add the target cpu
const llvm::Triple &Triple = getToolChain().getTriple();
std::string CPU = getCPUName(Args, Triple);
if (!CPU.empty()) {
CmdArgs.push_back("-target-cpu");
CmdArgs.push_back(Args.MakeArgString(CPU));
}
// Add the target features
const Driver &D = getToolChain().getDriver();
getTargetFeatures(D, Triple, Args, CmdArgs, true);
// Ignore explicit -force_cpusubtype_ALL option.
(void) Args.hasArg(options::OPT_force__cpusubtype__ALL);
// Determine the original source input.
const Action *SourceAction = &JA;
while (SourceAction->getKind() != Action::InputClass) {
assert(!SourceAction->getInputs().empty() && "unexpected root action!");
SourceAction = SourceAction->getInputs()[0];
}
// Forward -g and handle debug info related flags, assuming we are dealing
// with an actual assembly file.
if (SourceAction->getType() == types::TY_Asm ||
SourceAction->getType() == types::TY_PP_Asm) {
Args.ClaimAllArgs(options::OPT_g_Group);
if (Arg *A = Args.getLastArg(options::OPT_g_Group))
if (!A->getOption().matches(options::OPT_g0))
CmdArgs.push_back("-g");
if (Args.hasArg(options::OPT_gdwarf_2))
CmdArgs.push_back("-gdwarf-2");
if (Args.hasArg(options::OPT_gdwarf_3))
CmdArgs.push_back("-gdwarf-3");
if (Args.hasArg(options::OPT_gdwarf_4))
CmdArgs.push_back("-gdwarf-4");
// Add the -fdebug-compilation-dir flag if needed.
addDebugCompDirArg(Args, CmdArgs);
// Set the AT_producer to the clang version when using the integrated
// assembler on assembly source files.
CmdArgs.push_back("-dwarf-debug-producer");
CmdArgs.push_back(Args.MakeArgString(getClangFullVersion()));
}
// Optionally embed the -cc1as level arguments into the debug info, for build
// analysis.
if (getToolChain().UseDwarfDebugFlags()) {
ArgStringList OriginalArgs;
for (const auto &Arg : Args)
Arg->render(Args, OriginalArgs);
SmallString<256> Flags;
const char *Exec = getToolChain().getDriver().getClangProgramPath();
Flags += Exec;
for (unsigned i = 0, e = OriginalArgs.size(); i != e; ++i) {
Flags += " ";
Flags += OriginalArgs[i];
}
CmdArgs.push_back("-dwarf-debug-flags");
CmdArgs.push_back(Args.MakeArgString(Flags.str()));
}
// FIXME: Add -static support, once we have it.
// Consume all the warning flags. Usually this would be handled more
// gracefully by -cc1 (warning about unknown warning flags, etc) but -cc1as
// doesn't handle that so rather than warning about unused flags that are
// actually used, we'll lie by omission instead.
// FIXME: Stop lying and consume only the appropriate driver flags
for (arg_iterator it = Args.filtered_begin(options::OPT_W_Group),
ie = Args.filtered_end();
it != ie; ++it)
(*it)->claim();
CollectArgsForIntegratedAssembler(C, Args, CmdArgs,
getToolChain().getDriver());
Args.AddAllArgs(CmdArgs, options::OPT_mllvm);
assert(Output.isFilename() && "Unexpected lipo output.");
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
assert(Input.isFilename() && "Invalid input.");
CmdArgs.push_back(Input.getFilename());
const char *Exec = getToolChain().getDriver().getClangProgramPath();
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
// Handle the debug info splitting at object creation time if we're
// creating an object.
// TODO: Currently only works on linux with newer objcopy.
if (Args.hasArg(options::OPT_gsplit_dwarf) &&
getToolChain().getTriple().isOSLinux())
SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
SplitDebugName(Args, Inputs));
}
void gcc::Common::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
for (const auto &A : Args) {
if (forwardToGCC(A->getOption())) {
// Don't forward any -g arguments to assembly steps.
if (isa<AssembleJobAction>(JA) &&
A->getOption().matches(options::OPT_g_Group))
continue;
// Don't forward any -W arguments to assembly and link steps.
if ((isa<AssembleJobAction>(JA) || isa<LinkJobAction>(JA)) &&
A->getOption().matches(options::OPT_W_Group))
continue;
// It is unfortunate that we have to claim here, as this means
// we will basically never report anything interesting for
// platforms using a generic gcc, even if we are just using gcc
// to get to the assembler.
A->claim();
A->render(Args, CmdArgs);
}
}
RenderExtraToolArgs(JA, CmdArgs);
// If using a driver driver, force the arch.
llvm::Triple::ArchType Arch = getToolChain().getArch();
if (getToolChain().getTriple().isOSDarwin()) {
CmdArgs.push_back("-arch");
// FIXME: Remove these special cases.
if (Arch == llvm::Triple::ppc)
CmdArgs.push_back("ppc");
else if (Arch == llvm::Triple::ppc64)
CmdArgs.push_back("ppc64");
else if (Arch == llvm::Triple::ppc64le)
CmdArgs.push_back("ppc64le");
else
CmdArgs.push_back(Args.MakeArgString(getToolChain().getArchName()));
}
// Try to force gcc to match the tool chain we want, if we recognize
// the arch.
//
// FIXME: The triple class should directly provide the information we want
// here.
if (Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc)
CmdArgs.push_back("-m32");
else if (Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::ppc64 ||
Arch == llvm::Triple::ppc64le)
CmdArgs.push_back("-m64");
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Unexpected output");
CmdArgs.push_back("-fsyntax-only");
}
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
// Only pass -x if gcc will understand it; otherwise hope gcc
// understands the suffix correctly. The main use case this would go
// wrong in is for linker inputs if they happened to have an odd
// suffix; really the only way to get this to happen is a command
// like '-x foobar a.c' which will treat a.c like a linker input.
//
// FIXME: For the linker case specifically, can we safely convert
// inputs into '-Wl,' options?
for (const auto &II : Inputs) {
// Don't try to pass LLVM or AST inputs to a generic gcc.
if (II.getType() == types::TY_LLVM_IR || II.getType() == types::TY_LTO_IR ||
II.getType() == types::TY_LLVM_BC || II.getType() == types::TY_LTO_BC)
D.Diag(diag::err_drv_no_linker_llvm_support)
<< getToolChain().getTripleString();
else if (II.getType() == types::TY_AST)
D.Diag(diag::err_drv_no_ast_support)
<< getToolChain().getTripleString();
else if (II.getType() == types::TY_ModuleFile)
D.Diag(diag::err_drv_no_module_support)
<< getToolChain().getTripleString();
if (types::canTypeBeUserSpecified(II.getType())) {
CmdArgs.push_back("-x");
CmdArgs.push_back(types::getTypeName(II.getType()));
}
if (II.isFilename())
CmdArgs.push_back(II.getFilename());
else {
const Arg &A = II.getInputArg();
// Reverse translate some rewritten options.
if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) {
CmdArgs.push_back("-lstdc++");
continue;
}
// Don't render as input, we need gcc to do the translations.
A.render(Args, CmdArgs);
}
}
const std::string customGCCName = D.getCCCGenericGCCName();
const char *GCCName;
if (!customGCCName.empty())
GCCName = customGCCName.c_str();
else if (D.CCCIsCXX()) {
GCCName = "g++";
} else
GCCName = "gcc";
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath(GCCName));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void gcc::Preprocess::RenderExtraToolArgs(const JobAction &JA,
ArgStringList &CmdArgs) const {
CmdArgs.push_back("-E");
}
void gcc::Compile::RenderExtraToolArgs(const JobAction &JA,
ArgStringList &CmdArgs) const {
const Driver &D = getToolChain().getDriver();
// If -flto, etc. are present then make sure not to force assembly output.
if (JA.getType() == types::TY_LLVM_IR || JA.getType() == types::TY_LTO_IR ||
JA.getType() == types::TY_LLVM_BC || JA.getType() == types::TY_LTO_BC)
CmdArgs.push_back("-c");
else {
if (JA.getType() != types::TY_PP_Asm)
D.Diag(diag::err_drv_invalid_gcc_output_type)
<< getTypeName(JA.getType());
CmdArgs.push_back("-S");
}
}
void gcc::Link::RenderExtraToolArgs(const JobAction &JA,
ArgStringList &CmdArgs) const {
// The types are (hopefully) good enough.
}
// Hexagon tools start.
void hexagon::Assemble::RenderExtraToolArgs(const JobAction &JA,
ArgStringList &CmdArgs) const {
}
void hexagon::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
std::string MarchString = "-march=";
MarchString += toolchains::Hexagon_TC::GetTargetCPU(Args);
CmdArgs.push_back(Args.MakeArgString(MarchString));
RenderExtraToolArgs(JA, CmdArgs);
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Unexpected output");
CmdArgs.push_back("-fsyntax-only");
}
std::string SmallDataThreshold = GetHexagonSmallDataThresholdValue(Args);
if (!SmallDataThreshold.empty())
CmdArgs.push_back(
Args.MakeArgString(std::string("-G") + SmallDataThreshold));
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
// Only pass -x if gcc will understand it; otherwise hope gcc
// understands the suffix correctly. The main use case this would go
// wrong in is for linker inputs if they happened to have an odd
// suffix; really the only way to get this to happen is a command
// like '-x foobar a.c' which will treat a.c like a linker input.
//
// FIXME: For the linker case specifically, can we safely convert
// inputs into '-Wl,' options?
for (const auto &II : Inputs) {
// Don't try to pass LLVM or AST inputs to a generic gcc.
if (II.getType() == types::TY_LLVM_IR || II.getType() == types::TY_LTO_IR ||
II.getType() == types::TY_LLVM_BC || II.getType() == types::TY_LTO_BC)
D.Diag(clang::diag::err_drv_no_linker_llvm_support)
<< getToolChain().getTripleString();
else if (II.getType() == types::TY_AST)
D.Diag(clang::diag::err_drv_no_ast_support)
<< getToolChain().getTripleString();
else if (II.getType() == types::TY_ModuleFile)
D.Diag(diag::err_drv_no_module_support)
<< getToolChain().getTripleString();
if (II.isFilename())
CmdArgs.push_back(II.getFilename());
else
// Don't render as input, we need gcc to do the translations. FIXME: Pranav: What is this ?
II.getInputArg().render(Args, CmdArgs);
}
const char *GCCName = "hexagon-as";
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath(GCCName));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void hexagon::Link::RenderExtraToolArgs(const JobAction &JA,
ArgStringList &CmdArgs) const {
// The types are (hopefully) good enough.
}
void hexagon::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const toolchains::Hexagon_TC& ToolChain =
static_cast<const toolchains::Hexagon_TC&>(getToolChain());
const Driver &D = ToolChain.getDriver();
ArgStringList CmdArgs;
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
bool hasStaticArg = Args.hasArg(options::OPT_static);
bool buildingLib = Args.hasArg(options::OPT_shared);
bool buildPIE = Args.hasArg(options::OPT_pie);
bool incStdLib = !Args.hasArg(options::OPT_nostdlib);
bool incStartFiles = !Args.hasArg(options::OPT_nostartfiles);
bool incDefLibs = !Args.hasArg(options::OPT_nodefaultlibs);
bool useShared = buildingLib && !hasStaticArg;
//----------------------------------------------------------------------------
// Silence warnings for various options
//----------------------------------------------------------------------------
Args.ClaimAllArgs(options::OPT_g_Group);
Args.ClaimAllArgs(options::OPT_emit_llvm);
Args.ClaimAllArgs(options::OPT_w); // Other warning options are already
// handled somewhere else.
Args.ClaimAllArgs(options::OPT_static_libgcc);
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
for (const auto &Opt : ToolChain.ExtraOpts)
CmdArgs.push_back(Opt.c_str());
std::string MarchString = toolchains::Hexagon_TC::GetTargetCPU(Args);
CmdArgs.push_back(Args.MakeArgString("-m" + MarchString));
if (buildingLib) {
CmdArgs.push_back("-shared");
CmdArgs.push_back("-call_shared"); // should be the default, but doing as
// hexagon-gcc does
}
if (hasStaticArg)
CmdArgs.push_back("-static");
if (buildPIE && !buildingLib)
CmdArgs.push_back("-pie");
std::string SmallDataThreshold = GetHexagonSmallDataThresholdValue(Args);
if (!SmallDataThreshold.empty()) {
CmdArgs.push_back(
Args.MakeArgString(std::string("-G") + SmallDataThreshold));
}
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
const std::string MarchSuffix = "/" + MarchString;
const std::string G0Suffix = "/G0";
const std::string MarchG0Suffix = MarchSuffix + G0Suffix;
const std::string RootDir = toolchains::Hexagon_TC::GetGnuDir(D.InstalledDir)
+ "/";
const std::string StartFilesDir = RootDir
+ "hexagon/lib"
+ (buildingLib
? MarchG0Suffix : MarchSuffix);
//----------------------------------------------------------------------------
// moslib
//----------------------------------------------------------------------------
std::vector<std::string> oslibs;
bool hasStandalone= false;
for (arg_iterator it = Args.filtered_begin(options::OPT_moslib_EQ),
ie = Args.filtered_end(); it != ie; ++it) {
(*it)->claim();
oslibs.push_back((*it)->getValue());
hasStandalone = hasStandalone || (oslibs.back() == "standalone");
}
if (oslibs.empty()) {
oslibs.push_back("standalone");
hasStandalone = true;
}
//----------------------------------------------------------------------------
// Start Files
//----------------------------------------------------------------------------
if (incStdLib && incStartFiles) {
if (!buildingLib) {
if (hasStandalone) {
CmdArgs.push_back(
Args.MakeArgString(StartFilesDir + "/crt0_standalone.o"));
}
CmdArgs.push_back(Args.MakeArgString(StartFilesDir + "/crt0.o"));
}
std::string initObj = useShared ? "/initS.o" : "/init.o";
CmdArgs.push_back(Args.MakeArgString(StartFilesDir + initObj));
}
//----------------------------------------------------------------------------
// Library Search Paths
//----------------------------------------------------------------------------
const ToolChain::path_list &LibPaths = ToolChain.getFilePaths();
for (const auto &LibPath : LibPaths)
CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + LibPath));
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
Args.AddAllArgs(CmdArgs, options::OPT_s);
Args.AddAllArgs(CmdArgs, options::OPT_t);
Args.AddAllArgs(CmdArgs, options::OPT_u_Group);
AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs);
//----------------------------------------------------------------------------
// Libraries
//----------------------------------------------------------------------------
if (incStdLib && incDefLibs) {
if (D.CCCIsCXX()) {
ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs);
CmdArgs.push_back("-lm");
}
CmdArgs.push_back("--start-group");
if (!buildingLib) {
for(std::vector<std::string>::iterator i = oslibs.begin(),
e = oslibs.end(); i != e; ++i)
CmdArgs.push_back(Args.MakeArgString("-l" + *i));
CmdArgs.push_back("-lc");
}
CmdArgs.push_back("-lgcc");
CmdArgs.push_back("--end-group");
}
//----------------------------------------------------------------------------
// End files
//----------------------------------------------------------------------------
if (incStdLib && incStartFiles) {
std::string finiObj = useShared ? "/finiS.o" : "/fini.o";
CmdArgs.push_back(Args.MakeArgString(StartFilesDir + finiObj));
}
std::string Linker = ToolChain.GetProgramPath("hexagon-ld");
C.addCommand(new Command(JA, *this, Args.MakeArgString(Linker), CmdArgs));
}
// Hexagon tools end.
/// Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
const char *arm::getARMCPUForMArch(const ArgList &Args,
const llvm::Triple &Triple) {
StringRef MArch;
if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
// Otherwise, if we have -march= choose the base CPU for that arch.
MArch = A->getValue();
} else {
// Otherwise, use the Arch from the triple.
MArch = Triple.getArchName();
}
// Handle -march=native.
if (MArch == "native") {
std::string CPU = llvm::sys::getHostCPUName();
if (CPU != "generic") {
// Translate the native cpu into the architecture. The switch below will
// then chose the minimum cpu for that arch.
MArch = std::string("arm") + arm::getLLVMArchSuffixForARM(CPU);
}
}
return Triple.getARMCPUForArch(MArch);
}
/// getARMTargetCPU - Get the (LLVM) name of the ARM cpu we are targeting.
StringRef arm::getARMTargetCPU(const ArgList &Args,
const llvm::Triple &Triple) {
// FIXME: Warn on inconsistent use of -mcpu and -march.
// If we have -mcpu=, use that.
if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
StringRef MCPU = A->getValue();
// Handle -mcpu=native.
if (MCPU == "native")
return llvm::sys::getHostCPUName();
else
return MCPU;
}
return getARMCPUForMArch(Args, Triple);
}
/// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular
/// CPU.
//
// FIXME: This is redundant with -mcpu, why does LLVM use this.
// FIXME: tblgen this, or kill it!
const char *arm::getLLVMArchSuffixForARM(StringRef CPU) {
return llvm::StringSwitch<const char *>(CPU)
.Case("strongarm", "v4")
.Cases("arm7tdmi", "arm7tdmi-s", "arm710t", "v4t")
.Cases("arm720t", "arm9", "arm9tdmi", "v4t")
.Cases("arm920", "arm920t", "arm922t", "v4t")
.Cases("arm940t", "ep9312","v4t")
.Cases("arm10tdmi", "arm1020t", "v5")
.Cases("arm9e", "arm926ej-s", "arm946e-s", "v5e")
.Cases("arm966e-s", "arm968e-s", "arm10e", "v5e")
.Cases("arm1020e", "arm1022e", "xscale", "iwmmxt", "v5e")
.Cases("arm1136j-s", "arm1136jf-s", "arm1176jz-s", "v6")
.Cases("arm1176jzf-s", "mpcorenovfp", "mpcore", "v6")
.Cases("arm1156t2-s", "arm1156t2f-s", "v6t2")
.Cases("cortex-a5", "cortex-a7", "cortex-a8", "cortex-a9-mp", "v7")
.Cases("cortex-a9", "cortex-a12", "cortex-a15", "krait", "v7")
.Cases("cortex-r4", "cortex-r5", "v7r")
.Case("cortex-m0", "v6m")
.Case("cortex-m3", "v7m")
.Case("cortex-m4", "v7em")
.Case("swift", "v7s")
.Case("cyclone", "v8")
.Cases("cortex-a53", "cortex-a57", "v8")
.Default("");
}
bool mips::hasMipsAbiArg(const ArgList &Args, const char *Value) {
Arg *A = Args.getLastArg(options::OPT_mabi_EQ);
return A && (A->getValue() == StringRef(Value));
}
bool mips::isNaN2008(const ArgList &Args, const llvm::Triple &Triple) {
if (Arg *NaNArg = Args.getLastArg(options::OPT_mnan_EQ))
return llvm::StringSwitch<bool>(NaNArg->getValue())
.Case("2008", true)
.Case("legacy", false)
.Default(false);
// NaN2008 is the default for MIPS32r6/MIPS64r6.
return llvm::StringSwitch<bool>(getCPUName(Args, Triple))
.Cases("mips32r6", "mips64r6", true)
.Default(false);
return false;
}
bool mips::isFPXXDefault(const llvm::Triple &Triple, StringRef CPUName,
StringRef ABIName) {
if (Triple.getVendor() != llvm::Triple::ImaginationTechnologies &&
Triple.getVendor() != llvm::Triple::MipsTechnologies)
return false;
if (ABIName != "32")
return false;
return llvm::StringSwitch<bool>(CPUName)
.Cases("mips2", "mips3", "mips4", "mips5", true)
.Cases("mips32", "mips32r2", true)
.Cases("mips64", "mips64r2", true)
.Default(false);
}
llvm::Triple::ArchType darwin::getArchTypeForMachOArchName(StringRef Str) {
// See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
// archs which Darwin doesn't use.
// The matching this routine does is fairly pointless, since it is neither the
// complete architecture list, nor a reasonable subset. The problem is that
// historically the driver driver accepts this and also ties its -march=
// handling to the architecture name, so we need to be careful before removing
// support for it.
// This code must be kept in sync with Clang's Darwin specific argument
// translation.
return llvm::StringSwitch<llvm::Triple::ArchType>(Str)
.Cases("ppc", "ppc601", "ppc603", "ppc604", "ppc604e", llvm::Triple::ppc)
.Cases("ppc750", "ppc7400", "ppc7450", "ppc970", llvm::Triple::ppc)
.Case("ppc64", llvm::Triple::ppc64)
.Cases("i386", "i486", "i486SX", "i586", "i686", llvm::Triple::x86)
.Cases("pentium", "pentpro", "pentIIm3", "pentIIm5", "pentium4",
llvm::Triple::x86)
.Cases("x86_64", "x86_64h", llvm::Triple::x86_64)
// This is derived from the driver driver.
.Cases("arm", "armv4t", "armv5", "armv6", "armv6m", llvm::Triple::arm)
.Cases("armv7", "armv7em", "armv7k", "armv7m", llvm::Triple::arm)
.Cases("armv7s", "xscale", llvm::Triple::arm)
.Case("arm64", llvm::Triple::arm64)
.Case("r600", llvm::Triple::r600)
.Case("nvptx", llvm::Triple::nvptx)
.Case("nvptx64", llvm::Triple::nvptx64)
.Case("amdil", llvm::Triple::amdil)
.Case("spir", llvm::Triple::spir)
.Default(llvm::Triple::UnknownArch);
}
void darwin::setTripleTypeForMachOArchName(llvm::Triple &T, StringRef Str) {
llvm::Triple::ArchType Arch = getArchTypeForMachOArchName(Str);
T.setArch(Arch);
if (Str == "x86_64h")
T.setArchName(Str);
else if (Str == "armv6m" || Str == "armv7m" || Str == "armv7em") {
T.setOS(llvm::Triple::UnknownOS);
T.setObjectFormat(llvm::Triple::MachO);
}
}
const char *Clang::getBaseInputName(const ArgList &Args,
const InputInfoList &Inputs) {
return Args.MakeArgString(
llvm::sys::path::filename(Inputs[0].getBaseInput()));
}
const char *Clang::getBaseInputStem(const ArgList &Args,
const InputInfoList &Inputs) {
const char *Str = getBaseInputName(Args, Inputs);
if (const char *End = strrchr(Str, '.'))
return Args.MakeArgString(std::string(Str, End));
return Str;
}
const char *Clang::getDependencyFileName(const ArgList &Args,
const InputInfoList &Inputs) {
// FIXME: Think about this more.
std::string Res;
if (Arg *OutputOpt = Args.getLastArg(options::OPT_o)) {
std::string Str(OutputOpt->getValue());
Res = Str.substr(0, Str.rfind('.'));
} else {
Res = getBaseInputStem(Args, Inputs);
}
return Args.MakeArgString(Res + ".d");
}
void darwin::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
assert(Inputs.size() == 1 && "Unexpected number of inputs.");
const InputInfo &Input = Inputs[0];
// Determine the original source input.
const Action *SourceAction = &JA;
while (SourceAction->getKind() != Action::InputClass) {
assert(!SourceAction->getInputs().empty() && "unexpected root action!");
SourceAction = SourceAction->getInputs()[0];
}
// If -fno_integrated_as is used add -Q to the darwin assember driver to make
// sure it runs its system assembler not clang's integrated assembler.
// Applicable to darwin11+ and Xcode 4+. darwin<10 lacked integrated-as.
// FIXME: at run-time detect assembler capabilities or rely on version
// information forwarded by -target-assembler-version (future)
if (Args.hasArg(options::OPT_fno_integrated_as)) {
const llvm::Triple &T(getToolChain().getTriple());
if (!(T.isMacOSX() && T.isMacOSXVersionLT(10, 7)))
CmdArgs.push_back("-Q");
}
// Forward -g, assuming we are dealing with an actual assembly file.
if (SourceAction->getType() == types::TY_Asm ||
SourceAction->getType() == types::TY_PP_Asm) {
if (Args.hasArg(options::OPT_gstabs))
CmdArgs.push_back("--gstabs");
else if (Args.hasArg(options::OPT_g_Group))
CmdArgs.push_back("-g");
}
// Derived from asm spec.
AddMachOArch(Args, CmdArgs);
// Use -force_cpusubtype_ALL on x86 by default.
if (getToolChain().getArch() == llvm::Triple::x86 ||
getToolChain().getArch() == llvm::Triple::x86_64 ||
Args.hasArg(options::OPT_force__cpusubtype__ALL))
CmdArgs.push_back("-force_cpusubtype_ALL");
if (getToolChain().getArch() != llvm::Triple::x86_64 &&
(((Args.hasArg(options::OPT_mkernel) ||
Args.hasArg(options::OPT_fapple_kext)) &&
getMachOToolChain().isKernelStatic()) ||
Args.hasArg(options::OPT_static)))
CmdArgs.push_back("-static");
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
assert(Output.isFilename() && "Unexpected lipo output.");
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
assert(Input.isFilename() && "Invalid input.");
CmdArgs.push_back(Input.getFilename());
// asm_final spec is empty.
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void darwin::MachOTool::anchor() {}
void darwin::MachOTool::AddMachOArch(const ArgList &Args,
ArgStringList &CmdArgs) const {
StringRef ArchName = getMachOToolChain().getMachOArchName(Args);
// Derived from darwin_arch spec.
CmdArgs.push_back("-arch");
CmdArgs.push_back(Args.MakeArgString(ArchName));
// FIXME: Is this needed anymore?
if (ArchName == "arm")
CmdArgs.push_back("-force_cpusubtype_ALL");
}
bool darwin::Link::NeedsTempPath(const InputInfoList &Inputs) const {
// We only need to generate a temp path for LTO if we aren't compiling object
// files. When compiling source files, we run 'dsymutil' after linking. We
// don't run 'dsymutil' when compiling object files.
for (const auto &Input : Inputs)
if (Input.getType() != types::TY_Object)
return true;
return false;
}
void darwin::Link::AddLinkArgs(Compilation &C,
const ArgList &Args,
ArgStringList &CmdArgs,
const InputInfoList &Inputs) const {
const Driver &D = getToolChain().getDriver();
const toolchains::MachO &MachOTC = getMachOToolChain();
unsigned Version[3] = { 0, 0, 0 };
if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ)) {
bool HadExtra;
if (!Driver::GetReleaseVersion(A->getValue(), Version[0],
Version[1], Version[2], HadExtra) ||
HadExtra)
D.Diag(diag::err_drv_invalid_version_number)
<< A->getAsString(Args);
}
// Newer linkers support -demangle. Pass it if supported and not disabled by
// the user.
if (Version[0] >= 100 && !Args.hasArg(options::OPT_Z_Xlinker__no_demangle))
CmdArgs.push_back("-demangle");
if (Args.hasArg(options::OPT_rdynamic) && Version[0] >= 137)
CmdArgs.push_back("-export_dynamic");
// If we are using LTO, then automatically create a temporary file path for
// the linker to use, so that it's lifetime will extend past a possible
// dsymutil step.
if (Version[0] >= 116 && D.IsUsingLTO(Args) && NeedsTempPath(Inputs)) {
const char *TmpPath = C.getArgs().MakeArgString(
D.GetTemporaryPath("cc", types::getTypeTempSuffix(types::TY_Object)));
C.addTempFile(TmpPath);
CmdArgs.push_back("-object_path_lto");
CmdArgs.push_back(TmpPath);
}
// Derived from the "link" spec.
Args.AddAllArgs(CmdArgs, options::OPT_static);
if (!Args.hasArg(options::OPT_static))
CmdArgs.push_back("-dynamic");
if (Args.hasArg(options::OPT_fgnu_runtime)) {
// FIXME: gcc replaces -lobjc in forward args with -lobjc-gnu
// here. How do we wish to handle such things?
}
if (!Args.hasArg(options::OPT_dynamiclib)) {
AddMachOArch(Args, CmdArgs);
// FIXME: Why do this only on this path?
Args.AddLastArg(CmdArgs, options::OPT_force__cpusubtype__ALL);
Args.AddLastArg(CmdArgs, options::OPT_bundle);
Args.AddAllArgs(CmdArgs, options::OPT_bundle__loader);
Args.AddAllArgs(CmdArgs, options::OPT_client__name);
Arg *A;
if ((A = Args.getLastArg(options::OPT_compatibility__version)) ||
(A = Args.getLastArg(options::OPT_current__version)) ||
(A = Args.getLastArg(options::OPT_install__name)))
D.Diag(diag::err_drv_argument_only_allowed_with)
<< A->getAsString(Args) << "-dynamiclib";
Args.AddLastArg(CmdArgs, options::OPT_force__flat__namespace);
Args.AddLastArg(CmdArgs, options::OPT_keep__private__externs);
Args.AddLastArg(CmdArgs, options::OPT_private__bundle);
} else {
CmdArgs.push_back("-dylib");
Arg *A;
if ((A = Args.getLastArg(options::OPT_bundle)) ||
(A = Args.getLastArg(options::OPT_bundle__loader)) ||
(A = Args.getLastArg(options::OPT_client__name)) ||
(A = Args.getLastArg(options::OPT_force__flat__namespace)) ||
(A = Args.getLastArg(options::OPT_keep__private__externs)) ||
(A = Args.getLastArg(options::OPT_private__bundle)))
D.Diag(diag::err_drv_argument_not_allowed_with)
<< A->getAsString(Args) << "-dynamiclib";
Args.AddAllArgsTranslated(CmdArgs, options::OPT_compatibility__version,
"-dylib_compatibility_version");
Args.AddAllArgsTranslated(CmdArgs, options::OPT_current__version,
"-dylib_current_version");
AddMachOArch(Args, CmdArgs);
Args.AddAllArgsTranslated(CmdArgs, options::OPT_install__name,
"-dylib_install_name");
}
Args.AddLastArg(CmdArgs, options::OPT_all__load);
Args.AddAllArgs(CmdArgs, options::OPT_allowable__client);
Args.AddLastArg(CmdArgs, options::OPT_bind__at__load);
if (MachOTC.isTargetIOSBased())
Args.AddLastArg(CmdArgs, options::OPT_arch__errors__fatal);
Args.AddLastArg(CmdArgs, options::OPT_dead__strip);
Args.AddLastArg(CmdArgs, options::OPT_no__dead__strip__inits__and__terms);
Args.AddAllArgs(CmdArgs, options::OPT_dylib__file);
Args.AddLastArg(CmdArgs, options::OPT_dynamic);
Args.AddAllArgs(CmdArgs, options::OPT_exported__symbols__list);
Args.AddLastArg(CmdArgs, options::OPT_flat__namespace);
Args.AddAllArgs(CmdArgs, options::OPT_force__load);
Args.AddAllArgs(CmdArgs, options::OPT_headerpad__max__install__names);
Args.AddAllArgs(CmdArgs, options::OPT_image__base);
Args.AddAllArgs(CmdArgs, options::OPT_init);
// Add the deployment target.
MachOTC.addMinVersionArgs(Args, CmdArgs);
Args.AddLastArg(CmdArgs, options::OPT_nomultidefs);
Args.AddLastArg(CmdArgs, options::OPT_multi__module);
Args.AddLastArg(CmdArgs, options::OPT_single__module);
Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined);
Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined__unused);
if (const Arg *A = Args.getLastArg(options::OPT_fpie, options::OPT_fPIE,
options::OPT_fno_pie,
options::OPT_fno_PIE)) {
if (A->getOption().matches(options::OPT_fpie) ||
A->getOption().matches(options::OPT_fPIE))
CmdArgs.push_back("-pie");
else
CmdArgs.push_back("-no_pie");
}
Args.AddLastArg(CmdArgs, options::OPT_prebind);
Args.AddLastArg(CmdArgs, options::OPT_noprebind);
Args.AddLastArg(CmdArgs, options::OPT_nofixprebinding);
Args.AddLastArg(CmdArgs, options::OPT_prebind__all__twolevel__modules);
Args.AddLastArg(CmdArgs, options::OPT_read__only__relocs);
Args.AddAllArgs(CmdArgs, options::OPT_sectcreate);
Args.AddAllArgs(CmdArgs, options::OPT_sectorder);
Args.AddAllArgs(CmdArgs, options::OPT_seg1addr);
Args.AddAllArgs(CmdArgs, options::OPT_segprot);
Args.AddAllArgs(CmdArgs, options::OPT_segaddr);
Args.AddAllArgs(CmdArgs, options::OPT_segs__read__only__addr);
Args.AddAllArgs(CmdArgs, options::OPT_segs__read__write__addr);
Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table);
Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table__filename);
Args.AddAllArgs(CmdArgs, options::OPT_sub__library);
Args.AddAllArgs(CmdArgs, options::OPT_sub__umbrella);
// Give --sysroot= preference, over the Apple specific behavior to also use
// --isysroot as the syslibroot.
StringRef sysroot = C.getSysRoot();
if (sysroot != "") {
CmdArgs.push_back("-syslibroot");
CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
} else if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
CmdArgs.push_back("-syslibroot");
CmdArgs.push_back(A->getValue());
}
Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace);
Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace__hints);
Args.AddAllArgs(CmdArgs, options::OPT_umbrella);
Args.AddAllArgs(CmdArgs, options::OPT_undefined);
Args.AddAllArgs(CmdArgs, options::OPT_unexported__symbols__list);
Args.AddAllArgs(CmdArgs, options::OPT_weak__reference__mismatches);
Args.AddLastArg(CmdArgs, options::OPT_X_Flag);
Args.AddAllArgs(CmdArgs, options::OPT_y);
Args.AddLastArg(CmdArgs, options::OPT_w);
Args.AddAllArgs(CmdArgs, options::OPT_pagezero__size);
Args.AddAllArgs(CmdArgs, options::OPT_segs__read__);
Args.AddLastArg(CmdArgs, options::OPT_seglinkedit);
Args.AddLastArg(CmdArgs, options::OPT_noseglinkedit);
Args.AddAllArgs(CmdArgs, options::OPT_sectalign);
Args.AddAllArgs(CmdArgs, options::OPT_sectobjectsymbols);
Args.AddAllArgs(CmdArgs, options::OPT_segcreate);
Args.AddLastArg(CmdArgs, options::OPT_whyload);
Args.AddLastArg(CmdArgs, options::OPT_whatsloaded);
Args.AddAllArgs(CmdArgs, options::OPT_dylinker__install__name);
Args.AddLastArg(CmdArgs, options::OPT_dylinker);
Args.AddLastArg(CmdArgs, options::OPT_Mach);
}
enum LibOpenMP {
LibUnknown,
LibGOMP,
LibIOMP5
};
void darwin::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
assert(Output.getType() == types::TY_Image && "Invalid linker output type.");
// The logic here is derived from gcc's behavior; most of which
// comes from specs (starting with link_command). Consult gcc for
// more information.
ArgStringList CmdArgs;
/// Hack(tm) to ignore linking errors when we are doing ARC migration.
if (Args.hasArg(options::OPT_ccc_arcmt_check,
options::OPT_ccc_arcmt_migrate)) {
for (const auto &Arg : Args)
Arg->claim();
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath("touch"));
CmdArgs.push_back(Output.getFilename());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
return;
}
// I'm not sure why this particular decomposition exists in gcc, but
// we follow suite for ease of comparison.
AddLinkArgs(C, Args, CmdArgs, Inputs);
Args.AddAllArgs(CmdArgs, options::OPT_d_Flag);
Args.AddAllArgs(CmdArgs, options::OPT_s);
Args.AddAllArgs(CmdArgs, options::OPT_t);
Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
Args.AddAllArgs(CmdArgs, options::OPT_u_Group);
Args.AddLastArg(CmdArgs, options::OPT_e);
Args.AddAllArgs(CmdArgs, options::OPT_r);
// Forward -ObjC when either -ObjC or -ObjC++ is used, to force loading
// members of static archive libraries which implement Objective-C classes or
// categories.
if (Args.hasArg(options::OPT_ObjC) || Args.hasArg(options::OPT_ObjCXX))
CmdArgs.push_back("-ObjC");
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles))
getMachOToolChain().addStartObjectFileArgs(Args, CmdArgs);
Args.AddAllArgs(CmdArgs, options::OPT_L);
LibOpenMP UsedOpenMPLib = LibUnknown;
if (Args.hasArg(options::OPT_fopenmp)) {
UsedOpenMPLib = LibGOMP;
} else if (const Arg *A = Args.getLastArg(options::OPT_fopenmp_EQ)) {
UsedOpenMPLib = llvm::StringSwitch<LibOpenMP>(A->getValue())
.Case("libgomp", LibGOMP)
.Case("libiomp5", LibIOMP5)
.Default(LibUnknown);
if (UsedOpenMPLib == LibUnknown)
getToolChain().getDriver().Diag(diag::err_drv_unsupported_option_argument)
<< A->getOption().getName() << A->getValue();
}
switch (UsedOpenMPLib) {
case LibGOMP:
CmdArgs.push_back("-lgomp");
break;
case LibIOMP5:
CmdArgs.push_back("-liomp5");
break;
case LibUnknown:
break;
}
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
if (isObjCRuntimeLinked(Args) &&
!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
// We use arclite library for both ARC and subscripting support.
getMachOToolChain().AddLinkARCArgs(Args, CmdArgs);
CmdArgs.push_back("-framework");
CmdArgs.push_back("Foundation");
// Link libobj.
CmdArgs.push_back("-lobjc");
}
if (LinkingOutput) {
CmdArgs.push_back("-arch_multiple");
CmdArgs.push_back("-final_output");
CmdArgs.push_back(LinkingOutput);
}
if (Args.hasArg(options::OPT_fnested_functions))
CmdArgs.push_back("-allow_stack_execute");
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (getToolChain().getDriver().CCCIsCXX())
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
// link_ssp spec is empty.
// Let the tool chain choose which runtime library to link.
getMachOToolChain().AddLinkRuntimeLibArgs(Args, CmdArgs);
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
// endfile_spec is empty.
}
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_F);
const char *Exec =
Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void darwin::Lipo::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
CmdArgs.push_back("-create");
assert(Output.isFilename() && "Unexpected lipo output.");
CmdArgs.push_back("-output");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs) {
assert(II.isFilename() && "Unexpected lipo input.");
CmdArgs.push_back(II.getFilename());
}
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("lipo"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void darwin::Dsymutil::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
const InputInfo &Input = Inputs[0];
assert(Input.isFilename() && "Unexpected dsymutil input.");
CmdArgs.push_back(Input.getFilename());
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath("dsymutil"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void darwin::VerifyDebug::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
CmdArgs.push_back("--verify");
CmdArgs.push_back("--debug-info");
CmdArgs.push_back("--eh-frame");
CmdArgs.push_back("--quiet");
assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
const InputInfo &Input = Inputs[0];
assert(Input.isFilename() && "Unexpected verify input");
// Grabbing the output of the earlier dsymutil run.
CmdArgs.push_back(Input.getFilename());
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath("dwarfdump"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void solaris::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void solaris::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
// FIXME: Find a real GCC, don't hard-code versions here
std::string GCCLibPath = "/usr/gcc/4.5/lib/gcc/";
const llvm::Triple &T = getToolChain().getTriple();
std::string LibPath = "/usr/lib/";
llvm::Triple::ArchType Arch = T.getArch();
switch (Arch) {
case llvm::Triple::x86:
GCCLibPath +=
("i386-" + T.getVendorName() + "-" + T.getOSName()).str() + "/4.5.2/";
break;
case llvm::Triple::x86_64:
GCCLibPath += ("i386-" + T.getVendorName() + "-" + T.getOSName()).str();
GCCLibPath += "/4.5.2/amd64/";
LibPath += "amd64/";
break;
default:
llvm_unreachable("Unsupported architecture");
}
ArgStringList CmdArgs;
// Demangle C++ names in errors
CmdArgs.push_back("-C");
if ((!Args.hasArg(options::OPT_nostdlib)) &&
(!Args.hasArg(options::OPT_shared))) {
CmdArgs.push_back("-e");
CmdArgs.push_back("_start");
}
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
CmdArgs.push_back("-dn");
} else {
CmdArgs.push_back("-Bdynamic");
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-shared");
} else {
CmdArgs.push_back("--dynamic-linker");
CmdArgs.push_back(Args.MakeArgString(LibPath + "ld.so.1"));
}
}
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back(Args.MakeArgString(LibPath + "crt1.o"));
CmdArgs.push_back(Args.MakeArgString(LibPath + "crti.o"));
CmdArgs.push_back(Args.MakeArgString(LibPath + "values-Xa.o"));
CmdArgs.push_back(Args.MakeArgString(GCCLibPath + "crtbegin.o"));
} else {
CmdArgs.push_back(Args.MakeArgString(LibPath + "crti.o"));
CmdArgs.push_back(Args.MakeArgString(LibPath + "values-Xa.o"));
CmdArgs.push_back(Args.MakeArgString(GCCLibPath + "crtbegin.o"));
}
if (getToolChain().getDriver().CCCIsCXX())
CmdArgs.push_back(Args.MakeArgString(LibPath + "cxa_finalize.o"));
}
CmdArgs.push_back(Args.MakeArgString("-L" + GCCLibPath));
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
Args.AddAllArgs(CmdArgs, options::OPT_r);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (getToolChain().getDriver().CCCIsCXX())
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
CmdArgs.push_back("-lgcc_s");
if (!Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-lgcc");
CmdArgs.push_back("-lc");
CmdArgs.push_back("-lm");
}
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
CmdArgs.push_back(Args.MakeArgString(GCCLibPath + "crtend.o"));
}
CmdArgs.push_back(Args.MakeArgString(LibPath + "crtn.o"));
addProfileRT(getToolChain(), Args, CmdArgs);
const char *Exec =
Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void auroraux::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("gas"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void auroraux::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
if ((!Args.hasArg(options::OPT_nostdlib)) &&
(!Args.hasArg(options::OPT_shared))) {
CmdArgs.push_back("-e");
CmdArgs.push_back("_start");
}
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
CmdArgs.push_back("-dn");
} else {
// CmdArgs.push_back("--eh-frame-hdr");
CmdArgs.push_back("-Bdynamic");
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-shared");
} else {
CmdArgs.push_back("--dynamic-linker");
CmdArgs.push_back("/lib/ld.so.1"); // 64Bit Path /lib/amd64/ld.so.1
}
}
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crt1.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crti.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbegin.o")));
} else {
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crti.o")));
}
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtn.o")));
}
CmdArgs.push_back(Args.MakeArgString("-L/opt/gcc4/lib/gcc/"
+ getToolChain().getTripleString()
+ "/4.2.4"));
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
// FIXME: For some reason GCC passes -lgcc before adding
// the default system libraries. Just mimic this for now.
CmdArgs.push_back("-lgcc");
if (Args.hasArg(options::OPT_pthread))
CmdArgs.push_back("-pthread");
if (!Args.hasArg(options::OPT_shared))
CmdArgs.push_back("-lc");
CmdArgs.push_back("-lgcc");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtend.o")));
}
addProfileRT(getToolChain(), Args, CmdArgs);
const char *Exec =
Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void openbsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
bool NeedsKPIC = false;
switch (getToolChain().getArch()) {
case llvm::Triple::x86:
// When building 32-bit code on OpenBSD/amd64, we have to explicitly
// instruct as in the base system to assemble 32-bit code.
CmdArgs.push_back("--32");
break;
case llvm::Triple::ppc:
CmdArgs.push_back("-mppc");
CmdArgs.push_back("-many");
break;
case llvm::Triple::sparc:
CmdArgs.push_back("-32");
NeedsKPIC = true;
break;
case llvm::Triple::sparcv9:
CmdArgs.push_back("-64");
CmdArgs.push_back("-Av9a");
NeedsKPIC = true;
break;
case llvm::Triple::mips64:
case llvm::Triple::mips64el: {
StringRef CPUName;
StringRef ABIName;
mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName);
CmdArgs.push_back("-mabi");
CmdArgs.push_back(getGnuCompatibleMipsABIName(ABIName).data());
if (getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("-EB");
else
CmdArgs.push_back("-EL");
NeedsKPIC = true;
break;
}
default:
break;
}
if (NeedsKPIC)
addAssemblerKPIC(Args, CmdArgs);
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void openbsd::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
// Silence warning for "clang -g foo.o -o foo"
Args.ClaimAllArgs(options::OPT_g_Group);
// and "clang -emit-llvm foo.o -o foo"
Args.ClaimAllArgs(options::OPT_emit_llvm);
// and for "clang -w foo.o -o foo". Other warning options are already
// handled somewhere else.
Args.ClaimAllArgs(options::OPT_w);
if (getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("-EB");
else if (getToolChain().getArch() == llvm::Triple::mips64el)
CmdArgs.push_back("-EL");
if ((!Args.hasArg(options::OPT_nostdlib)) &&
(!Args.hasArg(options::OPT_shared))) {
CmdArgs.push_back("-e");
CmdArgs.push_back("__start");
}
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
} else {
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
CmdArgs.push_back("--eh-frame-hdr");
CmdArgs.push_back("-Bdynamic");
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-shared");
} else {
CmdArgs.push_back("-dynamic-linker");
CmdArgs.push_back("/usr/libexec/ld.so");
}
}
if (Args.hasArg(options::OPT_nopie))
CmdArgs.push_back("-nopie");
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared)) {
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("gcrt0.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crt0.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbegin.o")));
} else {
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbeginS.o")));
}
}
std::string Triple = getToolChain().getTripleString();
if (Triple.substr(0, 6) == "x86_64")
Triple.replace(0, 6, "amd64");
CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc-lib/" + Triple +
"/4.2.1"));
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
Args.AddAllArgs(CmdArgs, options::OPT_s);
Args.AddAllArgs(CmdArgs, options::OPT_t);
Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
Args.AddAllArgs(CmdArgs, options::OPT_r);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (D.CCCIsCXX()) {
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lm_p");
else
CmdArgs.push_back("-lm");
}
// FIXME: For some reason GCC passes -lgcc before adding
// the default system libraries. Just mimic this for now.
CmdArgs.push_back("-lgcc");
if (Args.hasArg(options::OPT_pthread)) {
if (!Args.hasArg(options::OPT_shared) &&
Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lpthread_p");
else
CmdArgs.push_back("-lpthread");
}
if (!Args.hasArg(options::OPT_shared)) {
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lc_p");
else
CmdArgs.push_back("-lc");
}
CmdArgs.push_back("-lgcc");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtend.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtendS.o")));
}
const char *Exec =
Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void bitrig::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void bitrig::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
if ((!Args.hasArg(options::OPT_nostdlib)) &&
(!Args.hasArg(options::OPT_shared))) {
CmdArgs.push_back("-e");
CmdArgs.push_back("__start");
}
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
} else {
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
CmdArgs.push_back("--eh-frame-hdr");
CmdArgs.push_back("-Bdynamic");
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-shared");
} else {
CmdArgs.push_back("-dynamic-linker");
CmdArgs.push_back("/usr/libexec/ld.so");
}
}
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared)) {
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("gcrt0.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crt0.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbegin.o")));
} else {
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbeginS.o")));
}
}
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (D.CCCIsCXX()) {
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lm_p");
else
CmdArgs.push_back("-lm");
}
if (Args.hasArg(options::OPT_pthread)) {
if (!Args.hasArg(options::OPT_shared) &&
Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lpthread_p");
else
CmdArgs.push_back("-lpthread");
}
if (!Args.hasArg(options::OPT_shared)) {
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lc_p");
else
CmdArgs.push_back("-lc");
}
StringRef MyArch;
switch (getToolChain().getTriple().getArch()) {
case llvm::Triple::arm:
MyArch = "arm";
break;
case llvm::Triple::x86:
MyArch = "i386";
break;
case llvm::Triple::x86_64:
MyArch = "amd64";
break;
default:
llvm_unreachable("Unsupported architecture");
}
CmdArgs.push_back(Args.MakeArgString("-lclang_rt." + MyArch));
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtend.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtendS.o")));
}
const char *Exec =
Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void freebsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
// When building 32-bit code on FreeBSD/amd64, we have to explicitly
// instruct as in the base system to assemble 32-bit code.
if (getToolChain().getArch() == llvm::Triple::x86)
CmdArgs.push_back("--32");
else if (getToolChain().getArch() == llvm::Triple::ppc)
CmdArgs.push_back("-a32");
else if (getToolChain().getArch() == llvm::Triple::mips ||
getToolChain().getArch() == llvm::Triple::mipsel ||
getToolChain().getArch() == llvm::Triple::mips64 ||
getToolChain().getArch() == llvm::Triple::mips64el) {
StringRef CPUName;
StringRef ABIName;
mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName);
CmdArgs.push_back("-march");
CmdArgs.push_back(CPUName.data());
CmdArgs.push_back("-mabi");
CmdArgs.push_back(getGnuCompatibleMipsABIName(ABIName).data());
if (getToolChain().getArch() == llvm::Triple::mips ||
getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("-EB");
else
CmdArgs.push_back("-EL");
addAssemblerKPIC(Args, CmdArgs);
} else if (getToolChain().getArch() == llvm::Triple::arm ||
getToolChain().getArch() == llvm::Triple::armeb ||
getToolChain().getArch() == llvm::Triple::thumb ||
getToolChain().getArch() == llvm::Triple::thumbeb) {
const Driver &D = getToolChain().getDriver();
const llvm::Triple &Triple = getToolChain().getTriple();
StringRef FloatABI = arm::getARMFloatABI(D, Args, Triple);
if (FloatABI == "hard") {
CmdArgs.push_back("-mfpu=vfp");
} else {
CmdArgs.push_back("-mfpu=softvfp");
}
switch(getToolChain().getTriple().getEnvironment()) {
case llvm::Triple::GNUEABIHF:
case llvm::Triple::GNUEABI:
case llvm::Triple::EABI:
CmdArgs.push_back("-meabi=5");
break;
default:
CmdArgs.push_back("-matpcs");
}
} else if (getToolChain().getArch() == llvm::Triple::sparc ||
getToolChain().getArch() == llvm::Triple::sparcv9) {
if (getToolChain().getArch() == llvm::Triple::sparc)
CmdArgs.push_back("-Av8plusa");
else
CmdArgs.push_back("-Av9a");
addAssemblerKPIC(Args, CmdArgs);
}
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void freebsd::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const toolchains::FreeBSD& ToolChain =
static_cast<const toolchains::FreeBSD&>(getToolChain());
const Driver &D = ToolChain.getDriver();
const bool IsPIE =
!Args.hasArg(options::OPT_shared) &&
(Args.hasArg(options::OPT_pie) || ToolChain.isPIEDefault());
ArgStringList CmdArgs;
// Silence warning for "clang -g foo.o -o foo"
Args.ClaimAllArgs(options::OPT_g_Group);
// and "clang -emit-llvm foo.o -o foo"
Args.ClaimAllArgs(options::OPT_emit_llvm);
// and for "clang -w foo.o -o foo". Other warning options are already
// handled somewhere else.
Args.ClaimAllArgs(options::OPT_w);
if (!D.SysRoot.empty())
CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
if (IsPIE)
CmdArgs.push_back("-pie");
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
} else {
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
CmdArgs.push_back("--eh-frame-hdr");
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-Bshareable");
} else {
CmdArgs.push_back("-dynamic-linker");
CmdArgs.push_back("/libexec/ld-elf.so.1");
}
if (ToolChain.getTriple().getOSMajorVersion() >= 9) {
llvm::Triple::ArchType Arch = ToolChain.getArch();
if (Arch == llvm::Triple::arm || Arch == llvm::Triple::sparc ||
Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64) {
CmdArgs.push_back("--hash-style=both");
}
}
CmdArgs.push_back("--enable-new-dtags");
}
// When building 32-bit code on FreeBSD/amd64, we have to explicitly
// instruct ld in the base system to link 32-bit code.
if (ToolChain.getArch() == llvm::Triple::x86) {
CmdArgs.push_back("-m");
CmdArgs.push_back("elf_i386_fbsd");
}
if (ToolChain.getArch() == llvm::Triple::ppc) {
CmdArgs.push_back("-m");
CmdArgs.push_back("elf32ppc_fbsd");
}
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
const char *crt1 = nullptr;
if (!Args.hasArg(options::OPT_shared)) {
if (Args.hasArg(options::OPT_pg))
crt1 = "gcrt1.o";
else if (IsPIE)
crt1 = "Scrt1.o";
else
crt1 = "crt1.o";
}
if (crt1)
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crt1)));
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crti.o")));
const char *crtbegin = nullptr;
if (Args.hasArg(options::OPT_static))
crtbegin = "crtbeginT.o";
else if (Args.hasArg(options::OPT_shared) || IsPIE)
crtbegin = "crtbeginS.o";
else
crtbegin = "crtbegin.o";
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtbegin)));
}
Args.AddAllArgs(CmdArgs, options::OPT_L);
const ToolChain::path_list Paths = ToolChain.getFilePaths();
for (const auto &Path : Paths)
CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + Path));
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
Args.AddAllArgs(CmdArgs, options::OPT_s);
Args.AddAllArgs(CmdArgs, options::OPT_t);
Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
Args.AddAllArgs(CmdArgs, options::OPT_r);
if (D.IsUsingLTO(Args))
AddGoldPlugin(ToolChain, Args, CmdArgs);
AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (D.CCCIsCXX()) {
ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs);
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lm_p");
else
CmdArgs.push_back("-lm");
}
// FIXME: For some reason GCC passes -lgcc and -lgcc_s before adding
// the default system libraries. Just mimic this for now.
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lgcc_p");
else
CmdArgs.push_back("-lgcc");
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-lgcc_eh");
} else if (Args.hasArg(options::OPT_pg)) {
CmdArgs.push_back("-lgcc_eh_p");
} else {
CmdArgs.push_back("--as-needed");
CmdArgs.push_back("-lgcc_s");
CmdArgs.push_back("--no-as-needed");
}
if (Args.hasArg(options::OPT_pthread)) {
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back("-lpthread_p");
else
CmdArgs.push_back("-lpthread");
}
if (Args.hasArg(options::OPT_pg)) {
if (Args.hasArg(options::OPT_shared))
CmdArgs.push_back("-lc");
else
CmdArgs.push_back("-lc_p");
CmdArgs.push_back("-lgcc_p");
} else {
CmdArgs.push_back("-lc");
CmdArgs.push_back("-lgcc");
}
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-lgcc_eh");
} else if (Args.hasArg(options::OPT_pg)) {
CmdArgs.push_back("-lgcc_eh_p");
} else {
CmdArgs.push_back("--as-needed");
CmdArgs.push_back("-lgcc_s");
CmdArgs.push_back("--no-as-needed");
}
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (Args.hasArg(options::OPT_shared) || IsPIE)
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtendS.o")));
else
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtend.o")));
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtn.o")));
}
addSanitizerRuntimes(getToolChain(), Args, CmdArgs);
addProfileRT(ToolChain, Args, CmdArgs);
const char *Exec =
Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void netbsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
// GNU as needs different flags for creating the correct output format
// on architectures with different ABIs or optional feature sets.
switch (getToolChain().getArch()) {
case llvm::Triple::x86:
CmdArgs.push_back("--32");
break;
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb: {
std::string MArch(arm::getARMTargetCPU(Args, getToolChain().getTriple()));
CmdArgs.push_back(Args.MakeArgString("-mcpu=" + MArch));
break;
}
case llvm::Triple::mips:
case llvm::Triple::mipsel:
case llvm::Triple::mips64:
case llvm::Triple::mips64el: {
StringRef CPUName;
StringRef ABIName;
mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName);
CmdArgs.push_back("-march");
CmdArgs.push_back(CPUName.data());
CmdArgs.push_back("-mabi");
CmdArgs.push_back(getGnuCompatibleMipsABIName(ABIName).data());
if (getToolChain().getArch() == llvm::Triple::mips ||
getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("-EB");
else
CmdArgs.push_back("-EL");
addAssemblerKPIC(Args, CmdArgs);
break;
}
case llvm::Triple::sparc:
CmdArgs.push_back("-32");
addAssemblerKPIC(Args, CmdArgs);
break;
case llvm::Triple::sparcv9:
CmdArgs.push_back("-64");
CmdArgs.push_back("-Av9");
addAssemblerKPIC(Args, CmdArgs);
break;
default:
break;
}
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString((getToolChain().GetProgramPath("as")));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void netbsd::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
if (!D.SysRoot.empty())
CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
CmdArgs.push_back("--eh-frame-hdr");
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
} else {
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-Bshareable");
} else {
CmdArgs.push_back("-dynamic-linker");
CmdArgs.push_back("/libexec/ld.elf_so");
}
}
// Many NetBSD architectures support more than one ABI.
// Determine the correct emulation for ld.
switch (getToolChain().getArch()) {
case llvm::Triple::x86:
CmdArgs.push_back("-m");
CmdArgs.push_back("elf_i386");
break;
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb:
CmdArgs.push_back("-m");
switch (getToolChain().getTriple().getEnvironment()) {
case llvm::Triple::EABI:
case llvm::Triple::GNUEABI:
CmdArgs.push_back("armelf_nbsd_eabi");
break;
case llvm::Triple::EABIHF:
case llvm::Triple::GNUEABIHF:
CmdArgs.push_back("armelf_nbsd_eabihf");
break;
default:
CmdArgs.push_back("armelf_nbsd");
break;
}
break;
case llvm::Triple::mips64:
case llvm::Triple::mips64el:
if (mips::hasMipsAbiArg(Args, "32")) {
CmdArgs.push_back("-m");
if (getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("elf32btsmip");
else
CmdArgs.push_back("elf32ltsmip");
} else if (mips::hasMipsAbiArg(Args, "64")) {
CmdArgs.push_back("-m");
if (getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("elf64btsmip");
else
CmdArgs.push_back("elf64ltsmip");
}
break;
case llvm::Triple::sparc:
CmdArgs.push_back("-m");
CmdArgs.push_back("elf32_sparc");
break;
case llvm::Triple::sparcv9:
CmdArgs.push_back("-m");
CmdArgs.push_back("elf64_sparc");
break;
default:
break;
}
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crt0.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crti.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbegin.o")));
} else {
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crti.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbeginS.o")));
}
}
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
Args.AddAllArgs(CmdArgs, options::OPT_s);
Args.AddAllArgs(CmdArgs, options::OPT_t);
Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
Args.AddAllArgs(CmdArgs, options::OPT_r);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
unsigned Major, Minor, Micro;
getToolChain().getTriple().getOSVersion(Major, Minor, Micro);
bool useLibgcc = true;
if (Major >= 7 || (Major == 6 && Minor == 99 && Micro >= 40) || Major == 0) {
switch(getToolChain().getArch()) {
case llvm::Triple::arm:
case llvm::Triple::armeb:
case llvm::Triple::thumb:
case llvm::Triple::thumbeb:
case llvm::Triple::x86:
case llvm::Triple::x86_64:
useLibgcc = false;
break;
default:
break;
}
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (D.CCCIsCXX()) {
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
CmdArgs.push_back("-lm");
}
if (Args.hasArg(options::OPT_pthread))
CmdArgs.push_back("-lpthread");
CmdArgs.push_back("-lc");
if (useLibgcc) {
if (Args.hasArg(options::OPT_static)) {
// libgcc_eh depends on libc, so resolve as much as possible,
// pull in any new requirements from libc and then get the rest
// of libgcc.
CmdArgs.push_back("-lgcc_eh");
CmdArgs.push_back("-lc");
CmdArgs.push_back("-lgcc");
} else {
CmdArgs.push_back("-lgcc");
CmdArgs.push_back("--as-needed");
CmdArgs.push_back("-lgcc_s");
CmdArgs.push_back("--no-as-needed");
}
}
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared))
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath(
"crtend.o")));
else
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath(
"crtendS.o")));
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath(
"crtn.o")));
}
addProfileRT(getToolChain(), Args, CmdArgs);
const char *Exec = Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void gnutools::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
bool NeedsKPIC = false;
// Add --32/--64 to make sure we get the format we want.
// This is incomplete
if (getToolChain().getArch() == llvm::Triple::x86) {
CmdArgs.push_back("--32");
} else if (getToolChain().getArch() == llvm::Triple::x86_64) {
if (getToolChain().getTriple().getEnvironment() == llvm::Triple::GNUX32)
CmdArgs.push_back("--x32");
else
CmdArgs.push_back("--64");
} else if (getToolChain().getArch() == llvm::Triple::ppc) {
CmdArgs.push_back("-a32");
CmdArgs.push_back("-mppc");
CmdArgs.push_back("-many");
} else if (getToolChain().getArch() == llvm::Triple::ppc64) {
CmdArgs.push_back("-a64");
CmdArgs.push_back("-mppc64");
CmdArgs.push_back("-many");
} else if (getToolChain().getArch() == llvm::Triple::ppc64le) {
CmdArgs.push_back("-a64");
CmdArgs.push_back("-mppc64");
CmdArgs.push_back("-many");
CmdArgs.push_back("-mlittle-endian");
} else if (getToolChain().getArch() == llvm::Triple::sparc) {
CmdArgs.push_back("-32");
CmdArgs.push_back("-Av8plusa");
NeedsKPIC = true;
} else if (getToolChain().getArch() == llvm::Triple::sparcv9) {
CmdArgs.push_back("-64");
CmdArgs.push_back("-Av9a");
NeedsKPIC = true;
} else if (getToolChain().getArch() == llvm::Triple::arm ||
getToolChain().getArch() == llvm::Triple::armeb) {
StringRef MArch = getToolChain().getArchName();
if (MArch == "armv7" || MArch == "armv7a" || MArch == "armv7-a")
CmdArgs.push_back("-mfpu=neon");
if (MArch == "armv8" || MArch == "armv8a" || MArch == "armv8-a" ||
MArch == "armebv8" || MArch == "armebv8a" || MArch == "armebv8-a")
CmdArgs.push_back("-mfpu=crypto-neon-fp-armv8");
StringRef ARMFloatABI = tools::arm::getARMFloatABI(
getToolChain().getDriver(), Args, getToolChain().getTriple());
CmdArgs.push_back(Args.MakeArgString("-mfloat-abi=" + ARMFloatABI));
Args.AddLastArg(CmdArgs, options::OPT_march_EQ);
// FIXME: remove krait check when GNU tools support krait cpu
// for now replace it with -march=armv7-a to avoid a lower
// march from being picked in the absence of a cpu flag.
Arg *A;
if ((A = Args.getLastArg(options::OPT_mcpu_EQ)) &&
StringRef(A->getValue()) == "krait")
CmdArgs.push_back("-march=armv7-a");
else
Args.AddLastArg(CmdArgs, options::OPT_mcpu_EQ);
Args.AddLastArg(CmdArgs, options::OPT_mfpu_EQ);
} else if (getToolChain().getArch() == llvm::Triple::mips ||
getToolChain().getArch() == llvm::Triple::mipsel ||
getToolChain().getArch() == llvm::Triple::mips64 ||
getToolChain().getArch() == llvm::Triple::mips64el) {
StringRef CPUName;
StringRef ABIName;
mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName);
ABIName = getGnuCompatibleMipsABIName(ABIName);
CmdArgs.push_back("-march");
CmdArgs.push_back(CPUName.data());
CmdArgs.push_back("-mabi");
CmdArgs.push_back(ABIName.data());
// LLVM doesn't support -mabicalls yet and acts as if it is always given.
CmdArgs.push_back("-mno-shared");
// LLVM doesn't support -mplt yet and acts as if it is always given.
// However, -mplt has no effect with the N64 ABI.
CmdArgs.push_back(ABIName == "64" ? "-KPIC" : "-call_nonpic");
if (getToolChain().getArch() == llvm::Triple::mips ||
getToolChain().getArch() == llvm::Triple::mips64)
CmdArgs.push_back("-EB");
else
CmdArgs.push_back("-EL");
if (Arg *A = Args.getLastArg(options::OPT_mnan_EQ)) {
if (StringRef(A->getValue()) == "2008")
CmdArgs.push_back(Args.MakeArgString("-mnan=2008"));
}
// Add the last -mfp32/-mfpxx/-mfp64 or -mfpxx if it is enabled by default.
if (Arg *A = Args.getLastArg(options::OPT_mfp32, options::OPT_mfpxx,
options::OPT_mfp64)) {
A->claim();
A->render(Args, CmdArgs);
} else if (mips::isFPXXDefault(getToolChain().getTriple(), CPUName,
ABIName))
CmdArgs.push_back("-mfpxx");
// Pass on -mmips16 or -mno-mips16. However, the assembler equivalent of
// -mno-mips16 is actually -no-mips16.
if (Arg *A = Args.getLastArg(options::OPT_mips16,
options::OPT_mno_mips16)) {
if (A->getOption().matches(options::OPT_mips16)) {
A->claim();
A->render(Args, CmdArgs);
} else {
A->claim();
CmdArgs.push_back("-no-mips16");
}
}
Args.AddLastArg(CmdArgs, options::OPT_mmicromips,
options::OPT_mno_micromips);
Args.AddLastArg(CmdArgs, options::OPT_mdsp, options::OPT_mno_dsp);
Args.AddLastArg(CmdArgs, options::OPT_mdspr2, options::OPT_mno_dspr2);
if (Arg *A = Args.getLastArg(options::OPT_mmsa, options::OPT_mno_msa)) {
// Do not use AddLastArg because not all versions of MIPS assembler
// support -mmsa / -mno-msa options.
if (A->getOption().matches(options::OPT_mmsa))
CmdArgs.push_back(Args.MakeArgString("-mmsa"));
}
Args.AddLastArg(CmdArgs, options::OPT_mhard_float,
options::OPT_msoft_float);
Args.AddLastArg(CmdArgs, options::OPT_modd_spreg,
options::OPT_mno_odd_spreg);
NeedsKPIC = true;
} else if (getToolChain().getArch() == llvm::Triple::systemz) {
// Always pass an -march option, since our default of z10 is later
// than the GNU assembler's default.
StringRef CPUName = getSystemZTargetCPU(Args);
CmdArgs.push_back(Args.MakeArgString("-march=" + CPUName));
}
if (NeedsKPIC)
addAssemblerKPIC(Args, CmdArgs);
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
// Handle the debug info splitting at object creation time if we're
// creating an object.
// TODO: Currently only works on linux with newer objcopy.
if (Args.hasArg(options::OPT_gsplit_dwarf) &&
getToolChain().getTriple().isOSLinux())
SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
SplitDebugName(Args, Inputs));
}
static void AddLibgcc(const llvm::Triple &Triple, const Driver &D,
ArgStringList &CmdArgs, const ArgList &Args) {
bool isAndroid = Triple.getEnvironment() == llvm::Triple::Android;
bool StaticLibgcc = Args.hasArg(options::OPT_static_libgcc) ||
Args.hasArg(options::OPT_static);
if (!D.CCCIsCXX())
CmdArgs.push_back("-lgcc");
if (StaticLibgcc || isAndroid) {
if (D.CCCIsCXX())
CmdArgs.push_back("-lgcc");
} else {
if (!D.CCCIsCXX())
CmdArgs.push_back("--as-needed");
CmdArgs.push_back("-lgcc_s");
if (!D.CCCIsCXX())
CmdArgs.push_back("--no-as-needed");
}
if (StaticLibgcc && !isAndroid)
CmdArgs.push_back("-lgcc_eh");
else if (!Args.hasArg(options::OPT_shared) && D.CCCIsCXX())
CmdArgs.push_back("-lgcc");
// According to Android ABI, we have to link with libdl if we are
// linking with non-static libgcc.
//
// NOTE: This fixes a link error on Android MIPS as well. The non-static
// libgcc for MIPS relies on _Unwind_Find_FDE and dl_iterate_phdr from libdl.
if (isAndroid && !StaticLibgcc)
CmdArgs.push_back("-ldl");
}
static StringRef getLinuxDynamicLinker(const ArgList &Args,
const toolchains::Linux &ToolChain) {
if (ToolChain.getTriple().getEnvironment() == llvm::Triple::Android) {
if (ToolChain.getTriple().isArch64Bit())
return "/system/bin/linker64";
else
return "/system/bin/linker";
} else if (ToolChain.getArch() == llvm::Triple::x86 ||
ToolChain.getArch() == llvm::Triple::sparc)
return "/lib/ld-linux.so.2";
else if (ToolChain.getArch() == llvm::Triple::aarch64 ||
ToolChain.getArch() == llvm::Triple::arm64)
return "/lib/ld-linux-aarch64.so.1";
else if (ToolChain.getArch() == llvm::Triple::aarch64_be ||
ToolChain.getArch() == llvm::Triple::arm64_be)
return "/lib/ld-linux-aarch64_be.so.1";
else if (ToolChain.getArch() == llvm::Triple::arm ||
ToolChain.getArch() == llvm::Triple::thumb) {
if (ToolChain.getTriple().getEnvironment() == llvm::Triple::GNUEABIHF)
return "/lib/ld-linux-armhf.so.3";
else
return "/lib/ld-linux.so.3";
} else if (ToolChain.getArch() == llvm::Triple::armeb ||
ToolChain.getArch() == llvm::Triple::thumbeb) {
if (ToolChain.getTriple().getEnvironment() == llvm::Triple::GNUEABIHF)
return "/lib/ld-linux-armhf.so.3"; /* TODO: check which dynamic linker name. */
else
return "/lib/ld-linux.so.3"; /* TODO: check which dynamic linker name. */
} else if (ToolChain.getArch() == llvm::Triple::mips ||
ToolChain.getArch() == llvm::Triple::mipsel) {
if (mips::isNaN2008(Args, ToolChain.getTriple()))
return "/lib/ld-linux-mipsn8.so.1";
return "/lib/ld.so.1";
} else if (ToolChain.getArch() == llvm::Triple::mips64 ||
ToolChain.getArch() == llvm::Triple::mips64el) {
if (mips::hasMipsAbiArg(Args, "n32"))
return mips::isNaN2008(Args, ToolChain.getTriple())
? "/lib32/ld-linux-mipsn8.so.1" : "/lib32/ld.so.1";
return mips::isNaN2008(Args, ToolChain.getTriple())
? "/lib64/ld-linux-mipsn8.so.1" : "/lib64/ld.so.1";
} else if (ToolChain.getArch() == llvm::Triple::ppc)
return "/lib/ld.so.1";
else if (ToolChain.getArch() == llvm::Triple::ppc64 ||
ToolChain.getArch() == llvm::Triple::systemz)
return "/lib64/ld64.so.1";
else if (ToolChain.getArch() == llvm::Triple::ppc64le)
return "/lib64/ld64.so.2";
else if (ToolChain.getArch() == llvm::Triple::sparcv9)
return "/lib64/ld-linux.so.2";
else if (ToolChain.getArch() == llvm::Triple::x86_64 &&
ToolChain.getTriple().getEnvironment() == llvm::Triple::GNUX32)
return "/libx32/ld-linux-x32.so.2";
else
return "/lib64/ld-linux-x86-64.so.2";
}
static void AddRunTimeLibs(const ToolChain &TC, const Driver &D,
ArgStringList &CmdArgs, const ArgList &Args) {
// Make use of compiler-rt if --rtlib option is used
ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(Args);
switch(RLT) {
case ToolChain::RLT_CompilerRT:
addClangRTLinux(TC, Args, CmdArgs);
break;
case ToolChain::RLT_Libgcc:
AddLibgcc(TC.getTriple(), D, CmdArgs, Args);
break;
}
}
void gnutools::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const toolchains::Linux& ToolChain =
static_cast<const toolchains::Linux&>(getToolChain());
const Driver &D = ToolChain.getDriver();
const bool isAndroid =
ToolChain.getTriple().getEnvironment() == llvm::Triple::Android;
const bool IsPIE =
!Args.hasArg(options::OPT_shared) &&
!Args.hasArg(options::OPT_static) &&
(Args.hasArg(options::OPT_pie) || ToolChain.isPIEDefault() ||
// On Android every code is PIC so every executable is PIE
// Cannot use isPIEDefault here since otherwise
// PIE only logic will be enabled during compilation
isAndroid);
ArgStringList CmdArgs;
// Silence warning for "clang -g foo.o -o foo"
Args.ClaimAllArgs(options::OPT_g_Group);
// and "clang -emit-llvm foo.o -o foo"
Args.ClaimAllArgs(options::OPT_emit_llvm);
// and for "clang -w foo.o -o foo". Other warning options are already
// handled somewhere else.
Args.ClaimAllArgs(options::OPT_w);
if (!D.SysRoot.empty())
CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
if (IsPIE)
CmdArgs.push_back("-pie");
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
if (Args.hasArg(options::OPT_s))
CmdArgs.push_back("-s");
for (const auto &Opt : ToolChain.ExtraOpts)
CmdArgs.push_back(Opt.c_str());
if (!Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("--eh-frame-hdr");
}
CmdArgs.push_back("-m");
if (ToolChain.getArch() == llvm::Triple::x86)
CmdArgs.push_back("elf_i386");
else if (ToolChain.getArch() == llvm::Triple::aarch64 ||
ToolChain.getArch() == llvm::Triple::arm64)
CmdArgs.push_back("aarch64linux");
else if (ToolChain.getArch() == llvm::Triple::aarch64_be ||
ToolChain.getArch() == llvm::Triple::arm64_be)
CmdArgs.push_back("aarch64_be_linux");
else if (ToolChain.getArch() == llvm::Triple::arm
|| ToolChain.getArch() == llvm::Triple::thumb)
CmdArgs.push_back("armelf_linux_eabi");
else if (ToolChain.getArch() == llvm::Triple::armeb
|| ToolChain.getArch() == llvm::Triple::thumbeb)
CmdArgs.push_back("armebelf_linux_eabi"); /* TODO: check which NAME. */
else if (ToolChain.getArch() == llvm::Triple::ppc)
CmdArgs.push_back("elf32ppclinux");
else if (ToolChain.getArch() == llvm::Triple::ppc64)
CmdArgs.push_back("elf64ppc");
else if (ToolChain.getArch() == llvm::Triple::ppc64le)
CmdArgs.push_back("elf64lppc");
else if (ToolChain.getArch() == llvm::Triple::sparc)
CmdArgs.push_back("elf32_sparc");
else if (ToolChain.getArch() == llvm::Triple::sparcv9)
CmdArgs.push_back("elf64_sparc");
else if (ToolChain.getArch() == llvm::Triple::mips)
CmdArgs.push_back("elf32btsmip");
else if (ToolChain.getArch() == llvm::Triple::mipsel)
CmdArgs.push_back("elf32ltsmip");
else if (ToolChain.getArch() == llvm::Triple::mips64) {
if (mips::hasMipsAbiArg(Args, "n32"))
CmdArgs.push_back("elf32btsmipn32");
else
CmdArgs.push_back("elf64btsmip");
}
else if (ToolChain.getArch() == llvm::Triple::mips64el) {
if (mips::hasMipsAbiArg(Args, "n32"))
CmdArgs.push_back("elf32ltsmipn32");
else
CmdArgs.push_back("elf64ltsmip");
}
else if (ToolChain.getArch() == llvm::Triple::systemz)
CmdArgs.push_back("elf64_s390");
else if (ToolChain.getArch() == llvm::Triple::x86_64 &&
ToolChain.getTriple().getEnvironment() == llvm::Triple::GNUX32)
CmdArgs.push_back("elf32_x86_64");
else
CmdArgs.push_back("elf_x86_64");
if (Args.hasArg(options::OPT_static)) {
if (ToolChain.getArch() == llvm::Triple::arm ||
ToolChain.getArch() == llvm::Triple::armeb ||
ToolChain.getArch() == llvm::Triple::thumb ||
ToolChain.getArch() == llvm::Triple::thumbeb)
CmdArgs.push_back("-Bstatic");
else
CmdArgs.push_back("-static");
} else if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-shared");
}
if (ToolChain.getArch() == llvm::Triple::arm ||
ToolChain.getArch() == llvm::Triple::armeb ||
ToolChain.getArch() == llvm::Triple::thumb ||
ToolChain.getArch() == llvm::Triple::thumbeb ||
(!Args.hasArg(options::OPT_static) &&
!Args.hasArg(options::OPT_shared))) {
CmdArgs.push_back("-dynamic-linker");
CmdArgs.push_back(Args.MakeArgString(
D.DyldPrefix + getLinuxDynamicLinker(Args, ToolChain)));
}
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!isAndroid) {
const char *crt1 = nullptr;
if (!Args.hasArg(options::OPT_shared)){
if (Args.hasArg(options::OPT_pg))
crt1 = "gcrt1.o";
else if (IsPIE)
crt1 = "Scrt1.o";
else
crt1 = "crt1.o";
}
if (crt1)
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crt1)));
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crti.o")));
}
const char *crtbegin;
if (Args.hasArg(options::OPT_static))
crtbegin = isAndroid ? "crtbegin_static.o" : "crtbeginT.o";
else if (Args.hasArg(options::OPT_shared))
crtbegin = isAndroid ? "crtbegin_so.o" : "crtbeginS.o";
else if (IsPIE)
crtbegin = isAndroid ? "crtbegin_dynamic.o" : "crtbeginS.o";
else
crtbegin = isAndroid ? "crtbegin_dynamic.o" : "crtbegin.o";
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtbegin)));
// Add crtfastmath.o if available and fast math is enabled.
ToolChain.AddFastMathRuntimeIfAvailable(Args, CmdArgs);
}
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_u);
const ToolChain::path_list Paths = ToolChain.getFilePaths();
for (const auto &Path : Paths)
CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + Path));
if (D.IsUsingLTO(Args))
AddGoldPlugin(ToolChain, Args, CmdArgs);
if (Args.hasArg(options::OPT_Z_Xlinker__no_demangle))
CmdArgs.push_back("--no-demangle");
AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs);
addSanitizerRuntimes(getToolChain(), Args, CmdArgs);
// The profile runtime also needs access to system libraries.
addProfileRT(getToolChain(), Args, CmdArgs);
if (D.CCCIsCXX() &&
!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
bool OnlyLibstdcxxStatic = Args.hasArg(options::OPT_static_libstdcxx) &&
!Args.hasArg(options::OPT_static);
if (OnlyLibstdcxxStatic)
CmdArgs.push_back("-Bstatic");
ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs);
if (OnlyLibstdcxxStatic)
CmdArgs.push_back("-Bdynamic");
CmdArgs.push_back("-lm");
}
if (!Args.hasArg(options::OPT_nostdlib)) {
if (!Args.hasArg(options::OPT_nodefaultlibs)) {
if (Args.hasArg(options::OPT_static))
CmdArgs.push_back("--start-group");
LibOpenMP UsedOpenMPLib = LibUnknown;
if (Args.hasArg(options::OPT_fopenmp)) {
UsedOpenMPLib = LibGOMP;
} else if (const Arg *A = Args.getLastArg(options::OPT_fopenmp_EQ)) {
UsedOpenMPLib = llvm::StringSwitch<LibOpenMP>(A->getValue())
.Case("libgomp", LibGOMP)
.Case("libiomp5", LibIOMP5)
.Default(LibUnknown);
if (UsedOpenMPLib == LibUnknown)
D.Diag(diag::err_drv_unsupported_option_argument)
<< A->getOption().getName() << A->getValue();
}
switch (UsedOpenMPLib) {
case LibGOMP:
CmdArgs.push_back("-lgomp");
// FIXME: Exclude this for platforms with libgomp that don't require
// librt. Most modern Linux platforms require it, but some may not.
CmdArgs.push_back("-lrt");
break;
case LibIOMP5:
CmdArgs.push_back("-liomp5");
break;
case LibUnknown:
break;
}
AddRunTimeLibs(ToolChain, D, CmdArgs, Args);
if ((Args.hasArg(options::OPT_pthread) ||
Args.hasArg(options::OPT_pthreads) || UsedOpenMPLib != LibUnknown) &&
!isAndroid)
CmdArgs.push_back("-lpthread");
CmdArgs.push_back("-lc");
if (Args.hasArg(options::OPT_static))
CmdArgs.push_back("--end-group");
else
AddRunTimeLibs(ToolChain, D, CmdArgs, Args);
}
if (!Args.hasArg(options::OPT_nostartfiles)) {
const char *crtend;
if (Args.hasArg(options::OPT_shared))
crtend = isAndroid ? "crtend_so.o" : "crtendS.o";
else if (IsPIE)
crtend = isAndroid ? "crtend_android.o" : "crtendS.o";
else
crtend = isAndroid ? "crtend_android.o" : "crtend.o";
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtend)));
if (!isAndroid)
CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtn.o")));
}
}
C.addCommand(new Command(JA, *this, ToolChain.Linker.c_str(), CmdArgs));
}
void minix::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void minix::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crt1.o")));
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crti.o")));
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crtbegin.o")));
CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crtn.o")));
}
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
addProfileRT(getToolChain(), Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
if (D.CCCIsCXX()) {
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
CmdArgs.push_back("-lm");
}
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (Args.hasArg(options::OPT_pthread))
CmdArgs.push_back("-lpthread");
CmdArgs.push_back("-lc");
CmdArgs.push_back("-lCompilerRT-Generic");
CmdArgs.push_back("-L/usr/pkg/compiler-rt/lib");
CmdArgs.push_back(
Args.MakeArgString(getToolChain().GetFilePath("crtend.o")));
}
const char *Exec = Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
/// DragonFly Tools
// For now, DragonFly Assemble does just about the same as for
// FreeBSD, but this may change soon.
void dragonfly::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
// When building 32-bit code on DragonFly/pc64, we have to explicitly
// instruct as in the base system to assemble 32-bit code.
if (getToolChain().getArch() == llvm::Triple::x86)
CmdArgs.push_back("--32");
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void dragonfly::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
bool UseGCC47 = false;
const Driver &D = getToolChain().getDriver();
ArgStringList CmdArgs;
if (llvm::sys::fs::exists("/usr/lib/gcc47", UseGCC47))
UseGCC47 = false;
if (!D.SysRoot.empty())
CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
CmdArgs.push_back("--eh-frame-hdr");
if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-Bstatic");
} else {
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
if (Args.hasArg(options::OPT_shared))
CmdArgs.push_back("-Bshareable");
else {
CmdArgs.push_back("-dynamic-linker");
CmdArgs.push_back("/usr/libexec/ld-elf.so.2");
}
CmdArgs.push_back("--hash-style=both");
}
// When building 32-bit code on DragonFly/pc64, we have to explicitly
// instruct ld in the base system to link 32-bit code.
if (getToolChain().getArch() == llvm::Triple::x86) {
CmdArgs.push_back("-m");
CmdArgs.push_back("elf_i386");
}
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (!Args.hasArg(options::OPT_shared)) {
if (Args.hasArg(options::OPT_pg))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("gcrt1.o")));
else {
if (Args.hasArg(options::OPT_pie))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("Scrt1.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crt1.o")));
}
}
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crti.o")));
if (Args.hasArg(options::OPT_shared) || Args.hasArg(options::OPT_pie))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbeginS.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtbegin.o")));
}
Args.AddAllArgs(CmdArgs, options::OPT_L);
Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
Args.AddAllArgs(CmdArgs, options::OPT_e);
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nodefaultlibs)) {
// FIXME: GCC passes on -lgcc, -lgcc_pic and a whole lot of
// rpaths
if (UseGCC47)
CmdArgs.push_back("-L/usr/lib/gcc47");
else
CmdArgs.push_back("-L/usr/lib/gcc44");
if (!Args.hasArg(options::OPT_static)) {
if (UseGCC47) {
CmdArgs.push_back("-rpath");
CmdArgs.push_back("/usr/lib/gcc47");
} else {
CmdArgs.push_back("-rpath");
CmdArgs.push_back("/usr/lib/gcc44");
}
}
if (D.CCCIsCXX()) {
getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
CmdArgs.push_back("-lm");
}
if (Args.hasArg(options::OPT_pthread))
CmdArgs.push_back("-lpthread");
if (!Args.hasArg(options::OPT_nolibc)) {
CmdArgs.push_back("-lc");
}
if (UseGCC47) {
if (Args.hasArg(options::OPT_static) ||
Args.hasArg(options::OPT_static_libgcc)) {
CmdArgs.push_back("-lgcc");
CmdArgs.push_back("-lgcc_eh");
} else {
if (Args.hasArg(options::OPT_shared_libgcc)) {
CmdArgs.push_back("-lgcc_pic");
if (!Args.hasArg(options::OPT_shared))
CmdArgs.push_back("-lgcc");
} else {
CmdArgs.push_back("-lgcc");
CmdArgs.push_back("--as-needed");
CmdArgs.push_back("-lgcc_pic");
CmdArgs.push_back("--no-as-needed");
}
}
} else {
if (Args.hasArg(options::OPT_shared)) {
CmdArgs.push_back("-lgcc_pic");
} else {
CmdArgs.push_back("-lgcc");
}
}
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles)) {
if (Args.hasArg(options::OPT_shared) || Args.hasArg(options::OPT_pie))
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtendS.o")));
else
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtend.o")));
CmdArgs.push_back(Args.MakeArgString(
getToolChain().GetFilePath("crtn.o")));
}
addProfileRT(getToolChain(), Args, CmdArgs);
const char *Exec = Args.MakeArgString(getToolChain().GetLinkerPath());
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
static void addSanitizerRTWindows(const ToolChain &TC, const ArgList &Args,
ArgStringList &CmdArgs,
const StringRef RTName) {
SmallString<128> LibSanitizer(getCompilerRTLibDir(TC));
llvm::sys::path::append(LibSanitizer,
Twine("clang_rt.") + RTName + ".lib");
CmdArgs.push_back(Args.MakeArgString(LibSanitizer));
}
void visualstudio::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
if (Output.isFilename()) {
CmdArgs.push_back(Args.MakeArgString(std::string("-out:") +
Output.getFilename()));
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (!Args.hasArg(options::OPT_nostdlib) &&
!Args.hasArg(options::OPT_nostartfiles) &&
!C.getDriver().IsCLMode()) {
CmdArgs.push_back("-defaultlib:libcmt");
}
CmdArgs.push_back("-nologo");
if (Args.hasArg(options::OPT_g_Group)) {
CmdArgs.push_back("-debug");
}
bool DLL = Args.hasArg(options::OPT__SLASH_LD, options::OPT__SLASH_LDd);
if (DLL) {
CmdArgs.push_back(Args.MakeArgString("-dll"));
SmallString<128> ImplibName(Output.getFilename());
llvm::sys::path::replace_extension(ImplibName, "lib");
CmdArgs.push_back(Args.MakeArgString(std::string("-implib:") +
ImplibName.str()));
}
if (getToolChain().getSanitizerArgs().needsAsanRt()) {
CmdArgs.push_back(Args.MakeArgString("-debug"));
CmdArgs.push_back(Args.MakeArgString("-incremental:no"));
// FIXME: Handle 64-bit.
if (DLL) {
addSanitizerRTWindows(getToolChain(), Args, CmdArgs,
"asan_dll_thunk-i386");
} else {
addSanitizerRTWindows(getToolChain(), Args, CmdArgs, "asan-i386");
addSanitizerRTWindows(getToolChain(), Args, CmdArgs, "asan_cxx-i386");
}
}
Args.AddAllArgValues(CmdArgs, options::OPT_l);
Args.AddAllArgValues(CmdArgs, options::OPT__SLASH_link);
// Add filenames immediately.
for (const auto &Input : Inputs)
if (Input.isFilename())
CmdArgs.push_back(Input.getFilename());
else
Input.getInputArg().renderAsInput(Args, CmdArgs);
const char *Exec =
Args.MakeArgString(getToolChain().GetProgramPath("link.exe"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void visualstudio::Compile::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
C.addCommand(GetCommand(C, JA, Output, Inputs, Args, LinkingOutput));
}
// Try to find FallbackName on PATH that is not identical to ClangProgramPath.
// If one cannot be found, return FallbackName.
// We do this special search to prevent clang-cl from falling back onto itself
// if it's available as cl.exe on the path.
static std::string FindFallback(const char *FallbackName,
const char *ClangProgramPath) {
llvm::Optional<std::string> OptPath = llvm::sys::Process::GetEnv("PATH");
if (!OptPath.hasValue())
return FallbackName;
const char EnvPathSeparatorStr[] = {llvm::sys::EnvPathSeparator, '\0'};
SmallVector<StringRef, 8> PathSegments;
llvm::SplitString(OptPath.getValue(), PathSegments, EnvPathSeparatorStr);
for (size_t i = 0, e = PathSegments.size(); i != e; ++i) {
const StringRef &PathSegment = PathSegments[i];
if (PathSegment.empty())
continue;
SmallString<128> FilePath(PathSegment);
llvm::sys::path::append(FilePath, FallbackName);
if (llvm::sys::fs::can_execute(Twine(FilePath)) &&
!llvm::sys::fs::equivalent(Twine(FilePath), ClangProgramPath))
return FilePath.str();
}
return FallbackName;
}
Command *visualstudio::Compile::GetCommand(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
CmdArgs.push_back("/nologo");
CmdArgs.push_back("/c"); // Compile only.
CmdArgs.push_back("/W0"); // No warnings.
// The goal is to be able to invoke this tool correctly based on
// any flag accepted by clang-cl.
// These are spelled the same way in clang and cl.exe,.
Args.AddAllArgs(CmdArgs, options::OPT_D, options::OPT_U);
Args.AddAllArgs(CmdArgs, options::OPT_I);
// Optimization level.
if (Arg *A = Args.getLastArg(options::OPT_O, options::OPT_O0)) {
if (A->getOption().getID() == options::OPT_O0) {
CmdArgs.push_back("/Od");
} else {
StringRef OptLevel = A->getValue();
if (OptLevel == "1" || OptLevel == "2" || OptLevel == "s")
A->render(Args, CmdArgs);
else if (OptLevel == "3")
CmdArgs.push_back("/Ox");
}
}
// Flags for which clang-cl have an alias.
// FIXME: How can we ensure this stays in sync with relevant clang-cl options?
if (Args.hasFlag(options::OPT__SLASH_GR_, options::OPT__SLASH_GR,
/*default=*/false))
CmdArgs.push_back("/GR-");
if (Arg *A = Args.getLastArg(options::OPT_ffunction_sections,
options::OPT_fno_function_sections))
CmdArgs.push_back(A->getOption().getID() == options::OPT_ffunction_sections
? "/Gy"
: "/Gy-");
if (Arg *A = Args.getLastArg(options::OPT_fdata_sections,
options::OPT_fno_data_sections))
CmdArgs.push_back(
A->getOption().getID() == options::OPT_fdata_sections ? "/Gw" : "/Gw-");
if (Args.hasArg(options::OPT_fsyntax_only))
CmdArgs.push_back("/Zs");
if (Args.hasArg(options::OPT_g_Flag, options::OPT_gline_tables_only))
CmdArgs.push_back("/Z7");
std::vector<std::string> Includes = Args.getAllArgValues(options::OPT_include);
for (const auto &Include : Includes)
CmdArgs.push_back(Args.MakeArgString(std::string("/FI") + Include));
// Flags that can simply be passed through.
Args.AddAllArgs(CmdArgs, options::OPT__SLASH_LD);
Args.AddAllArgs(CmdArgs, options::OPT__SLASH_LDd);
Args.AddAllArgs(CmdArgs, options::OPT__SLASH_EH);
// The order of these flags is relevant, so pick the last one.
if (Arg *A = Args.getLastArg(options::OPT__SLASH_MD, options::OPT__SLASH_MDd,
options::OPT__SLASH_MT, options::OPT__SLASH_MTd))
A->render(Args, CmdArgs);
// Input filename.
assert(Inputs.size() == 1);
const InputInfo &II = Inputs[0];
assert(II.getType() == types::TY_C || II.getType() == types::TY_CXX);
CmdArgs.push_back(II.getType() == types::TY_C ? "/Tc" : "/Tp");
if (II.isFilename())
CmdArgs.push_back(II.getFilename());
else
II.getInputArg().renderAsInput(Args, CmdArgs);
// Output filename.
assert(Output.getType() == types::TY_Object);
const char *Fo = Args.MakeArgString(std::string("/Fo") +
Output.getFilename());
CmdArgs.push_back(Fo);
const Driver &D = getToolChain().getDriver();
std::string Exec = FindFallback("cl.exe", D.getClangProgramPath());
return new Command(JA, *this, Args.MakeArgString(Exec), CmdArgs);
}
/// XCore Tools
// We pass assemble and link construction to the xcc tool.
void XCore::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
CmdArgs.push_back("-c");
if (Args.hasArg(options::OPT_v))
CmdArgs.push_back("-v");
if (Arg *A = Args.getLastArg(options::OPT_g_Group))
if (!A->getOption().matches(options::OPT_g0))
CmdArgs.push_back("-g");
if (Args.hasFlag(options::OPT_fverbose_asm, options::OPT_fno_verbose_asm,
false))
CmdArgs.push_back("-fverbose-asm");
Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
options::OPT_Xassembler);
for (const auto &II : Inputs)
CmdArgs.push_back(II.getFilename());
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("xcc"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
void XCore::Link::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
if (Output.isFilename()) {
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
} else {
assert(Output.isNothing() && "Invalid output.");
}
if (Args.hasArg(options::OPT_v))
CmdArgs.push_back("-v");
ExceptionSettings EH = exceptionSettings(Args, getToolChain().getTriple());
if (EH.ShouldUseExceptionTables)
CmdArgs.push_back("-fexceptions");
AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("xcc"));
C.addCommand(new Command(JA, *this, Exec, CmdArgs));
}
/// GenX Tools
// GenX assembly is performed by the GenX Finalizer.
void GenX::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
const InputInfo &Output,
const InputInfoList &Inputs,
const ArgList &Args,
const char *LinkingOutput) const {
// We only call the GenX Finalizer if the -Qxcm_jit_target option and a valid
// genx variant were specified.
const char *Platform = getGenxTargetCPU(Args);
if (strlen(Platform) && Args.hasArg(options::OPT_Qxcm_jit_target)) {
ArgStringList FinalizerArgs;
// Discard any '=' or ':' delimeters from the filename
const char *Filename = Output.getFilename();
while (*Filename == '=' || *Filename == ':')
++Filename;
if (strlen(Filename) == 0)
return;
FinalizerArgs.push_back(Filename);
FinalizerArgs.push_back("-outputCisaBinaryName");
FinalizerArgs.push_back(Filename);
FinalizerArgs.push_back("-output");
FinalizerArgs.push_back("-binary");
FinalizerArgs.push_back("-dumpcommonisa");
FinalizerArgs.push_back("-dumpvisa");
if (Args.hasArg(options::OPT_Qxcm_noschedule))
FinalizerArgs.push_back("-noschedule");
if (Args.hasArg(options::OPT_Qxcm_print_asm_count))
FinalizerArgs.push_back("-printasmcount");
if (Args.hasArg(options::OPT_mCM_printregusage)) {
FinalizerArgs.push_back("-noroundrobin");
FinalizerArgs.push_back("-printregusage");
}
if (Args.hasArg(options::OPT_Qxcm_opt_report))
FinalizerArgs.push_back("-optreport");
if (Args.hasArg(options::OPT_Qxcm_release))
FinalizerArgs.push_back("-stripcomments");
if (Arg *A = Args.getLastArg(options::OPT_mCM_unique_labels)) {
const char *LabelName = A->getValue();
if ((LabelName[0] == '=') || (LabelName[0] == ':'))
LabelName = &LabelName[1];
if (strlen(LabelName)) {
FinalizerArgs.push_back("-uniqueLabels");
FinalizerArgs.push_back(LabelName);
}
}
// Add any finalizer options specified using -mCM_jit_option.
// Options may be single options or multiple options within quotes.
// There may be any number of instances of -mCM_jit_option.
for (arg_iterator it = Args.filtered_begin(options::OPT_mCM_jit_option),
ie = Args.filtered_end(); it != ie; ++it) {
const Arg *A = *it;
std::string JitOpt = A->getValue();
size_t OptStart = JitOpt.find_first_not_of("=:");
if (OptStart == std::string::npos)
OptStart = 0;
for (unsigned i = OptStart, size = JitOpt.size(); i < size; ++i) {
if (JitOpt[i] == ' ') {
if (i > OptStart)
FinalizerArgs.push_back(Args.MakeArgString(
JitOpt.substr(OptStart, i - OptStart)));
OptStart = i + 1;
}
}
if (OptStart < JitOpt.size())
FinalizerArgs.push_back(Args.MakeArgString( JitOpt.substr(OptStart)));
}
FinalizerArgs.push_back("-platform");
FinalizerArgs.push_back(getFinalizerPlatform(Platform));
// Scalar jmp instructions will be translated into goto's
if (Args.hasArg(options::OPT_mCM_disable_jmpi)) {
FinalizerArgs.push_back("-noScalarJmp");
FinalizerArgs.push_back("-disableStructurizer");
}
// Determine the CM Finalizer executable - by default it is assumed to be
// in the same directory as the cmc executable.
StringRef P = C.getDriver().Dir;
SmallString<128> FPath(P);
#ifdef LLVM_ON_WIN32
llvm::sys::path::append(FPath, "GenX_IR.exe");
#else
llvm::sys::path::append(FPath, "GenX_IR");
#endif
FinalizerExecutable = FPath.c_str();
// The default Finalizer path can be overidden by the -mCM_genx_assembler
// option.
if (const Arg *A = Args.getLastArg(options::OPT_mCM_genx_assembler)) {
FinalizerExecutable = A->getValue();
// remove any ':' or '=' that may prefix the executable path that may
// be present due to the way we parse the -mCM_genx_assembler option to
// allow for backwards compatibility
size_t FinalizerStart = FinalizerExecutable.find_first_not_of("=:");
if (FinalizerStart == std::string::npos)
FinalizerExecutable.clear();
else
FinalizerExecutable = FinalizerExecutable.substr(FinalizerStart);
}
if (FinalizerExecutable.size())
C.addCommand(new Command(JA, *this, FinalizerExecutable.c_str(),
FinalizerArgs));
}
}
| [
"gang.y.chen@intel.com"
] | gang.y.chen@intel.com |
c310bd2e41e146c6477c5270e36de5b2eae13f60 | e8c79a50bb3ae6de451fbbae6e6865677626a07c | /std/re-error.cpp | e4e9700f9cc1cb912b38626f5ac36164841b64c9 | [] | no_license | doc-cloud/cpp | 24ddf931a501d4660c6755587500d4989b9b1639 | c9dfe9d527b04d3d0890f2a3effed3b9e7f2a373 | refs/heads/master | 2021-01-23T23:04:17.952391 | 2017-09-09T13:03:47 | 2017-09-09T13:03:47 | 102,954,864 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 763 | cpp | #include <iostream>
using std::cout;
using std::cin;
using std::endl;
#include <string>
using std::string;
#include <regex>
using std::regex;
using std::regex_error;
int main()
{
#if 0
try {
regex r("[[:alnum:]+\\.(cpp|cxx|cc)$", regex::icase);
} catch (regex_error e) {
cout << e.what() << " code " << e.code() << endl;
}
#endif
regex r("[[:alpha:]]*[^c]ei[[:alpha:]]*", regex::icase);
r.assign("[^c]ei", regex::icase);
string s;
cout << "Please input a word! Input 'q' to quit!" << endl;
while (cin >> s && s != "q") {
if (regex_match(s, r))
cout << "Input word " << s << " is okay!" << endl;
else
cout << "Input word " << s << " is not okay!" << endl;
cout << "Please input a word! Input 'q' to quit!" << endl;
}
cout << endl;
}
| [
"Linkerist@163.com"
] | Linkerist@163.com |
a878d5909b85afeb7bceb055b253f055bb30b93a | cd03b1817d54dffe21f93b3a3d83e0f6bc6da55a | /src/analyze.cpp | 30349915a210420d486a7dea05b6a61a3bf9c7fe | [] | no_license | Wyatt915/text-analysis | d0f20e25f77b980185243ae59dbac1094926503f | 65200c0e6c1d78213cb2694431a59a382e54abce | refs/heads/master | 2021-01-19T01:47:21.152409 | 2016-07-24T20:00:10 | 2016-07-24T20:00:10 | 64,083,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,444 | cpp | #include "analyze.hpp"
#include <array>
#include <vector>
#include <iostream>
#include <algorithm>
const double LETTERFREQ[] = { 0.08167, 0.01492, 0.02782, 0.04253, 0.12702,
0.02228, 0.02015, 0.06094, 0.06966, 0.00153, 0.00772, 0.04025,
0.02406, 0.06749, 0.07507, 0.01929, 0.00095, 0.05987, 0.06327,
0.09056, 0.02758, 0.00978, 0.02361, 0.00150, 0.01974, 0.00074};
std::array<long int, 26> count_chars(std::string in){
std::array<long int, 26> out;
for (unsigned int i = 0; i < 26; i++){ out[i] = 0; }
for (unsigned int i = 0; i < in.length(); i++){
if(in[i] >= 'A' && in[i] <= 'Z'){
out[in[i] - 'A']++;
}
}
return out;
}
//the count for the digram "AC" is at [0][2], "BE" is at [1][4], etc.
Matrix<int, 26, 26> count_digrams(std::vector<std::string> in){
std::string current;
Matrix<int, 26, 26> count;
for (size_t i = 0; i < 26; i++) {
for (size_t j = 0; j < 26; j++) {
count[i][j] = 0;
}
}
for (size_t i = 0; i < in.size(); i++) {
current = in[i];
if(current.length() <= 2){ continue; } //experimental
for(int j = 0; j < current.length() -1; j++){
int a = current[j] - 'A';
int b = current[j + 1] - 'A';
count[a][b] += 1;
}
}
return count;
}
//the count for the digram "AC" is at [0][2], "BE" is at [1][4], etc.
Matrix<int, 26, 26> count_digrams(std::string in){
Matrix<int, 26, 26> count;
for (size_t i = 0; i < 26; i++) {
for (size_t j = 0; j < 26; j++) {
count[i][j] = 0;
}
}
for(int j = 0; j < in.length() -1; j++){
int a = in[j] - 'A';
int b = in[j + 1] - 'A';
count[a][b] += 1;
}
return count;
}
inline double square(double a){
return a*a;
}
//chi-squared statistic
//http://www.practicalcryptography.com/cryptanalysis/text-characterisation/chi-squared-statistic/
double chi_sq(std::string in){
alpha_only(in);
int len = in.length();
std::array<double, 26> expected;
std::array<double, 26> count;
std::array<long int, 26> c = count_chars(in);
std::copy(begin(c), end(c), begin(count));
for(int i = 0; i < 26; i++){
expected[i] = (float)len * LETTERFREQ[i];
}
double chisquared = 0;
for(int i = 0; i < 26; i++){
chisquared += square(count[i] - expected[i]) / expected[i];
}
return chisquared;
}
//index of coincidence
//http://www.practicalcryptography.com/cryptanalysis/text-characterisation/index-coincidence/
double idx_coin(std::string in){
alpha_only(in);
double N = double(in.length()); //since this value gets squared, it is likely to overflow if left as an int type.
std::array<long int, 26> c = count_chars(in);
std::array<double, 26> count;
std::copy(begin(c), end(c), begin(count));
double numerator = 0.0;
double denominator = N * (N - 1); //This is where the overflow would happen.
for (size_t i = 0; i < 26; i++) {
numerator += count[i] * (count[i] - 1);
}
return numerator / denominator;
}
/**
* Finds the frequency of occurance of each letter in a given std::string.
*/
std::array<double, 26> frequency(std::string in){
std::array<long int, 26> count = count_chars(in);
int sum = std::accumulate(count.begin(), count.end(), 0);
std::array<double, 26> freq;
for (int i = 0; i < 26; i++){
freq[i] = (double)count[i] / (double)sum;
}
return freq;
}
/**
* Prints a histogram of letter frequency.
* @param in std::string to be analyzed.
* @param resolution the height of the graph, in lines.
*/
void print_histogram(std::string in, int resolution){
std::array<double, 26> freq = frequency(in);
double max_val = *std::max_element(freq.begin(), freq.end());
for (int i = 0, j = resolution; i < resolution; i++, j--){
std::cout << ' ';
for (int k = 0; k < 26; k++){
if ((freq[k] * (resolution / max_val)) >= j){
std::cout << "# ";
}
else{
std::cout << " ";
}
}
//create labels for the vertical axis.
std::cout << "| ";
printf("%.3f", 100 * (max_val - (((double)i / resolution)*max_val)));
std::cout << "%\n";
}
std::cout << ' ';
for (int i = 0; i < 26; i++){
std::cout << (char)('A' + i) << ' ';
}
std::cout << '\n';
}
| [
"wyatt915@gmail.com"
] | wyatt915@gmail.com |
d9d4f8877e064cc33038ed009fc8997c7d65d389 | 4341f4f95ebd49293cd421bdc86eaa6af1443a4a | /PWS_project.ino | 7e5f3464991029ecbb47ed4054b696c6b310e847 | [] | no_license | Lauwy222/ESP8266-WemosD1-Car | 3d9353a9a4da6f205b7576ba137283a0e84bedce | 19ae5eb2e372907a308b30657fbb32c52f427ca0 | refs/heads/main | 2023-08-28T07:48:52.107473 | 2021-02-07T23:17:55 | 2021-02-07T23:17:55 | 336,902,585 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,835 | ino | #include <ESP8266WiFi.h>
const char* ssid = "x"; //Enter network SSID
const char* password = "x"; //Enter network PASSWORD
WiFiServer server(80);
String header;
String outputState = "?"; //initially set to off
String outputDirection = "?"; //initially no direction
String lightState = "?"; //initially set to normal
// Motor Inputs (INL=left in INR=right in)
const int INL1 = D2;
const int INL2 = D7;
const int INR1 = D6;
const int INR2 = D5;
const int RL = 5;
const int RLa = 4;
void connectToWifi(){
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
server.begin();
}
void setup() {
pinMode(D0, OUTPUT);
pinMode(D1, OUTPUT);
pinMode(D2, OUTPUT);
pinMode(D3, OUTPUT);
pinMode(D4, OUTPUT);
pinMode(D5, OUTPUT);
pinMode(D6, OUTPUT);
pinMode(D7, OUTPUT);
pinMode(D8, OUTPUT);
pinMode(INL1, OUTPUT);
pinMode(INL2, OUTPUT);
pinMode(INR1, OUTPUT);
pinMode(INR2, OUTPUT);
pinMode(RL, OUTPUT);
pinMode(RLa, OUTPUT);
stopMotors();
Serial.begin(115200);
connectToWifi();
digitalWrite(D0, LOW);
digitalWrite(D1, LOW);
digitalWrite(D2, LOW);
digitalWrite(D3, LOW);
digitalWrite(D4, LOW);
digitalWrite(D5, LOW);
digitalWrite(D6, LOW);
digitalWrite(D7, LOW);
digitalWrite(D8, LOW);
}
void relayon(){
Serial.println("Lights: ON");
digitalWrite(RL, HIGH);
}
void relayoff(){
Serial.println("Lights: OFF");
digitalWrite(RL, LOW);
}
void relaybut(){
Serial.println("Button: Signal");
digitalWrite(RLa, HIGH);
delay(1000);
digitalWrite(RLa, LOW);
}
void right(){
Serial.println("Beweging: →");
digitalWrite(INL1, HIGH);
analogWrite(INL2, LOW);
digitalWrite(INR1, HIGH);
analogWrite(INR2, LOW);
}
void left(){
Serial.println("Beweging: ←");
digitalWrite(INL1, LOW);
digitalWrite(INL2, HIGH);
digitalWrite(INR1, LOW);
digitalWrite(INR2, HIGH);
}
void stopMotors(){
Serial.println("Beweging: O");
digitalWrite(INL1, LOW);
digitalWrite(INL2, LOW);
digitalWrite(INR1, LOW);
digitalWrite(INR2, LOW);
}
void forward(){
Serial.println("Beweging: ↑");
digitalWrite(INL1, HIGH);
digitalWrite(INL2, LOW);
digitalWrite(INR1, LOW);
digitalWrite(INR2, HIGH);
}
void backward(){
Serial.println("Beweging: ↓");
digitalWrite(INL1, LOW);
digitalWrite(INL2, HIGH);
digitalWrite(INR1, HIGH);
digitalWrite(INR2, LOW);
}
void createWebServer(){
WiFiClient client = server.available();
if (client) {
Serial.println("New Client.");
String currentLine = "";
while (client.connected()) {
if (client.available()) {
char c = client.read();
Serial.write(c);
header += c;
if (c == '\n') {
if (currentLine.length() == 0) {
client.println("HTTP/1.1 200 OK");
client.println("Content-type:text/html");
client.println("Connection: close");
client.println();
// Motor Control (On & Off)
if (header.indexOf("GET /control/forward") >= 0) {
outputState = "<h2 class=\"green\">AAN</h2>";
outputDirection = "<h2 class=\"green\">↑</h2>";
forward();
} else if (header.indexOf("GET /control/stop") >= 0) {
outputState = "<h2 class=\"red\">UIT</h2>";
outputDirection = "<h2 class=\"red\">O</h2>";
stopMotors();
} else if (header.indexOf("GET /control/backward") >= 0) {
outputState = "<h2 class=\"green\">AAN";
outputDirection = "<h2 class=\"green\">↓</h2>";
backward();
} else if (header.indexOf("GET /control/left") >= 0) {
outputState = "<h2 class=\"green\">AAN";
outputDirection = "<h2 class=\"green\">←</h2>";
left();
} else if (header.indexOf("GET /control/right") >= 0) {
outputState = "<h2 class=\"green\">AAN";
outputDirection = "<h2 class=\"green\">→</h2>";
right();
} else if (header.indexOf("GET /light/stop") >= 0) {
lightState = "<h2 class=\"red\">Stopped";
relayon();
} else if (header.indexOf("GET /light/run") >= 0) {
lightState = "<h2 class=\"green\">Running";
relayoff();
} else if (header.indexOf("GET /relay/button") >= 0) {
relaybut();
}
client.println("<!DOCTYPE html><html>");
client.println("<head><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">");
client.println("<link rel=\"icon\" href=\"data:,\">");
client.println("<style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}");
client.println(".button { background-color: #2ca545; border: none; color: white; padding: 16px 40px; margin: 25px; box-shadow: 0px 0px 15px 1px #aaaaaa;");
client.println("text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}");
client.println(".buttoncenter { background-color: #ba1e1e;}");
client.println(".red { color: #DC143C;}");
client.println(".green { color: #7CFC00;}");
client.println(".yellow { color: #FFFF00;}");
client.println("</style></head>");
client.println("<title>PWS WIFI controlled Vehicle</title>");
client.println("");
client.println("");
client.println(" ");
client.println(" ");
client.println("<h2>Status: </h2>" + outputState);
client.println("<h2>Beweging: </h2>"+ outputDirection);
client.println("<p><a href=\"/control/forward\"><button class=\"button\">↑</button></a></p>");
client.print("<p><a href=\"/control/left\"><button class=\"button\">←</button></a> <a href=\"/control/stop\"><button class=\"button\" class=\"buttoncenter\">O</button></a> <a href=\"/control/right\"><button class=\"button\">→</button></a></p>");
client.println("<p><a href=\"/control/backward\"><button class=\"button\">↓</button></a></p>");
client.println("");
client.println("<h2>Lights: </h2>"+ lightState);
client.println("<p><a href=\"/light/run\"><button class=\"button\">GO</button></a> <a href=\"/light/stop\"><button class=\"button\">STOP</button></a></p>");
client.println("<a href=\"/relay/button\"><button class=\"button\">LIGHTS</button></a> ");
client.println("</body></html>");
client.println();
break;
} else {
currentLine = "";
}
} else if (c != '\r') {
currentLine += c;
}
}
}
header = "";
client.stop();
Serial.println("Client disconnected.");
Serial.println("");
}
}
void loop(){
createWebServer();
}
| [
"noreply@github.com"
] | Lauwy222.noreply@github.com |
9764620e3f57eddda3776a9483247d9ce62bab8a | 8ab24571e71dfef8ed0bae1748fa2a30cb6eb042 | /BOJ_test/1929_printPrimeNumber/1929_printPrimeNumber.cpp | 82124b81a94b783213e3759c783c775ff9901a8a | [] | no_license | ki815kaisian/BOJ_test | 816d52242195c6bbeb980d5695fcd4d5db045855 | edb1120703313f2a105c4d62ef16be4ea1a06b89 | refs/heads/master | 2021-05-01T20:32:24.578103 | 2019-10-02T08:11:18 | 2019-10-02T08:11:18 | 79,368,508 | 0 | 0 | null | 2017-01-26T08:41:49 | 2017-01-18T18:07:31 | C++ | UTF-8 | C++ | false | false | 419 | cpp | #include <stdio.h>
using namespace std;
int number[1000001] = { 0 };
int main(void)
{
int under = 0;
int upper = 0;
scanf("%d %d", &under, &upper);
number[0] = number[1] = 1;
for (int i = 2; i*i <= upper; i++) {
if (number[i] == 0) {
for (int j = i + i; j <= upper; j += i) {
number[j] = 1;
}
}
}
for (int i = under; i <= upper; i++) {
if (number[i] == 0)printf("%d\n",i);
}
return 0;
}
| [
"ki815kaisian@gmail.com"
] | ki815kaisian@gmail.com |
b527fc995d31799e9665e4aeb747cca6917da3ef | 7103802e54b6e91a263a2fdfb6db0e8211c76102 | /test/Resource/ResourceCache.test.cpp | a55d4d9e9563def3821eab0f600523e92852a950 | [
"Zlib",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lairworks/nas2d-core | 5ff6203c8a984f96fd1d34798a372ed0089c0cd1 | 7dfc1d9e86eaf952caf4824478a79f736be6b880 | refs/heads/main | 2023-06-27T00:38:24.711325 | 2023-06-19T04:46:44 | 2023-06-19T04:46:44 | 40,338,546 | 13 | 9 | Zlib | 2023-06-19T04:46:45 | 2015-08-07T03:11:05 | C++ | UTF-8 | C++ | false | false | 1,483 | cpp | #include "NAS2D/Resource/ResourceCache.h"
#include <gtest/gtest.h>
TEST(ResourceCache, load) {
class MockResource {
public:
MockResource(const std::string& initString, int initValue) :
string{initString},
value{initValue}
{}
bool operator==(const MockResource& other) const {
return string == other.string && value == other.value;
}
private:
std::string string;
int value;
};
NAS2D::ResourceCache<MockResource, std::string, int> cache;
const auto& value1 = cache.load("abc", 123);
const auto& value2 = cache.load("abc", 123);
const auto& value3 = cache.load("abcd", 123);
const auto& value4 = cache.load("abc", 1234);
// Ensure expected values were returned
EXPECT_EQ((MockResource{"abc", 123}), value1);
EXPECT_EQ((MockResource{"abc", 123}), value2);
EXPECT_EQ((MockResource{"abcd", 123}), value3);
EXPECT_EQ((MockResource{"abc", 1234}), value4);
// Ensure expected identity of objects (based on their address)
// References to objects with the same load parameters should be the same object
// References to objects with different load parameters should be different
EXPECT_EQ(&value1, &value2);
EXPECT_NE(&value1, &value3);
EXPECT_NE(&value1, &value4);
EXPECT_NE(&value3, &value4);
EXPECT_EQ(3u, cache.size());
EXPECT_NO_THROW(cache.unload("not found", 0));
EXPECT_EQ(3u, cache.size());
EXPECT_NO_THROW(cache.unload("abc", 123));
EXPECT_EQ(2u, cache.size());
EXPECT_NO_THROW(cache.clear());
EXPECT_EQ(0u, cache.size());
}
| [
"Dan.R.Stevens@gmail.com"
] | Dan.R.Stevens@gmail.com |
618cc6d24cd5220528830801bbd311fffd72cde9 | 8cf32b4cbca07bd39341e1d0a29428e420b492a6 | /contracts/libc++/upstream/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp | bd63ffa92fde08c7d74f80135e3aadb214242dd9 | [
"NCSA",
"MIT"
] | permissive | cubetrain/CubeTrain | e1cd516d5dbca77082258948d3c7fc70ebd50fdc | b930a3e88e941225c2c54219267f743c790e388f | refs/heads/master | 2020-04-11T23:00:50.245442 | 2018-12-17T16:07:16 | 2018-12-17T16:07:16 | 156,970,178 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,497 | cpp | //===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// REQUIRES: c++experimental
// UNSUPPORTED: c++98, c++03
// <experimental/memory_resource>
// template <class T> class polymorphic_allocator
// template <class P1, class P2, class U1, class U2>
// void polymorphic_allocator<T>::construct(pair<P1, P2>*, pair<U1, U2> &&)
#include <experimental/memory_resource>
#include <type_traits>
#include <utility>
#include <tuple>
#include <cassert>
#include <cstdlib>
#include "test_macros.h"
#include "test_memory_resource.hpp"
#include "uses_alloc_types.hpp"
#include "controlled_allocators.hpp"
#include "test_allocator.h"
namespace ex = std::experimental::pmr;
template <class UA1, class UA2, class TT, class UU>
bool doTest(UsesAllocatorType TExpect, UsesAllocatorType UExpect,
std::pair<TT, UU>&& p)
{
using P = std::pair<UA1, UA2>;
TestResource R;
ex::memory_resource * M = &R;
ex::polymorphic_allocator<P> A(M);
P * ptr = A.allocate(2);
P * ptr2 = ptr + 1;
// UNDER TEST //
A.construct(ptr, std::move(p));
A.construct(ptr2, std::piecewise_construct,
std::forward_as_tuple(std::forward<TT>(p.first)),
std::forward_as_tuple(std::forward<UU>(p.second)));
// ------- //
bool tres = checkConstruct<TT&&>(ptr->first, TExpect, M) &&
checkConstructionEquiv(ptr->first, ptr2->first);
bool ures = checkConstruct<UU&&>(ptr->second, UExpect, M) &&
checkConstructionEquiv(ptr->second, ptr2->second);
A.destroy(ptr);
A.destroy(ptr2);
A.deallocate(ptr, 2);
return tres && ures;
}
template <class Alloc, class TT, class UU>
void test_pmr_uses_allocator(std::pair<TT, UU>&& p)
{
{
using T = NotUsesAllocator<Alloc, 1>;
using U = NotUsesAllocator<Alloc, 1>;
assert((doTest<T, U>(UA_None, UA_None, std::move(p))));
}
{
using T = UsesAllocatorV1<Alloc, 1>;
using U = UsesAllocatorV2<Alloc, 1>;
assert((doTest<T, U>(UA_AllocArg, UA_AllocLast, std::move(p))));
}
{
using T = UsesAllocatorV2<Alloc, 1>;
using U = UsesAllocatorV3<Alloc, 1>;
assert((doTest<T, U>(UA_AllocLast, UA_AllocArg, std::move(p))));
}
{
using T = UsesAllocatorV3<Alloc, 1>;
using U = NotUsesAllocator<Alloc, 1>;
assert((doTest<T, U>(UA_AllocArg, UA_None, std::move(p))));
}
}
int main()
{
using ERT = std::experimental::erased_type;
using PMR = ex::memory_resource*;
using PMA = ex::polymorphic_allocator<char>;
{
int x = 42;
int y = 42;
std::pair<int&, int&&> p(x, std::move(y));
test_pmr_uses_allocator<ERT>(std::move(p));
test_pmr_uses_allocator<PMR>(std::move(p));
test_pmr_uses_allocator<PMA>(std::move(p));
}
{
int x = 42;
int y = 42;
std::pair<int&&, int&> p(std::move(x), y);
test_pmr_uses_allocator<ERT>(std::move(p));
test_pmr_uses_allocator<PMR>(std::move(p));
test_pmr_uses_allocator<PMA>(std::move(p));
}
}
| [
"1848@shanchain.com"
] | 1848@shanchain.com |
125605fe2c3c90fa533a0e1772cee87b10a89299 | ba5eabcf0e3880a4cc86e9222fcb2ecd5f53b103 | /tools/viewer/SkSLDebuggerSlide.cpp | 4b2183b88f4de9bafc09751a991f45f35289eabc | [
"BSD-3-Clause"
] | permissive | aseprite/skia | d2b63003610c796594e81deea093eb6b13704838 | 478f512f7a84658167d9f83f35d42fb0903b4a37 | refs/heads/aseprite-m102 | 2023-08-24T00:47:30.288547 | 2023-02-28T20:21:26 | 2023-03-03T18:12:59 | 45,053,736 | 139 | 51 | BSD-3-Clause | 2023-03-03T18:14:21 | 2015-10-27T16:20:42 | C++ | UTF-8 | C++ | false | false | 11,473 | cpp | /*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "tools/viewer/SkSLDebuggerSlide.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkStream.h"
#include "tools/viewer/Viewer.h"
#include <algorithm>
#include <cstdio>
#include "imgui.h"
using namespace sk_app;
using LineNumberMap = SkSL::SkVMDebugTracePlayer::LineNumberMap;
///////////////////////////////////////////////////////////////////////////////
SkSLDebuggerSlide::SkSLDebuggerSlide() {
fName = "Debugger";
fTrace = sk_make_sp<SkSL::SkVMDebugTrace>();
}
void SkSLDebuggerSlide::load(SkScalar winWidth, SkScalar winHeight) {}
void SkSLDebuggerSlide::unload() {
fTrace = sk_make_sp<SkSL::SkVMDebugTrace>();
fPlayer.reset(nullptr);
fPlayer.setBreakpoints(std::unordered_set<int>{});
}
void SkSLDebuggerSlide::showLoadTraceGUI() {
ImGui::InputText("Trace Path", fTraceFile, SK_ARRAY_COUNT(fTraceFile));
bool load = ImGui::Button("Load Debug Trace");
if (load) {
SkFILEStream file(fTraceFile);
if (!file.isValid()) {
ImGui::OpenPopup("Can't Open Trace");
} else if (!fTrace->readTrace(&file)) {
ImGui::OpenPopup("Invalid Trace");
} else {
// Trace loaded successfully. On the next refresh, the user will see the debug UI.
fPlayer.reset(fTrace);
fPlayer.step();
fRefresh = true;
return;
}
}
if (ImGui::BeginPopupModal("Can't Open Trace", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) {
ImGui::Text("The trace file doesn't exist.");
ImGui::Separator();
if (ImGui::Button("OK", ImVec2(120, 0))) {
ImGui::CloseCurrentPopup();
}
ImGui::EndPopup();
}
if (ImGui::BeginPopupModal("Invalid Trace", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) {
ImGui::Text("The trace data could not be parsed.");
ImGui::Separator();
if (ImGui::Button("OK", ImVec2(120, 0))) {
ImGui::CloseCurrentPopup();
}
ImGui::EndPopup();
}
}
void SkSLDebuggerSlide::showDebuggerGUI() {
if (ImGui::Button("Reset")) {
fPlayer.reset(fTrace);
fRefresh = true;
}
ImGui::SameLine(/*offset_from_start_x=*/0, /*spacing=*/100);
if (ImGui::Button("Step")) {
fPlayer.step();
fRefresh = true;
}
ImGui::SameLine();
if (ImGui::Button("Step Over")) {
fPlayer.stepOver();
fRefresh = true;
}
ImGui::SameLine();
if (ImGui::Button("Step Out")) {
fPlayer.stepOut();
fRefresh = true;
}
ImGui::SameLine(/*offset_from_start_x=*/0, /*spacing=*/100);
if (ImGui::Button(fPlayer.getBreakpoints().empty() ? "Run" : "Run to Breakpoint")) {
fPlayer.run();
fRefresh = true;
}
this->showStackTraceTable();
this->showVariableTable();
this->showCodeTable();
}
void SkSLDebuggerSlide::showCodeTable() {
constexpr ImGuiTableFlags kTableFlags =
ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter |
ImGuiTableFlags_BordersV;
constexpr ImGuiTableColumnFlags kColumnFlags =
ImGuiTableColumnFlags_NoResize | ImGuiTableColumnFlags_NoReorder |
ImGuiTableColumnFlags_NoHide | ImGuiTableColumnFlags_NoSort |
ImGuiTableColumnFlags_NoHeaderLabel;
ImVec2 contentRect = ImGui::GetContentRegionAvail();
ImVec2 codeViewSize = ImVec2(0.0f, contentRect.y);
if (ImGui::BeginTable("Code View", /*column=*/2, kTableFlags, codeViewSize)) {
ImGui::TableSetupColumn("", kColumnFlags | ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("Code", kColumnFlags | ImGuiTableColumnFlags_WidthStretch);
ImGuiListClipper clipper;
clipper.Begin(fTrace->fSource.size());
while (clipper.Step()) {
for (int row = clipper.DisplayStart; row < clipper.DisplayEnd; row++) {
size_t humanReadableLine = row + 1;
ImGui::TableNextRow();
if (fPlayer.getCurrentLine() == (int)humanReadableLine) {
ImGui::TableSetBgColor(
ImGuiTableBgTarget_RowBg1,
ImGui::GetColorU32(ImGui::GetStyleColorVec4(ImGuiCol_TextSelectedBg)));
}
// Show line numbers and breakpoints.
ImGui::TableSetColumnIndex(0);
const LineNumberMap& lineNumberMap = fPlayer.getLineNumbersReached();
LineNumberMap::const_iterator iter = lineNumberMap.find(humanReadableLine);
bool reachable = iter != lineNumberMap.end() && iter->second > 0;
bool breakpointOn = fPlayer.getBreakpoints().count(humanReadableLine);
if (breakpointOn) {
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 1.0f, 1.0f, 1.0f));
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(1.0f, 0.0f, 0.0f, 0.70f));
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(1.0f, 0.0f, 0.0f, 0.85f));
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(1.0f, 0.0f, 0.0f, 1.0f));
} else if (reachable) {
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 1.0f, 1.0f, 0.75f));
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(1.0f, 1.0f, 1.0f, 0.0f));
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(1.0f, 1.0f, 1.0f, 0.2f));
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(1.0f, 1.0f, 1.0f, 0.4f));
} else {
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 1.0f, 1.0f, 0.25f));
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(1.0f, 1.0f, 1.0f, 0.0f));
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(1.0f, 1.0f, 1.0f, 0.0f));
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(1.0f, 1.0f, 1.0f, 0.0f));
}
if (ImGui::SmallButton(SkStringPrintf("%03zu ", humanReadableLine).c_str())) {
if (breakpointOn) {
fPlayer.removeBreakpoint(humanReadableLine);
} else if (reachable) {
fPlayer.addBreakpoint(humanReadableLine);
}
}
ImGui::PopStyleColor(4);
// Show lines of code.
ImGui::TableSetColumnIndex(1);
ImGui::Text("%s", fTrace->fSource[row].c_str());
}
}
if (fRefresh) {
int linesVisible = contentRect.y / ImGui::GetTextLineHeightWithSpacing();
int centerLine = (fPlayer.getCurrentLine() - 1) - (linesVisible / 2);
centerLine = std::max(0, centerLine);
ImGui::SetScrollY(clipper.ItemsHeight * centerLine);
fRefresh = false;
}
ImGui::EndTable();
}
}
void SkSLDebuggerSlide::showStackTraceTable() {
constexpr ImGuiTableFlags kTableFlags =
ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter |
ImGuiTableFlags_BordersV | ImGuiTableFlags_NoHostExtendX;
constexpr ImGuiTableColumnFlags kColumnFlags =
ImGuiTableColumnFlags_NoReorder | ImGuiTableColumnFlags_NoHide |
ImGuiTableColumnFlags_NoSort;
std::vector<int> callStack = fPlayer.getCallStack();
ImVec2 contentRect = ImGui::GetContentRegionAvail();
ImVec2 stackViewSize = ImVec2(contentRect.x / 3.0f,
ImGui::GetTextLineHeightWithSpacing() * kNumTopRows);
if (ImGui::BeginTable("Call Stack", /*column=*/1, kTableFlags, stackViewSize)) {
ImGui::TableSetupColumn("Stack", kColumnFlags);
ImGui::TableHeadersRow();
ImGuiListClipper clipper;
clipper.Begin(callStack.size());
while (clipper.Step()) {
for (int row = clipper.DisplayStart; row < clipper.DisplayEnd; row++) {
int funcIdx = callStack.rbegin()[row];
SkASSERT(funcIdx >= 0 && (size_t)funcIdx < fTrace->fFuncInfo.size());
const SkSL::SkVMFunctionInfo& funcInfo = fTrace->fFuncInfo[funcIdx];
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("%s", funcInfo.name.c_str());
}
}
ImGui::EndTable();
}
ImGui::SameLine();
}
void SkSLDebuggerSlide::showVariableTable() {
constexpr ImGuiTableFlags kTableFlags =
ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter |
ImGuiTableFlags_BordersV | ImGuiTableFlags_Resizable;
constexpr ImGuiTableColumnFlags kColumnFlags =
ImGuiTableColumnFlags_NoReorder | ImGuiTableColumnFlags_NoHide |
ImGuiTableColumnFlags_NoSort | ImGuiTableColumnFlags_WidthStretch;
int frame = fPlayer.getStackDepth() - 1;
std::vector<SkSL::SkVMDebugTracePlayer::VariableData> vars;
if (frame >= 0) {
vars = fPlayer.getLocalVariables(frame);
} else {
vars = fPlayer.getGlobalVariables();
}
ImVec2 varViewSize = ImVec2(0.0f, ImGui::GetTextLineHeightWithSpacing() * kNumTopRows);
if (ImGui::BeginTable("Variables", /*column=*/2, kTableFlags, varViewSize)) {
ImGui::TableSetupColumn("Variable", kColumnFlags);
ImGui::TableSetupColumn("Value", kColumnFlags);
ImGui::TableHeadersRow();
if (!vars.empty()) {
ImGuiListClipper clipper;
clipper.Begin(vars.size());
while (clipper.Step()) {
for (int row = clipper.DisplayStart; row < clipper.DisplayEnd; row++) {
const SkSL::SkVMDebugTracePlayer::VariableData& var = vars.at(row);
SkASSERT(var.fSlotIndex >= 0);
SkASSERT((size_t)var.fSlotIndex < fTrace->fSlotInfo.size());
const SkSL::SkVMSlotInfo& slotInfo = fTrace->fSlotInfo[var.fSlotIndex];
ImGui::TableNextRow();
if (var.fDirty) {
// Highlight recently-changed variables.
ImGui::TableSetBgColor(ImGuiTableBgTarget_RowBg1,
ImGui::GetColorU32(ImVec4{0.0f, 1.0f, 0.0f, 0.20f}));
}
ImGui::TableSetColumnIndex(0);
ImGui::Text("%s%s", slotInfo.name.c_str(),
fTrace->getSlotComponentSuffix(var.fSlotIndex).c_str());
ImGui::TableSetColumnIndex(1);
ImGui::Text("%s",
fTrace->slotValueToString(var.fSlotIndex, var.fValue).c_str());
}
}
}
ImGui::EndTable();
}
}
void SkSLDebuggerSlide::showRootGUI() {
if (fTrace->fSource.empty()) {
this->showLoadTraceGUI();
return;
}
this->showDebuggerGUI();
}
void SkSLDebuggerSlide::draw(SkCanvas* canvas) {
canvas->clear(SK_ColorWHITE);
ImGui::Begin("Debugger", nullptr, ImGuiWindowFlags_AlwaysVerticalScrollbar);
this->showRootGUI();
ImGui::End();
}
bool SkSLDebuggerSlide::animate(double nanos) {
return true;
}
| [
"skcq-be@skia-corp.google.com.iam.gserviceaccount.com"
] | skcq-be@skia-corp.google.com.iam.gserviceaccount.com |
b9265a42e25e027e9dd25a150982af138acd34c8 | 71d3a6cf8eb1baf41f0b10d1030447539862b327 | /sources/main/processing/unix/input_file.cpp | 71366fce16de8d5f70c97e0696cab4380d32712c | [] | no_license | lunakoly/CashLegacy | 5ecb838ddc0251a2d77f8e6f06c7ba8cc6254982 | ee423ca7e489962b700c341e34452cd3e0886f3d | refs/heads/master | 2023-01-28T10:46:20.668111 | 2020-12-12T18:49:50 | 2020-12-12T18:49:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,299 | cpp | // Copyright (C) 2020 luna_koly
#include "input_file.hpp"
#include <unistd.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "../../unix/helpers.hpp"
std::optional<std::string> UnixInputFile::then(UnixOutputTask * next) {
this->next = next;
next->previous = this;
// 0666 - permissions
int input = open(filename.c_str(), O_RDONLY, 0666);
if (input == -1) {
if (errno == ENOENT) {
// no `Input > ` because the user
// may see this error during their normal
// workflow (it's not an internal error)
return "Couldn't find the specified file > `" + filename + "`";
}
return report_error("Input > Invalid file handle for '" + filename + '`');
}
next->input = input;
return {};
}
std::optional<std::string> UnixInputFile::launch() {
if (next != nullptr) {
if (auto error = next->launch()) {
return error;
}
}
return {};
}
std::optional<std::string> UnixInputFile::wait() {
if (next != nullptr) {
return next->wait();
}
return {};
}
void UnixInputFile::close_all_next() {
if (next != nullptr) {
next->close_all_next();
}
}
void UnixInputFile::close_all_previous() {
// chill
}
| [
"lunyak.kolya@mail.ru"
] | lunyak.kolya@mail.ru |
9508248c7a8a61485be634d34c3b411662c6ed97 | fc6beba5e0e4879051a3b98a512f48d997c8bd6b | /read_lammpstrj/src/read_lammpstrj.cpp | d9bf265f8da2061206dc8021a3ee6dc14f20dd21 | [] | no_license | earunachalam/clearwater | f12bc9536d38e2ba4388b8ae6e11ebd700a0f788 | 97e526a5073805302955ae5932274dff8f618c9a | refs/heads/master | 2020-03-14T12:12:39.172528 | 2018-05-23T22:44:43 | 2018-05-23T22:44:43 | 131,606,538 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,467 | cpp | #include <cmath>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <core/common.h>
#include <core/numeric.h>
namespace nm = numeric;
int main(int argc, char** argv)
{
uint natoms;
if (argc == 2)
{
natoms = std::atoi(argv[1]);
printf("natoms = %d\n",natoms);
}
else
{
printf("Syntax: \n");
return 1;
}
file::infile traj("traj.lammpstrj");
FILE* ofp_thick = fopen("thick.dat", "w");
//std::string str;
uint timestep, curr_natoms;
std::vector<std::string> strs;
std::vector<double> vec;
while (traj.is_open())
{
traj.readline();
traj.readline(timestep);
traj.readline();
traj.readline(curr_natoms);
if (curr_natoms != natoms)
{
printf("Error: atom number mismatch.\n");
return 2;
}
traj.readline();
traj.readline();
traj.readline();
traj.readline();
traj.readline();
std::vector<int> n(natoms), t(natoms);
std::vector<double> x(natoms), y(natoms), z(natoms);
for (uint iatom = 0; iatom < natoms; ++iatom)
{
traj.readline(vec);
n[iatom] = vec[0];
t[iatom] = vec[1];
x[iatom] = vec[2];
y[iatom] = vec[3];
z[iatom] = vec[4];
}
std::vector<double> x1 = use(x, t==1);
std::vector<double> x2 = use(x, t==2);
std::vector<double> y1 = use(y, t==1);
std::vector<double> y2 = use(y, t==2);
std::vector<double> z1 = use(z, t==1);
std::vector<double> z2 = use(z, t==2);
unsigned int i1, i2;
double dx, dy, dz, thick_side, thick_pole;
std::vector<double> x1abs = nm::abs(x1);
std::vector<double> x2abs = nm::abs(x2);
std::vector<double> y1abs = nm::abs(y1);
std::vector<double> y2abs = nm::abs(y2);
std::vector<double> z1abs = nm::abs(z1);
std::vector<double> z2abs = nm::abs(z2);
i1 = nm::argmin(z1abs);
i2 = nm::argmin(z2abs);
dx = x2abs[i2] - x1abs[i1];
dy = y2abs[i2] - y1abs[i1];
//dz = z2abs[i2] - z1abs[i1];
thick_side = std::sqrt(dx*dx + dy*dy);
std::vector<double> x1gt0 = use(x1, x1>0.);
std::vector<double> x2gt0 = use(x2, x2>0.);
std::vector<double> y1gt0 = use(y1, y1>0.);
std::vector<double> y2gt0 = use(y2, y2>0.);
std::vector<double> z1gt0 = use(z1, z1>0.);
std::vector<double> z2gt0 = use(z2, z2>0.);
i1 = nm::argmax(z1gt0);
i2 = nm::argmax(z2gt0);
//dx = x2gt0[i2] - x1gt0[i1];
//dy = y2gt0[i2] - y1gt0[i1];
dz = z2gt0[i2] - z1gt0[i1];
thick_pole = std::sqrt(dz*dz);
fprintf(ofp_thick, "%lf %lf\n", thick_side, thick_pole);
}
fclose(ofp_thick);
return 0;
}
| [
"arunachalam.easun@gmail.com"
] | arunachalam.easun@gmail.com |
160b6ab9f19fdc60582532019e5e49e1f39d369e | 2933025b55b34ccf0242de29c41c71a119bfb819 | /2. Coding_Problems/Type1/sum of series 2.cpp | e9bfe49cdf30456489e88a44ea8c8de435a82315 | [] | no_license | rohitshakya/CodeBucket | 460050cf3cb5ae29eac0b92fb15ddc7a5a9d9d80 | 5c3632d5860873c74cce850eb33bd89fdd77ce0a | refs/heads/master | 2022-01-25T09:55:58.151327 | 2022-01-11T06:55:05 | 2022-01-11T06:55:05 | 253,870,196 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 328 | cpp | //print sum of first n terms of series:1-2+3-4+5......
#include<iostream>
using namespace std;
int main()
{
int sum=0,n;
cout<<"Enter number of terms"<<endl;
cin>>n;
for(int i=1;i<=n;i++)
{
int temp=i;
if(i%2==0)
{
temp=-i;
}
sum=sum+temp;
}
cout<<"sum of series upto first "<<n<<" terms is:"<<sum;
}
| [
"rohit.rkshakya@gmail.com"
] | rohit.rkshakya@gmail.com |
aef3212101f3e39c7a4a93fad384eb5bcbe1f7bb | e06d1362e0146c472912585c097e04680f7b1a50 | /gameobject.h | ce7d0eef931fb4e18df78c2122ea02889305e124 | [] | no_license | duncansykes/RaylibArcadeGame | 1e47c4f45835241c67fb24e7fa3d6fbbc2f32cb1 | 900f165ddfed58d46be98164259a77dbc5d3e5f4 | refs/heads/main | 2023-02-27T13:59:16.708735 | 2021-02-02T05:53:07 | 2021-02-02T05:53:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,686 | h | //
// Created by s200490 on 25/01/2021.
//
#include <string>
#include "raylib.h"
#include "raymath.h"
#ifndef DEFAULT_GAMEOBJECT_H
#define DEFAULT_GAMEOBJECT_H
class gameobject {
public:
gameobject();
virtual ~gameobject();
void Update(float deltaTime);
void Draw();
void SetVelocity(Vector2 vel);
Vector2 GetVelocity();
void SetPosition(Vector2 position);
Vector2 GetPosition();
bool checkColliders(Rectangle other);
void SetTextureFromImage();
void SetObjectShape(char* shapeName, float width, float height);
void SetObjectShape(std::string name, Vector2 size);
Vector2 GetObjectShape();
Color getColor(){return objectColor;}
void SetColour(Color color);
Rectangle GetCollider(){return m_collisionBox;}
void TakeDamage(float amount)
{
lives -= amount;
}
float getHealth()
{
return lives;
}
bool isActive = true;
std::string name;
protected:
Vector2 point1T = {};
Vector2 point2T = {};
Vector2 point3T = {};
Vector2 m_position = {0,0};
Vector2 m_velocity = {0,0};
Rectangle m_collisionBox = {0,0,0,0};
Rectangle m_boxcollision = {0};
Texture2D m_texture;
Vector3 m_textureTransform = {0,0,0};
bool p_isCircle = false;
bool p_isBox;
bool p_isRect;
bool p_isSpikes;
std::string shapename;
bool showDebugColliders = false;
Color objectColor = WHITE;
Vector2 shapeSize = {0,0};
float lives = 50;
bool m_textureLoaded = false;
};
class spike : public gameobject{
public:
spike();
~spike();
Color color;
float damageAmount;
};
#endif //DEFAULT_GAMEOBJECT_H
| [
"sykesduncan32@gmail.com"
] | sykesduncan32@gmail.com |
d455e9f35c14934444056b90defa244edb6bf0c0 | 92e7a96c196e563b70f78db321680d830af80a53 | /Miscellaneous/PlatformCTP/src/PlatformCTPQuot.cpp | c097bc18d5e613c372ea35d0ba4014a9b999eec7 | [] | no_license | alexfordc/zq | 513723341132dd2b01f5ca3debb567b2fd31c033 | a0b05b7416fe68784e072da477e8c869097584e2 | refs/heads/master | 2021-05-25T14:19:37.317957 | 2018-02-24T05:57:23 | 2018-02-24T05:57:23 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 27,339 | cpp | //#include "stdafx.h"
//
#include <windows.h>
#include "PlatformCTPQuot.h"
#include "FileOpr.h"
#include "tools_util.h"
using std::make_pair;
#pragma unmanaged
#if 0
#define LOG_INFO(fmt, ...) ;
#else
#define LOG_INFO(fmt, ...) CFileOpr::getObj().writelocallogDaily("log","PlatformCTPQuot", "[%s][%d]:"fmt, __FILE__, __LINE__, __VA_ARGS__);
#endif
//*************************************************************************
// CPlatformCTPQuot的实现
//*************************************************************************
CPlatformCTPQuot::CPlatformCTPQuot(const Stru_CTPConnectionParam& ConnParam,bool bPushCache,bool bUseComb,bool bCalcuCombQuotOnLegQuot)
: CPlatformCTP(ConnParam,bPushCache,bUseComb,bCalcuCombQuotOnLegQuot),
m_pQuotApi(NULL)
{
}
CPlatformCTPQuot::~CPlatformCTPQuot()
{
CeasymutexGuard guard(m_mutex);
if(m_pQuotApi)
Logout();
}
bool CPlatformCTPQuot::Login(const CThostFtdcMdSpi* pSpi)
{
CeasymutexGuard guard(m_mutex);
if(m_pQuotApi)
{
LOG_INFO("Login()成功:已经有有效m_pQuotApi(%x)",m_pQuotApi);
return true;
}
if(m_ConnParam.BrokerID.empty()||m_ConnParam.UserID.empty()||m_ConnParam.UserPW.empty())
{
LOG_INFO("Login()失败:登录参数(BrokerID、UserID、UserPW)为空");
return false;
}
SetConnStatus(CTPCONNSTATUS_Connecting,true);
//创建Api对象
m_pQuotApi = CThostFtdcMdApi::CreateFtdcMdApi();
//注册回调
m_pQuotApi->RegisterSpi(static_cast<CThostFtdcMdSpi*>(pSpi?const_cast<CThostFtdcMdSpi*>(pSpi):this));
//注册前置机地址
string addrstr;
for(vector<string>::iterator it=m_ConnParam.FrontAddrs.begin();it!=m_ConnParam.FrontAddrs.end();++it)
{
addrstr=MakeConnectStr(*it,m_ConnParam.ProxyConnectStr);
m_pQuotApi->RegisterFront(const_cast<char*>(addrstr.c_str()));
}
//初始化并启动前置机接口
m_pQuotApi->Init();
LOG_INFO("Login()成功:m_pQuotApi(%x)",m_pQuotApi);
return true;
}
void CPlatformCTPQuot::Logout(void)
{
m_mutex.lock();
if(!m_pQuotApi)
{
LOG_INFO("Logout()成功:m_pQuotApi为NULL");
m_mutex.unlock();
return;
}
SetConnStatus(CTPCONNSTATUS_Disconnecting,true);
m_mutex.unlock();
//注意,Release() 会将剩余未处理的行情让回调处理,如果这个地方加锁的话,行情回调的锁会产生死锁。
m_pQuotApi->RegisterSpi(NULL);
m_pQuotApi->Release();
m_pQuotApi=NULL;
m_mutex.lock();
m_pQuotApi=NULL;
SetConnStatus(CTPCONNSTATUS_Disconnected,true);
LOG_INFO("Logout()成功");
m_mutex.unlock();
}
int CPlatformCTPQuot::SubscribeMarketData(const string& InstrumentID)
{
CeasymutexGuard guard(m_mutex);
int ret = -999;
if(InstrumentID.empty()) return ret;
map<string,int>::iterator it=m_SubscribedInstrumentID.find(InstrumentID);
if(it==m_SubscribedInstrumentID.end())
{
m_SubscribedInstrumentID.insert(make_pair(InstrumentID,1));
string Leg1InstrumentID,Leg2InstrumentID;
if(IsCombInstrument(InstrumentID,Leg1InstrumentID,Leg2InstrumentID))
{
m_LegInstrument2CombSubscribed.insert(make_pair(Leg1InstrumentID,InstrumentID));
m_LegInstrument2CombSubscribed.insert(make_pair(Leg2InstrumentID,InstrumentID));
}
it=m_SubscribedInstrumentID.find(InstrumentID);
}
else it->second++;
if(it!=m_SubscribedInstrumentID.end())
{
LOG_INFO("SubscribeMarketData(将合约添加到行情订阅列表):InstrumentID=[%s],合约订阅计数=[%d]",InstrumentID.c_str(),it->second);
if(it->second==1&&m_pQuotApi && GetConnStatus()==CTPCONNSTATUS_Connected)
{
char *pInstrumentID = const_cast<char*>(InstrumentID.c_str());
ret=m_pQuotApi->SubscribeMarketData(&pInstrumentID,1);
LOG_INFO("SubscribeMarketData(定制指定合约行情):ret=[%d],InstrumentID=[%s]",ret, pInstrumentID);
}
}
return 0;
}
int CPlatformCTPQuot::UnSubscribeMarketData(const string& InstrumentID)
{
CeasymutexGuard guard(m_mutex);
int ret = -999;
if(InstrumentID.empty()) return ret;
map<string,int>::iterator it=m_SubscribedInstrumentID.find(InstrumentID);
if(it!=m_SubscribedInstrumentID.end())
{
it->second--;
LOG_INFO("UnSubscribeMarketData(从行情订阅列表中删除合约):InstrumentID=[%s],合约订阅计数=[%d]",InstrumentID.c_str(),it->second);
if(it->second==0)
{
if(m_pQuotApi && GetConnStatus()==CTPCONNSTATUS_Connected)
{
char *pInstrumentID = const_cast<char*>(it->first.c_str());
ret=m_pQuotApi->UnSubscribeMarketData(&pInstrumentID,1);
LOG_INFO("UnSubscribeMarketData(取消行情订阅):ret=[%d],InstrumentID=[%s]",ret, pInstrumentID);
}
if(IsCombInstrument2(it->first))
{
for(multimap<string,string>::iterator it2=m_LegInstrument2CombSubscribed.begin();it2!=m_LegInstrument2CombSubscribed.end();)
{
if(it2->second==it->first) it2=m_LegInstrument2CombSubscribed.erase(it2);
else it2++;
}
}
m_SubscribedInstrumentID.erase(it);
}
}
return ret;
}
int CPlatformCTPQuot::UnSubscribeAllMarketData()
{
CeasymutexGuard guard(m_mutex);
LOG_INFO("UnSubscribeAllMarketData(删除全部行情订阅列表)");
int ret = -999;
if(m_pQuotApi && GetConnStatus()==CTPCONNSTATUS_Connected)
{
for(map<string,int>::iterator it=m_SubscribedInstrumentID.begin();it!=m_SubscribedInstrumentID.end();it++)
{
char *pInstrumentID = const_cast<char*>(it->first.c_str());
ret=m_pQuotApi->UnSubscribeMarketData(&pInstrumentID,1);
LOG_INFO("UnSubscribeAllMarketData(取消行情订阅):ret=[%d],InstrumentID=[%s]",ret, pInstrumentID);
}
}
m_SubscribedInstrumentID.clear();
m_LegInstrument2CombSubscribed.clear();
return ret;
}
vector<string> CPlatformCTPQuot::GetSubscribedInstrumentIDs(void) const
{
CeasymutexGuard guard(m_mutex);
vector<string> rlt;
for(map<string,int>::const_iterator it=m_SubscribedInstrumentID.begin();it!=m_SubscribedInstrumentID.end();it++)
rlt.push_back(it->first);
return rlt;
}
void CPlatformCTPQuot::SetInstrumentInfo(const map<string,CThostFtdcInstrumentField>& InstrumentID2Info)
{
CeasymutexGuard guard(m_mutex);
m_InstrumentID2Info=InstrumentID2Info;
}
///****************************************************************************
/// 下面是ctp回调函数
///****************************************************************************
///当客户端与交易后台建立起通信连接时(还未登录前),该方法被调用。
void CPlatformCTPQuot::OnFrontConnected()
{
CeasymutexGuard guard(m_mutex);
if(m_bPushCache) m_Cache.SaveDataTo2(CmdID_Quot_FrontConnected, NULL, 0);
SetConnStatus(CTPCONNSTATUS_Logining,true);
CThostFtdcReqUserLoginField req;
memset(&req, 0, sizeof(req));
strncpy(req.BrokerID, m_ConnParam.BrokerID.c_str(),sizeof(req.BrokerID)-1);
strncpy(req.UserID, m_ConnParam.UserID.c_str(),sizeof(req.UserID)-1);
strncpy(req.Password, m_ConnParam.UserPW.c_str(),sizeof(req.Password)-1);
strncpy(req.OneTimePassword,m_ConnParam.OneTimePassword.c_str(),sizeof(req.OneTimePassword)-1);
int RequestID=m_RequestID++;
int iRlt = m_pQuotApi->ReqUserLogin(&req, RequestID);
LOG_INFO("CPlatformCTPQuot::OnFrontConnected(与交易所成功建立TCP连接):\n"
"\t\t\t --->ReqUserLogin(用户登录请求):ret=[%d],iRequestID=[%d],\n"
"\t\t\t BrokerID=[%s],\t UserID=[%s],",
iRlt, RequestID,
req.BrokerID, req.UserID);
}
///当客户端与交易后台通信连接断开时,该方法被调用。当发生这个情况后,API会自动重新连接,客户端可不做处理。
///@param nReason 错误原因
/// 0x1001 网络读失败
/// 0x1002 网络写失败
/// 0x2001 接收心跳超时
/// 0x2002 发送心跳失败
/// 0x2003 收到错误报文
void CPlatformCTPQuot::OnFrontDisconnected(int nReason)
{
CeasymutexGuard guard(m_mutex);
SetConnStatus(CTPCONNSTATUS_Disconnected,true);
if(m_bPushCache) m_Cache.SaveDataTo2(CmdID_Quot_FrontDisconnected,NULL,0,NULL,0,nReason);
LOG_INFO("CPlatformCTPQuot::OnFrontDisconnected(与交易所失去TCP连接):nReason=[%#x]",nReason);
}
///心跳超时警告。当长时间未收到报文时,该方法被调用。
///@param nTimeLapse 距离上次接收报文的时间
void CPlatformCTPQuot::OnHeartBeatWarning(int nTimeLapse)
{
LOG_INFO("CPlatformCTPQuot::OnHeartBeatWarning:nTimeLapse=[%x]",nTimeLapse);
}
///登录请求响应
void CPlatformCTPQuot::OnRspUserLogin(CThostFtdcRspUserLoginField *pRspUserLogin, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
CeasymutexGuard guard(m_mutex);
if(pRspUserLogin)
{
DWORD tickcount=GetTickCount();
if(m_bPushCache) m_Cache.SaveDataTo2(CmdID_Quot_RspUserLogin, pRspUserLogin,sizeof(*pRspUserLogin),pRspInfo,pRspInfo?sizeof(*pRspInfo):0,(unsigned int)nRequestID,(unsigned int)bIsLast,tickcount);
LOG_INFO("CPlatformCTPQuot::OnRspUserLogin(登录请求响应) : ErrorID=[%d],ErrorMsg=[%s],nRequestID=[%d],bIsLast=[%d]\n"
"\t\t\t TradingDay=[%s],\t LoginTime=[%s],\t BrokerID=[%s],\t UserID=[%s],\t SystemName=[%s]\n"
"\t\t\t FrontID=[%d],\t SessionID=[%#x],\t MaxOrderRef[%s],\t SHFETime=[%s],\t DCETime=[%s],\n"
"\t\t\t CZCETime[%s],\t FFEXTime=[%s],\t CurTickCount=[%ul]",
pRspInfo?pRspInfo->ErrorID:-1, pRspInfo?pRspInfo->ErrorMsg:"",nRequestID,bIsLast,
pRspUserLogin->TradingDay,pRspUserLogin->LoginTime,pRspUserLogin->BrokerID , pRspUserLogin->UserID,pRspUserLogin->SystemName,
pRspUserLogin->FrontID , pRspUserLogin->SessionID ,pRspUserLogin->MaxOrderRef, pRspUserLogin->SHFETime , pRspUserLogin->DCETime,
pRspUserLogin->CZCETime , pRspUserLogin->FFEXTime,tickcount);
}
else
{
LOG_INFO("CPlatformCTPQuot::OnRspUserLogin(登录请求响应),pRspUserLogin is NULL");
}
if(pRspUserLogin&&(!pRspInfo||pRspInfo->ErrorID==0))
{
SetConnStatus(CTPCONNSTATUS_Connected,true);
//todo 根据合约定制行情
for(map<string,int>::const_iterator it=m_SubscribedInstrumentID.begin();it!=m_SubscribedInstrumentID.end();it++)
{
char *pInstrumentID = const_cast<char*>(it->first.c_str());
m_pQuotApi->SubscribeMarketData(&pInstrumentID,1);
}
}
else
{
SetConnStatus(CTPCONNSTATUS_LoginFailure,true);
}
}
///错误应答
void CPlatformCTPQuot::OnRspError(CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
if(pRspInfo)
LOG_INFO("CPlatformCTPQuot::OnRspError : ErrCode=[%d] ErrMsg=[%s],RequestID=[%d],IsLast=[%d]",
pRspInfo->ErrorID,pRspInfo->ErrorMsg,nRequestID,(int)bIsLast);
}
///订阅行情应答
void CPlatformCTPQuot::OnRspSubMarketData(CThostFtdcSpecificInstrumentField *pSpecificInstrument, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
if(pSpecificInstrument&&(!pRspInfo||pRspInfo->ErrorID==0))
{
LOG_INFO("CPlatformCTPQuot::OnRspSubMarketData(订阅行情应答,Unimplemented) : pRspInfo=[%x],ErrorID=[%d],ErrorMsg=[%s],InstrumentID=[%s],nRequestID=[%d],bIsLast=[%d]",
pRspInfo,pRspInfo?pRspInfo->ErrorID:0,pRspInfo?pRspInfo->ErrorMsg:"",
pSpecificInstrument->InstrumentID,nRequestID,(int)bIsLast);
}
else
{
LOG_INFO("CPlatformCTPQuot::OnRspSubMarketData(订阅行情应答,Unimplemented),pSpecificInstrument is NULL");
}
}
///取消订阅行情应答
void CPlatformCTPQuot::OnRspUnSubMarketData(CThostFtdcSpecificInstrumentField *pSpecificInstrument, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast)
{
if(pSpecificInstrument&&(!pRspInfo||pRspInfo->ErrorID==0))
{
LOG_INFO("CPlatformCTPQuot::OnRspUnSubMarketData(取消订阅行情应答,Unimplemented) : pRspInfo=[%x],ErrorID=[%d],ErrorMsg=[%s],InstrumentID=[%s],nRequestID=[%d],bIsLast=[%d]",
pRspInfo,pRspInfo?pRspInfo->ErrorID:0,pRspInfo?pRspInfo->ErrorMsg:"",
pSpecificInstrument->InstrumentID,nRequestID,(int)bIsLast);
}
else
{
LOG_INFO("CPlatformCTPQuot::OnRspUnSubMarketData(取消订阅行情应答,Unimplemented),pSpecificInstrument is NULL");
}
}
///深度行情通知
void CPlatformCTPQuot::OnRtnDepthMarketData(CThostFtdcDepthMarketDataField *pDepthMarketData)
{
CeasymutexGuard guard(m_mutex);
if(!pDepthMarketData)
return;
static bool blogID=false;
if(blogID)
{
LOG_INFO("CPlatformCTPQuot::OnRtnDepthMarketData:InstrumentID=%s,LastPrice=%g,UpdateTime=%s",
pDepthMarketData->InstrumentID,pDepthMarketData->LastPrice,pDepthMarketData->UpdateTime);
}
//如果ExchangeID为空,从合约信息中取出ExchangeID填进去
if(pDepthMarketData->ExchangeID[0]==0&&pDepthMarketData->InstrumentID[0]!=0)
{
map<string,CThostFtdcInstrumentField>::const_iterator it=m_InstrumentID2Info.find(pDepthMarketData->InstrumentID);
if(it!=m_InstrumentID2Info.end())
{
memset(pDepthMarketData->ExchangeID,0,sizeof(pDepthMarketData->ExchangeID));
strcpy_s(pDepthMarketData->ExchangeID,sizeof(pDepthMarketData->ExchangeID)-1,it->second.ExchangeID);
}
}
CThostFtdcDepthMarketDataField MD=*pDepthMarketData;
if(m_bUseComb&&
IsCombInstrument2(MD.InstrumentID))
{
if(MD.PreSettlementPrice==util::GetDoubleInvalidValue()||
MD.LastPrice==util::GetDoubleInvalidValue()||
MD.LowerLimitPrice==0||
MD.UpperLimitPrice==0)
{
if(m_bCalcuCombQuotOnLegQuot)
{
//自行计算昨结算价、最新价、涨跌停板
string Leg1InstrumentID,Leg2InstrumentID;
CThostFtdcDepthMarketDataField Leg1Quot,Leg2Quot;
if(IsCombInstrument(MD.InstrumentID,Leg1InstrumentID,Leg2InstrumentID)&&
GetQuotInfo_Internal(Leg1InstrumentID,Leg1Quot)&&
GetQuotInfo_Internal(Leg2InstrumentID,Leg2Quot))
{
if(Leg1Quot.LastPrice!=util::GetDoubleInvalidValue()&&Leg2Quot.LastPrice!=util::GetDoubleInvalidValue())
{
MD.LastPrice=Leg1Quot.LastPrice-Leg2Quot.LastPrice;
}
if(Leg1Quot.AskPrice1!=util::GetDoubleInvalidValue()&&Leg2Quot.AskPrice1!=util::GetDoubleInvalidValue())
{
MD.AskPrice1=Leg1Quot.AskPrice1-Leg2Quot.BidPrice1;
}
if(Leg1Quot.AskVolume1!=util::GetIntInvalidValue()&&Leg2Quot.BidVolume1!=util::GetIntInvalidValue())
{
MD.AskVolume1 = Leg1Quot.AskVolume1 <= Leg2Quot.BidVolume1 ? Leg1Quot.AskVolume1 : Leg2Quot.BidVolume1;
}
if(Leg1Quot.BidPrice1!=util::GetDoubleInvalidValue()&&Leg2Quot.BidPrice1!=util::GetDoubleInvalidValue())
{
MD.BidPrice1=Leg1Quot.BidPrice1-Leg2Quot.AskPrice1;
}
if(Leg1Quot.BidVolume1!=util::GetIntInvalidValue()&&Leg2Quot.AskVolume1!=util::GetIntInvalidValue())
{
MD.BidVolume1 = Leg1Quot.BidVolume1 <= Leg2Quot.AskVolume1 ? Leg1Quot.BidVolume1 : Leg2Quot.AskVolume1;
}
if(MD.LowerLimitPrice==util::GetDoubleInvalidValue()&&Leg1Quot.LowerLimitPrice!=util::GetDoubleInvalidValue()&&Leg2Quot.UpperLimitPrice!=util::GetDoubleInvalidValue())
{
MD.LowerLimitPrice=Leg1Quot.LowerLimitPrice-Leg2Quot.UpperLimitPrice;
}
if(MD.UpperLimitPrice==util::GetDoubleInvalidValue()&&Leg1Quot.UpperLimitPrice!=util::GetDoubleInvalidValue()&&Leg2Quot.LowerLimitPrice!=util::GetDoubleInvalidValue())
{
MD.UpperLimitPrice=Leg1Quot.UpperLimitPrice-Leg2Quot.LowerLimitPrice;
}
if(MD.PreSettlementPrice==util::GetDoubleInvalidValue()&&
Leg1Quot.PreSettlementPrice!=util::GetDoubleInvalidValue()&&
Leg2Quot.PreSettlementPrice!=util::GetDoubleInvalidValue())
{
MD.PreSettlementPrice=Leg1Quot.PreSettlementPrice-Leg2Quot.PreSettlementPrice;
}
//现量,为两腿现量的最小值
if(Leg1Quot.Volume!=util::GetIntInvalidValue()&&Leg2Quot.Volume!=util::GetIntInvalidValue())
{
MD.Volume = Leg1Quot.Volume <= Leg2Quot.Volume ? Leg1Quot.Volume : Leg2Quot.Volume;
}
}
}
}
if(MD.HighestPrice==0)
MD.HighestPrice=util::GetDoubleInvalidValue();
if(MD.LowestPrice==0)
MD.LowestPrice=util::GetDoubleInvalidValue();
if(MD.Volume==0)
MD.Volume=util::GetIntInvalidValue();
if(MD.OpenPrice==0)
MD.OpenPrice=util::GetDoubleInvalidValue();
if(MD.ClosePrice==0)
MD.ClosePrice=util::GetDoubleInvalidValue();
if(MD.PreClosePrice==0)
MD.PreClosePrice=util::GetDoubleInvalidValue();
}
if(m_bPushCache)
m_Cache.SaveDataTo2(CmdID_Quot_RtnDepthMarketData, &MD, sizeof(MD), NULL, 0, GetTickCount());
PostPkg_Internal(CmdID_Quot_RtnDepthMarketData,&MD,sizeof(MD));
SetQuotInfo_Internal(MD);
if(m_bUseComb&&m_bCalcuCombQuotOnLegQuot)
{
string ThisInstrumentID(pDepthMarketData->InstrumentID);
vector<string> CombInstrumentIDs;
string Leg1InstrumentID,Leg2InstrumentID;
CThostFtdcDepthMarketDataField Leg1Quot,Leg2Quot,CombQuot;
//对于非组合单,并且是某些组合单的单腿的情况进行处理
if(!IsCombInstrument2(ThisInstrumentID)&&
GetCombInstrumentIDs_IncludeLeg_Subscribed_Internal(ThisInstrumentID,CombInstrumentIDs))
{
//此时CombInstrumentIDs存放着和单腿有关的组合合约
//针对每一个组合合约,生成行情
for(int i=0;i<(int)CombInstrumentIDs.size();i++)
{
if(IsCombInstrument(CombInstrumentIDs[i],Leg1InstrumentID,Leg2InstrumentID))
{
//获取Leg1Quot和Leg2Quot
if(Leg1InstrumentID==ThisInstrumentID)
{
Leg1Quot=MD;
if(!GetQuotInfo_Internal(Leg2InstrumentID, Leg2Quot))
continue;
}
else if(Leg2InstrumentID==ThisInstrumentID)
{
if(!GetQuotInfo_Internal(Leg1InstrumentID, Leg1Quot))
continue;
Leg2Quot=MD;
}
else continue;
//获取CombQuot
if(!GetQuotInfo_Internal(CombInstrumentIDs[i], CombQuot))
{
memset(&CombQuot,0,sizeof(CombQuot));
strncpy(CombQuot.TradingDay,MD.TradingDay,sizeof(CombQuot.TradingDay)-1);
strncpy(CombQuot.InstrumentID,CombInstrumentIDs[i].c_str(),sizeof(CombQuot.InstrumentID)-1);
strncpy(CombQuot.ExchangeID,MD.ExchangeID,sizeof(CombQuot.ExchangeID)-1);
strncpy(CombQuot.ExchangeInstID,CombInstrumentIDs[i].c_str(),sizeof(CombQuot.ExchangeInstID)-1);
strncpy(CombQuot.UpdateTime,MD.UpdateTime,sizeof(CombQuot.UpdateTime)-1);
CombQuot.UpdateMillisec=MD.UpdateMillisec;
CombQuot.PreSettlementPrice=util::GetDoubleInvalidValue();
}
//下面用Leg1Quot和Leg2Quot来生成组合单的行情
//计算最新价、买卖价、买卖量、涨跌停价、行情更新时间
bool bUpdate=false;
if(Leg1Quot.LastPrice!=util::GetDoubleInvalidValue()&&Leg2Quot.LastPrice!=util::GetDoubleInvalidValue())
{
CombQuot.LastPrice=Leg1Quot.LastPrice-Leg2Quot.LastPrice;
bUpdate=true;
}
if(Leg1Quot.AskPrice1!=util::GetDoubleInvalidValue()&&Leg2Quot.AskPrice1!=util::GetDoubleInvalidValue())
{
CombQuot.AskPrice1=Leg1Quot.AskPrice1-Leg2Quot.BidPrice1;
bUpdate=true;
}
if(Leg1Quot.AskVolume1!=util::GetIntInvalidValue()&&Leg2Quot.BidVolume1!=util::GetIntInvalidValue())
{
CombQuot.AskVolume1 = Leg1Quot.AskVolume1 <= Leg2Quot.BidVolume1 ? Leg1Quot.AskVolume1 : Leg2Quot.BidVolume1;
bUpdate=true;
}
if(Leg1Quot.BidPrice1!=util::GetDoubleInvalidValue()&&Leg2Quot.BidPrice1!=util::GetDoubleInvalidValue())
{
CombQuot.BidPrice1=Leg1Quot.BidPrice1-Leg2Quot.AskPrice1;
bUpdate=true;
}
if(Leg1Quot.BidVolume1!=util::GetIntInvalidValue()&&Leg2Quot.AskVolume1!=util::GetIntInvalidValue())
{
CombQuot.BidVolume1 = Leg1Quot.BidVolume1 <= Leg2Quot.AskVolume1 ? Leg1Quot.BidVolume1 : Leg2Quot.AskVolume1;
bUpdate=true;
}
if(CombQuot.LowerLimitPrice==util::GetDoubleInvalidValue()&&Leg1Quot.LowerLimitPrice!=util::GetDoubleInvalidValue()&&Leg2Quot.UpperLimitPrice!=util::GetDoubleInvalidValue())
{
CombQuot.LowerLimitPrice=Leg1Quot.LowerLimitPrice-Leg2Quot.UpperLimitPrice;
bUpdate=true;
}
if(CombQuot.UpperLimitPrice==util::GetDoubleInvalidValue()&&Leg1Quot.UpperLimitPrice!=util::GetDoubleInvalidValue()&&Leg2Quot.LowerLimitPrice!=util::GetDoubleInvalidValue())
{
CombQuot.UpperLimitPrice=Leg1Quot.UpperLimitPrice-Leg2Quot.LowerLimitPrice;
bUpdate=true;
}
if(CombQuot.PreSettlementPrice==util::GetDoubleInvalidValue()&&
Leg1Quot.PreSettlementPrice!=util::GetDoubleInvalidValue()&&
Leg2Quot.PreSettlementPrice!=util::GetDoubleInvalidValue())
{
CombQuot.PreSettlementPrice=Leg1Quot.PreSettlementPrice-Leg2Quot.PreSettlementPrice;
bUpdate=true;
}
//现量,为两腿现量的最小值
if(Leg1Quot.Volume!=util::GetIntInvalidValue()&&Leg2Quot.Volume!=util::GetIntInvalidValue())
{
CombQuot.Volume = Leg1Quot.Volume <= Leg2Quot.Volume ? Leg1Quot.Volume : Leg2Quot.Volume;
bUpdate=true;
}
if(bUpdate)
{
//更新了组合单的行情
int cmprlt=memcmp(MD.UpdateTime,CombQuot.UpdateTime,sizeof(CombQuot.UpdateTime));
if(cmprlt>=0)
{
if(cmprlt>0)
strncpy(CombQuot.UpdateTime,MD.UpdateTime,sizeof(CombQuot.UpdateTime)-1);
if(cmprlt==0&&MD.UpdateMillisec>CombQuot.UpdateMillisec)
CombQuot.UpdateMillisec=MD.UpdateMillisec;
}
SetQuotInfo_Internal(CombQuot);
if(m_bPushCache)
m_Cache.SaveDataTo2(CmdID_Quot_RtnDepthMarketData, &CombQuot, sizeof(CombQuot), NULL, 0, GetTickCount());
PostPkg_Internal(CmdID_Quot_RtnDepthMarketData,&CombQuot,sizeof(CombQuot));
}
}
}
}
}
}
///获取包含此单腿合约的组合合约列表
bool CPlatformCTPQuot::GetCombInstrumentIDs_IncludeLeg_Subscribed_Internal(const string& LegInstrument,vector<string>& vecCombInstruments)
{
bool ret=false;
multimap<string,string>::iterator itlower=m_LegInstrument2CombSubscribed.lower_bound(LegInstrument);
multimap<string,string>::iterator itupper=m_LegInstrument2CombSubscribed.upper_bound(LegInstrument);
vecCombInstruments.clear();
while(itlower!=itupper)
{
vecCombInstruments.push_back(itlower->second);
itlower++;
}
return vecCombInstruments.size()==0?false:true;
}
//设置指定合约行情,设置的行情更新,则返回true;否则返回false(比原来的行情更老)
//仅用于OnRtnDepthMarketData()中
bool CPlatformCTPQuot::SetQuotInfo_Internal(const CThostFtdcDepthMarketDataField& inData)
{
bool brlt=true;
map<string,CThostFtdcDepthMarketDataField>::iterator it = m_lastQuot.find(string(inData.InstrumentID));
if(it==m_lastQuot.end())
{
m_lastQuot[string(inData.InstrumentID)] = inData;
}
else
{
CThostFtdcDepthMarketDataField& OldBusiness= it->second;
//比较行情的时间,丢掉老行情
int cmprlt=memcmp(inData.UpdateTime, OldBusiness.UpdateTime, sizeof(OldBusiness.UpdateTime));
if (cmprlt>0||
cmprlt==0&&inData.UpdateMillisec>=OldBusiness.UpdateMillisec)
{
m_lastQuot[string(inData.InstrumentID)] = inData;
}
else
{
brlt=false;
}
}
return brlt;
}
//获取指定合约行情。仅用于OnRtnDepthMarketData()中
bool CPlatformCTPQuot::GetQuotInfo_Internal(const string& InstrumentID, CThostFtdcDepthMarketDataField& outData)
{
bool brlt=false;
map<string,CThostFtdcDepthMarketDataField>::iterator it = m_lastQuot.find(InstrumentID);
if(it==m_lastQuot.end())
{
memset(&outData,0,sizeof(outData));
}
else
{
outData = it->second;
brlt=true;
}
return brlt;
}
//判断一个合约是否是组合单合约。如果是,返回单腿合约名称。
//目前仅能判断大商和郑商的组合合约
//判断依据是前有空格后有&,如SP c1305&c1309
bool CPlatformCTPQuot::IsCombInstrument(const string& strInstrument,string& LegInstrument1,string& LegInstrument2)
{
int len=strInstrument.length();
int pos1=strInstrument.find(" ");
if(pos1==-1) return false;
int pos2=strInstrument.find("&",pos1);
if(pos2==-1) return false;
LegInstrument1=strInstrument.substr(pos1+1,pos2-pos1-1);
LegInstrument2=strInstrument.substr(pos2+1,len-pos2-1);
return true;
}
//判断一个合约是否是组合单合约。
//目前仅能判断大商和郑商的组合合约
//判断依据是前有空格后有&,如SP c1305&c1309
bool CPlatformCTPQuot::IsCombInstrument2(const string& strInstrument)
{
int len=strInstrument.length();
int pos1=strInstrument.find(" ");
if(pos1==-1) return false;
int pos2=strInstrument.find("&",pos1);
if(pos2==-1) return false;
return true;
}
| [
"w.z.y2006@163.com"
] | w.z.y2006@163.com |
ab13c46a6771d239b37cfc51a8a5b64dde4bfd5e | eaba86a6412fb7c98781164c9754018a379a8214 | /config.cpp | 4feacc085e2881bfc6f8d9bc43b8e878001e6606 | [] | no_license | Shredorama/honestdayswork | ac18f9986ae8b3905386824582af4ea907df0cc6 | ac70a66330c5efdef3c2b4c97a8930dace1559ba | refs/heads/master | 2020-12-27T07:23:30.509614 | 2020-02-14T03:47:53 | 2020-02-14T03:47:53 | 237,812,980 | 0 | 0 | null | 2020-02-02T18:03:33 | 2020-02-02T18:03:33 | null | UTF-8 | C++ | false | false | 321,983 | cpp | enum
{
destructengine = 2,
destructdefault = 6,
destructwreck = 7,
destructtree = 3,
destructtent = 4,
destructno = 0,
destructman = 5,
destructbuilding = 1
};
class CfgMods
{
class ShredAnimals
{
dir="ShredAnimals";
picture="";
action="";
hideName=1;
hidePicture=1;
name="ShredAnimals";
credits="";
author="Shredorama";
authorID="0";
version="1.0";
extra=0;
type="mod";
dependencies[]=
{
"Game",
"World",
"Mission"
};
class defs
{
class worldScriptModule
{
value="";
files[]=
{
"ShredAnimals\scripts\4_world"
};
};
};
};
};
class CfgPatches
{
<<<<<<< HEAD
class DZ_Animals_Shred_Tiger
{
units[]=
{
"Animal_Tiger","Animal_Tigris"
};
weapons[]={};
requiredVersion=0.1;
requiredAddons[]=
{
"DZ_AI",
"DZ_AI_Bliss",
"DZ_Animals",
"DZ_Animals_Bliss",
"DZ_Data_Bliss",
"DZ_Data",
"DZ_Surfaces",
"DZ_Surfaces_Bliss",
"DZ_Weapons_Melee"
};
};
=======
class DZ_Animals_GS_Tiger
{
units[]=
{
"Animal_GS_Tiger"
};
weapons[]={};
requiredVersion=0.1;
requiredAddons[]=
{
"DZ",
"DZ_AI",
"DZ_AI_Bliss",
"DZ_animals",
"DZ_animals_bliss",
"DZ_data_bliss",
"DZ_data",
"DZ_surfaces",
"DZ_surfaces_bliss",
'DZ_gear_consumables',
"DZ_weapons_melee"
};
};
class DZ_Animals_Shred_Tiger
{
units[]=
{
"Animal_Shred_Tiger"
};
weapons[]={};
requiredVersion=0.1;
requiredAddons[]=
{
"DZ",
"DZ_AI",
"DZ_AI_Bliss",
"DZ_animals",
"DZ_animals_bliss",
"DZ_data_bliss",
"DZ_data",
"DZ_surfaces",
"DZ_surfaces_bliss",
'DZ_gear_consumables',
"DZ_weapons_melee"
};
};
};
class CfgModels
{
class Default
{
sections[] = {};
sectionsInherit="";
skeletonName = "";
};
class tigerx2:Default
{
skeletonName="CanisLupusAISkeleton";
};
class TestPelt:Default
{
};
class TigerPelt:Default
{
};
>>>>>>> upstream/master
};
class AIParams
{
maxNoiseRange=400;
rainToNoiseMultiplier=10;
seaToNoiseMultiplier=15;
noiseDampeningMultiplier=0.69999999;
noiseCollisionDampeningMultiplier=0.40000001;
groupLODDistance=1000;
class AgentTeams
{
TeamList[]=
{
"Player",
"BigGame",
"Zombies",
"Predator",
"GSTiger",
"AmbientLife"
};
class Player
{
friends[]=
{
"Player"
};
};
class Predator
{
friends[]=
{
"Predator",
"Zombies",
"AmbientLife"
};
};
class BigGame
{
friends[]=
{
"BigGame",
"AmbientLife"
};
};
class Zombies
{
friends[]=
{
"Zombies",
"Predator",
"AmbientLife"
};
};
class AmbientLife
{
friends[]=
{
"AmbientLife"
};
};
class GSTiger
{
friends[]=
{
"GSTiger"
};
};
};
};
class PathGraphFilters
{
class TigerOnHunt
{
class Flags
{
include[]=
{
"walk",
"door",
"inside",
"jumpover",
"swim",
"swimsea",
"climb",
"crawl",
"crouch"
};
exclude[]=
{
"disabled"
};
};
class Costs
{
jump0=0;
jump1=0;
jump2=1;
jump3=1;
jump4=0;
water=1;
};
};
class TigerOnOuterCircle
{
class Flags
{
include[]=
{
"walk",
"jumpover",
"swim",
"swimsea",
"climb",
"crawl",
"crouch"
};
exclude[]=
{
"disabled"
};
};
class Costs
{
jump0=0;
jump1=0;
jump2=1;
jump3=1;
jump4=0;
water=1;
};
};
};
class GroupBehaviourTemplates
{
class GSTigerGroupBeh
{
type="Predators";
alertDistributionSpeed=200;
catchUpTestDelay=1;
catchUpStartRadius=10;
catchUpTargetRadius=4;
groupRadius=15;
spawnMinDistanceBetweenAgents=1;
agentPathLength=100;
atNeedMinDuration=60;
atNeedMaxDuration=120;
singleAgentSafeKeeperDelayMin=100;
singleAgentSafeKeeperDelayMax=100;
preyAttractionRange=350;
innerOuterCircleRatio=0.60000002;
endAttractionRange=60;
attractionCooldown=60;
endAttractionTime=300;
targetEscapingSpeed=400;
killAddFear=0;
eatingTime=600;
huntingCooldown=60;
maxHuntingTime=60;
safeKeeperIntervalMin=20;
safeKeeperIntervalMax=40;
siegeAttackCountdownMin=1;
siegeAttackCountdownMax=12;
huntAttackCountdownMin=1;
huntAttackCountdownMax=10;
changeTargetCooldown=5;
changeTargetAlertRatio=1.3;
changeTargetEffectRadius=6;
subgroupSpacingMax=500;
class LifeCycleDayTime
{
class Activity1
{
endTimeMin=8;
endTimeMax=9;
zoneType="Graze";
};
class Activity2
{
endTimeMin=10;
endTimeMax=11;
zoneType="Graze";
};
class Activity3
{
endTimeMin=13;
endTimeMax=14;
zoneType="Graze";
};
<<<<<<< Updated upstream
};
class Costs
{
jump0=0;
jump1=0;
jump2=0.5;
jump3=0;
jump4=0;
water=1;
building=5;
};
};
class WolfOnHunt
{
class Flags
{
include[]=
=======
class Activity4
>>>>>>> Stashed changes
{
endTimeMin=17;
endTimeMax=18;
zoneType="Graze";
};
class Activity5
{
endTimeMin=20;
endTimeMax=21;
zoneType="Graze";
};
};
};
};
class CfgAIBehaviours
{
class Predators_Tiger
{
HeadLookBoneName="pin_lookat";
teamName="GSTiger";
defaultGroupTemplateName="GSTigerGroupBeh";
class PathAgent
{
radius=0.30000001;
height=1;
lengthRadius=0.69999999;
};
class BehaviourHLPredator
{
<<<<<<< Updated upstream
jump0=0;
jump1=0;
jump2=1;
jump3=1;
jump4=0;
water=1;
};
};
class TigerOnHunt
{
class Flags
{
include[]=
{
"walk",
"door",
"inside",
"jumpover",
"swim",
"swimsea",
"climb",
"crawl",
"crouch"
};
exclude[]=
{
"disabled"
};
};
class Costs
{
jump0=0;
jump1=0;
jump2=1;
jump3=1;
jump4=0;
water=1;
};
};
class TigerOnOuterCircle
{
class Flags
{
include[]=
{
"walk",
"jumpover"
};
exclude[]=
{
"disabled",
"swim",
"swimsea",
"climb",
"crawl",
"crouch"
};
};
class Costs
{
jump0=0;
jump1=0;
jump2=1;
jump3=1;
jump4=0;
water=1;
};
};
class NoJumping
{
class Flags
{
include[]=
=======
instantAlertRangeMin=0;
instantAlertRangeMax=0;
instantAlertStrength=0;
proximityAttackRange=2.5;
attackCooldown=3;
class SlotCalmGrazing
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=500;
grazeWalkingDurationMax=500;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=15;
travelingDurationMax=30;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotSiege
>>>>>>> Stashed changes
{
class BehaviourSiege
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"TigerPant0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerPant1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerPant2_SoundSet"
};
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"TigerPant3_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerPant4_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerPant5_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"TigerPant6_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"TigerPant7_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"TigerGrowl0_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"TigerGrowl1_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"TigerGrowl2_SoundSet"
};
};
probability=0.40000001;
RepeatTimeMin=5;
RepeatTimeMax=15;
RepeatEnabled="true";
};
innerRadius=7;
innerRadiusMin=4.5;
innerRadiusMax=10;
outerRadius=16;
directionChangeTimeMin=7;
directionChangeTimeMax=25;
PlayerFOV=1.4;
preferPlayerFOVCooldown=1;
attackDistance=3.5;
class InnerCircleMovement
{
maxSpeed=6.3000002;
optimalSpeed=6.3000002;
optimalSpeedRange=1;
minSpeed=1;
acceleration=7;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=2;
maxSpeedRange=2;
pathFilter="TigerOnHunt";
startAnimationMaxSpeed=0.54000002;
};
class Movement
{
maxSpeed=9;
optimalSpeed=6.3000002;
optimalSpeedRange=15;
minSpeed=1;
acceleration=10;
maxAngleSpeed=180;
slowRadius=0;
stopRadius=2;
maxSpeedRange=20;
pathFilter="TigerOnOuterCircle";
startAnimationMaxSpeed=0.54000002;
};
class AttackMovement
{
maxSpeed=12.175;
optimalSpeed=12;
optimalSpeedRange=6;
minSpeed=0.80000001;
acceleration=10;
maxAngleSpeed=180;
slowRadius=2;
stopRadius=3;
maxSpeedRange=30;
pathFilter="TigerOnHunt";
};
};
};
class SlotEating
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=20;
eatingWeight=20;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=15;
restingDurationMin=15;
restingDurationMax=25;
travelingDurationMin=15;
travelingDurationMax=30;
eatingDurationMin=15;
eatingDurationMax=25;
safetyDurationMin=10;
safetyDurationMax=20;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotHunting
{
class BehaviourHunt
{
attackRange=3.5;
followingRadius=15;
followingRadiusReqroupCooldownMin=5;
followingRadiusReqroupCooldownMax=15;
followingRadiusRegroupMinSpeed=1.5;
predictFollowingMinDistance=10;
minDistanceToTargetRatio=0.30000001;
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"TigerBark3_0_SoundSet"
};
};
probability=0.30000001;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"TigerBark2_0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerBark2_1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerBark2_2_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"TigerBark2_3_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"TigerBark2_4_SoundSet"
};
};
probability=1;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
class Movement
{
maxSpeed=10;
optimalSpeed=9.5;
minSpeed=1;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
maxSpeedRange=15;
optimalSpeedRange=5;
pathFilter="TigerOnHunt";
};
class MovementAttack
{
maxSpeed=12.175;
optimalSpeed=12.175;
minSpeed=6;
acceleration=20;
maxAngleSpeed=360;
slowRadius=0;
stopRadius=0;
maxSpeedRange=3;
optimalSpeedRange=1;
pathFilter="TigerOnHunt";
};
};
};
class SlotCalmResting
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=50;
grazeWalkingWeight=50;
restWeight=50;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=25;
restingDurationMin=25;
restingDurationMax=35;
travelingDurationMin=15;
travelingDurationMax=30;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
<<<<<<< Updated upstream
class Activity4
{
endTimeMin=22.5;
endTimeMax=23.5;
zoneType="HuntingGround";
stayInZone="false";
};
};
};
class DZDeerGroupBeh
{
type="WildHerbivores";
alertDistributionSpeed=20;
catchUpTestDelay=4;
catchUpStartRadius=30;
catchUpTargetRadius=7;
groupRadius=10;
spawnMinDistanceBetweenAgents=3;
agentPathLength=60;
atNeedMinDuration=60;
atNeedMaxDuration=60;
singleAgentSafeKeeperDelayMin=10;
singleAgentSafeKeeperDelayMax=100;
safeKeeperIntervalMin=10;
safeKeeperIntervalMax=30;
class LifeCycleDayTime
{
class Activity1
{
endTimeMin=8;
endTimeMax=9;
zoneType="Graze";
};
class Activity2
{
endTimeMin=10;
endTimeMax=11;
zoneType="Rest";
};
class Activity3
{
endTimeMin=13;
endTimeMax=14;
zoneType="Graze";
};
class Activity4
{
endTimeMin=17;
endTimeMax=18;
zoneType="Graze";
};
class Activity5
{
endTimeMin=20;
endTimeMax=21;
zoneType="Water";
};
};
};
class DZdomesticGroupBeh
{
type="DomesticHerbivores";
alertDistributionSpeed=0;
groupMaxAlertedSpreadRadius=30;
catchUpStartRadius=50;
catchUpTargetRadius=15;
groupRadius=10;
spawnMinDistanceBetweenAgents=3;
agentPathLength=60;
atNeedMinDuration=60;
atNeedMaxDuration=60;
singleAgentSafeKeeperDelayMin=20;
singleAgentSafeKeeperDelayMax=20;
pauseLifeCycleAfterEscapeDuration=60;
safeKeeperIntervalMin=10;
safeKeeperIntervalMax=30;
class LifeCycleDayTime
{
class Activity1
{
endTimeMin=8;
endTimeMax=9;
zoneType="Rest";
};
class Activity2
{
endTimeMin=11;
endTimeMax=12;
zoneType="Water";
};
class Activity3
{
endTimeMin=13;
endTimeMax=14;
zoneType="Graze";
};
class Activity4
{
endTimeMin=18;
endTimeMax=19;
zoneType="Graze";
};
class Activity5
{
endTimeMin=20;
endTimeMax=21;
zoneType="Graze";
};
};
};
class DZSheepGroupBeh
{
type="DomesticHerbivores";
alertDistributionSpeed=0;
groupMaxAlertedSpreadRadius=10;
catchUpTestDelay=1;
catchUpStartRadius=15;
catchUpTargetRadius=5;
groupRadius=10;
spawnMinDistanceBetweenAgents=3;
agentPathLength=30;
atNeedMinDuration=60;
atNeedMaxDuration=60;
singleAgentSafeKeeperDelayMin=20;
singleAgentSafeKeeperDelayMax=20;
pauseLifeCycleAfterEscapeDuration=60;
safeKeeperIntervalMin=10;
safeKeeperIntervalMax=20;
class LifeCycleDayTime
{
class Activity1
{
endTimeMin=8;
endTimeMax=9;
zoneType="Rest";
};
class Activity2
{
endTimeMin=10;
endTimeMax=11;
zoneType="Graze";
};
class Activity3
{
endTimeMin=13;
endTimeMax=14;
zoneType="Graze";
};
class Activity4
{
endTimeMin=18;
endTimeMax=19;
zoneType="Rest";
};
class Activity5
{
endTimeMin=20;
endTimeMax=21;
zoneType="Graze";
};
};
};
class BlissBearGroupBeh
{
type="Bear";
agentPathLength=20;
simpleLodGroupSpeed=1;
singleAgentSafeKeeperDelayMin=30;
singleAgentSafeKeeperDelayMax=50;
safeKeeperIntervalMin=30;
safeKeeperIntervalMax=50;
class LifeCycleDayTime
{
class Activity1
{
endTimeMin=8;
endTimeMax=9;
zoneType="Graze";
};
class Activity2
{
endTimeMin=10;
endTimeMax=11;
zoneType="Graze";
};
class Activity3
{
endTimeMin=13;
endTimeMax=14;
zoneType="Graze";
};
class Activity4
{
endTimeMin=17;
endTimeMax=18;
zoneType="Graze";
};
class Activity5
{
endTimeMin=20;
endTimeMax=21;
zoneType="Graze";
};
};
};
class ShredGroupBeh
{
type="Predators";
agentPathLength=20;
simpleLodGroupSpeed=1;
singleAgentSafeKeeperDelayMin=30;
singleAgentSafeKeeperDelayMax=50;
safeKeeperIntervalMin=30;
safeKeeperIntervalMax=50;
class LifeCycleDayTime
{
class Activity1
{
endTimeMin=8;
endTimeMax=9;
zoneType="Graze";
};
class Activity2
{
endTimeMin=10;
endTimeMax=11;
zoneType="Graze";
};
class Activity3
{
endTimeMin=13;
endTimeMax=14;
zoneType="Graze";
};
class Activity4
{
endTimeMin=17;
endTimeMax=18;
zoneType="Graze";
};
class Activity5
{
endTimeMin=20;
endTimeMax=21;
zoneType="Graze";
};
};
};
};
class CfgAIBehaviours
{
class Predators_Wolf
{
HeadLookBoneName="pin_lookat";
teamName="Predator";
defaultGroupTemplateName="DZWolfGroupBeh";
class PathAgent
{
radius=0.30000001;
height=1;
lengthRadius=0.69999999;
};
class BehaviourHLPredator
{
<<<<<<< HEAD
instantAlertRangeMin=0;
instantAlertRangeMax=0;
instantAlertStrength=0;
proximityAttackRange=2.5;
attackCooldown=3;
class SlotCalmGrazing
=======
instantAlertRangeMin=20;
instantAlertRangeMax=50;
instantAlertStrength=7;
class SlotCalmResting
=======
class SlotCalmTravelling
>>>>>>> Stashed changes
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=25;
grazeWalkingDurationMax=35;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=10;
travelingDurationMax=50;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="TigerOnHunt";
};
};
};
class SlotAttracted
{
class BehaviourCalm
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"TigerHowls1_SoundSet",
"TigerHowls1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerHowls2_SoundSet",
"TigerHowls2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerHowls3_SoundSet",
"TigerHowls3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"TigerHowls4_SoundSet",
"TigerHowls4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"TigerHowls5_SoundSet",
"TigerHowls5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"TigerHowls6_SoundSet",
"TigerHowls6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"TigerHowls5_SoundSet",
"TigerHowls7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"TigerHowls6_SoundSet",
"TigerHowls8_tailDistant_SoundSet"
};
};
probability=0.89999998;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"TigerHowl1_SoundSet",
"TigerHowl1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerHowl2_SoundSet",
"TigerHowl2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerHowl3_SoundSet",
"TigerHowl3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"TigerHowl4_SoundSet",
"TigerHowl4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"TigerHowl5_SoundSet",
"TigerHowl5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"TigerHowl6_SoundSet",
"TigerHowl6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"TigerHowl5_SoundSet",
"TigerHowl7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"TigerHowl6_SoundSet",
"TigerHowl8_tailDistant_SoundSet"
};
};
probability=0.5;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=5;
grazeWalkingDurationMax=10;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=50;
travelingDurationMax=100;
grazeWalkingSpeed=0.54400003;
travelingWalkingSpeed=0.78200001;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="TigerOnHunt";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="TigerOnHunt";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
};
};
class SlotFireplace
>>>>>>> upstream/master
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
<<<<<<< HEAD
restWeight=0;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=500;
grazeWalkingDurationMax=500;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=15;
travelingDurationMax=30;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyDurationMin=10;
=======
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyIntervalMin=30;
safetyIntervalMax=40;
safetyDurationMin=5;
>>>>>>> upstream/master
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
<<<<<<< HEAD
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
=======
slowRadius=0;
stopRadius=0.5;
>>>>>>> upstream/master
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
<<<<<<< HEAD
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotSiege
{
class BehaviourSiege
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfPant0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant2_SoundSet"
};
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfPant3_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant4_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant5_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfPant6_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfPant7_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfGrowl0_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfGrowl1_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfGrowl2_SoundSet"
};
};
probability=0.40000001;
RepeatTimeMin=5;
RepeatTimeMax=15;
RepeatEnabled="true";
};
innerRadius=7;
innerRadiusMin=4.5;
innerRadiusMax=10;
outerRadius=16;
directionChangeTimeMin=7;
directionChangeTimeMax=25;
PlayerFOV=1.4;
preferPlayerFOVCooldown=1;
attackDistance=3.5;
class InnerCircleMovement
{
maxSpeed=6.3000002;
optimalSpeed=6.3000002;
optimalSpeedRange=1;
minSpeed=1;
acceleration=7;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=2;
maxSpeedRange=2;
pathFilter="WolfOnHunt";
startAnimationMaxSpeed=0.54000002;
};
class Movement
{
maxSpeed=9;
optimalSpeed=6.3000002;
optimalSpeedRange=15;
minSpeed=1;
acceleration=10;
maxAngleSpeed=180;
slowRadius=0;
stopRadius=2;
maxSpeedRange=20;
pathFilter="WolfOnOuterCircle";
startAnimationMaxSpeed=0.54000002;
};
class AttackMovement
{
maxSpeed=12.175;
optimalSpeed=12;
optimalSpeedRange=6;
minSpeed=0.80000001;
acceleration=10;
maxAngleSpeed=180;
slowRadius=2;
stopRadius=3;
maxSpeedRange=30;
pathFilter="WolfOnHunt";
};
};
};
class SlotEating
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=20;
eatingWeight=20;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=15;
restingDurationMin=15;
restingDurationMax=25;
travelingDurationMin=15;
travelingDurationMax=30;
eatingDurationMin=15;
eatingDurationMax=25;
safetyDurationMin=10;
safetyDurationMax=20;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotHunting
{
class BehaviourHunt
{
attackRange=3.5;
followingRadius=15;
followingRadiusReqroupCooldownMin=5;
followingRadiusReqroupCooldownMax=15;
followingRadiusRegroupMinSpeed=1.5;
predictFollowingMinDistance=10;
minDistanceToTargetRatio=0.30000001;
class SoundsEntering
=======
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotScared
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"TigerGroans1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerGroans2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerGroans3_SoundSet"
};
};
probability=1;
};
class SoundsDuring
>>>>>>> upstream/master
{
class Sound1
{
sounds[]=
{
<<<<<<< HEAD
"WolfBark3_0_SoundSet"
};
};
probability=0.30000001;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfBark2_0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfBark2_1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfBark2_2_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfBark2_3_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfBark2_4_SoundSet"
};
};
probability=1;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
class Movement
{
maxSpeed=10;
optimalSpeed=9.5;
minSpeed=1;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
maxSpeedRange=15;
optimalSpeedRange=5;
pathFilter="WolfOnHunt";
};
class MovementAttack
{
maxSpeed=12.175;
optimalSpeed=12.175;
minSpeed=6;
acceleration=20;
maxAngleSpeed=360;
slowRadius=0;
stopRadius=0;
maxSpeedRange=3;
optimalSpeedRange=1;
pathFilter="WolfOnHunt";
};
};
};
=======
"TigerGroans1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"TigerGroans2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"TigerGroans3_SoundSet"
};
};
probability=0.30000001;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
class RunMovement
{
maxSpeed=12.175;
optimalSpeed=6.3899999;
minSpeed=1;
acceleration=2;
maxAngleSpeed=360;
slowRadius=4;
stopRadius=0;
maxSpeedRange=15;
optimalSpeedRange=10;
pathFilter="DeerOnRun";
};
};
};
class AlertSystem
{
visionToAlertMultiplier=10;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=200;
class Calm
{
dropSpeed=3;
dropDelay=2;
maxAlertValue=30;
};
class Alerted
{
dropSpeed=11;
dropDelay=0;
maxAlertValue=100;
};
class AlertedExtra
{
dropSpeed=25;
dropDelay=10;
maxAlertValue=500;
};
};
};
class NoiseSystemParams
{
rangeMin=25;
rangeMax=100;
rangeShotMin=0;
rangeShotMax=50;
class NoiseStrengthTeamMultipliers
{
BigGame=0.40000001;
Zombies=0.60000002;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=0.60000002;
Zombies=1;
Player=1;
Predators=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.60000002;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=100;
visionRangeMax=200;
visionFov=1.8;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=16;
visionPeripheralFov=6.1999998;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
};
class CfgDamages
{
class TigerBiteDamage
{
bone="tongue2";
ammo="MeleeTiger";
radius=0.40000001;
duration=0.2;
};
class TigerLowBiteDamage
{
bone="tongue2";
ammo="MeleeTiger";
radius=0.40000001;
duration=0.2;
};
};
class CfgAmmo
{
class MeleeDamage;
class MeleeTiger: MeleeDamage
{
class DamageApplied
{
type="Melee";
bleedThreshold=0.85000002;
class Health
{
damage=45;
};
class Blood
{
damage=175;
};
class Shock
{
damage=35;
};
additionAnimalMeleeMultiplier=8;
};
soundGroundSoft1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_01",
0.5,
1,
60
};
soundGroundSoft2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_02",
0.5,
1,
60
};
soundGroundSoft3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_03",
0.5,
1,
60
};
soundGroundSoft4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_04",
0.5,
1,
60
};
soundGroundSoft5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_05",
0.5,
1,
60
};
soundGroundSoft6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_06",
0.5,
1,
60
};
soundGroundSoft7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_07",
0.5,
1,
60
};
<<<<<<< Updated upstream
class BehaviourHLDeer
{
instantAlertRangeMin=20;
instantAlertRangeMax=50;
instantAlertStrength=6;
>>>>>>> upstream/master
class SlotCalmResting
{
class BehaviourCalm
{
<<<<<<< HEAD
travelingMode="true";
grazeOnSpotWeight=50;
grazeWalkingWeight=50;
restWeight=50;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=25;
restingDurationMin=25;
restingDurationMax=35;
travelingDurationMin=15;
travelingDurationMax=30;
safetyDurationMin=10;
safetyDurationMax=10;
=======
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=50;
travelWeight=0;
grazeOnSpotDurationMin=40;
grazeOnSpotDurationMax=80;
grazeWalkingDurationMin=40;
grazeWalkingDurationMax=80;
restingDurationMin=40;
restingDurationMax=60;
travelingDurationMin=20;
travelingDurationMax=20;
safetyDurationMin=14;
safetyDurationMax=24;
>>>>>>> upstream/master
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.13500001;
minSpeed=0.13500001;
acceleration=5;
<<<<<<< HEAD
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
=======
maxAngleSpeed=5;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
class CatchUpMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
};
};
class SlotCalmGrazing
{
class BehaviourCalm
{
class SoundsDuring
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=100;
probability=0.5;
RepeatTimeMin=10;
RepeatTimeMax=50;
RepeatEnabled="true";
};
travelingMode="false";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=50;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=40;
restingDurationMin=20;
restingDurationMax=20;
travelingDurationMin=20;
travelingDurationMax=20;
safetyDurationMin=14;
safetyDurationMax=24;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.13500001;
minSpeed=0.13500001;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
class CatchUpMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
>>>>>>> upstream/master
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
<<<<<<< HEAD
=======
class SoundsDuring
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=100;
probability=0.5;
RepeatTimeMin=10;
RepeatTimeMax=50;
RepeatEnabled="true";
};
>>>>>>> upstream/master
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
<<<<<<< HEAD
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=25;
grazeWalkingDurationMax=35;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=10;
travelingDurationMax=50;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
=======
grazeOnSpotDurationMin=15;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=20;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=40;
travelingDurationMax=60;
safetyDurationMin=14;
safetyDurationMax=24;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.13500001;
minSpeed=0.13500001;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
class CatchUpMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
};
};
class SlotDrinking
{
class BehaviourCalm
{
class SoundsDuring
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=100;
probability=0.5;
RepeatTimeMin=10;
RepeatTimeMax=50;
RepeatEnabled="true";
};
travelingMode="true";
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=10;
restingDurationMin=0;
restingDurationMax=0;
travelingDurationMin=20;
travelingDurationMax=20;
drinkingDurationMin=15;
drinkingDurationMax=20;
grazeWalkingSpeed=0.17900001;
travelingWalkingSpeed=1.196;
safetyDurationMin=14;
safetyDurationMax=24;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class DrinkingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
>>>>>>> upstream/master
};
class GrazeMovement
{
maxSpeed=0.13500001;
minSpeed=0.13500001;
acceleration=5;
<<<<<<< HEAD
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
=======
maxAngleSpeed=5;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
class CatchUpMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
>>>>>>> upstream/master
};
};
};
class SlotAttracted
{
class BehaviourCalm
{
class SoundsEntering
{
<<<<<<< HEAD
class Sound1
{
sounds[]=
{
"WolfHowls1_SoundSet",
"WolfHowls1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowls2_SoundSet",
"WolfHowls2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowls3_SoundSet",
"WolfHowls3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowls4_SoundSet",
"WolfHowls4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls8_tailDistant_SoundSet"
};
};
probability=0.89999998;
};
class SoundsDuring
=======
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=100;
probability=0.80000001;
};
class SoundsDuring
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=100;
probability=0.30000001;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=20;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=7;
walkToDurationMax=14;
stayLookAtDurationMin=10;
stayLookAtDurationMax=20;
stayDurationMin=5;
stayDurationMax=10;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
};
};
class SlotSpecificThreat
{
class BehaviourSpecificThreat
{
class SoundsEntering
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=100;
probability=0.80000001;
};
class SoundsDuring
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=150;
probability=0.30000001;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
walkAwayWeight=10;
walkToWeight=10;
stayLookAtWeight=20;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=10;
walkAwayDurationMax=20;
walkToDurationMin=7;
walkToDurationMax=15;
stayLookAtDurationMin=10;
stayLookAtDurationMax=20;
stayDurationMin=5;
stayDurationMax=10;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.89999998;
minSpeed=0.52999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="RoeDeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.54000002;
};
};
};
class SlotAlerted
{
class BehaviourFleeFromTargets
{
class SoundsEntering
>>>>>>> upstream/master
{
class Sound1
{
sounds[]=
{
<<<<<<< HEAD
"WolfHowl1_SoundSet",
"WolfHowl1_tailDistant_SoundSet"
=======
"DeerAmbush1_SoundSet",
"DeerAmbush1_tailForest_SoundSet"
>>>>>>> upstream/master
};
};
class Sound2
{
sounds[]=
{
<<<<<<< HEAD
"WolfHowl2_SoundSet",
"WolfHowl2_tailDistant_SoundSet"
=======
"DeerAmbush2_SoundSet",
"DeerAmbush2_tailForest_SoundSet"
>>>>>>> upstream/master
};
};
class Sound3
{
sounds[]=
{
<<<<<<< HEAD
"WolfHowl3_SoundSet",
"WolfHowl3_tailDistant_SoundSet"
=======
"DeerAmbush3_SoundSet",
"DeerAmbush3_tailForest_SoundSet"
>>>>>>> upstream/master
};
};
class Sound4
{
sounds[]=
{
<<<<<<< HEAD
"WolfHowl4_SoundSet",
"WolfHowl4_tailDistant_SoundSet"
=======
"DeerAmbush4_SoundSet",
"DeerAmbush4_tailForest_SoundSet"
>>>>>>> upstream/master
};
};
class Sound5
{
sounds[]=
{
<<<<<<< HEAD
"WolfHowl5_SoundSet",
"WolfHowl5_tailDistant_SoundSet"
=======
"DeerAmbush5_SoundSet",
"DeerAmbush5_tailForest_SoundSet"
>>>>>>> upstream/master
};
};
class Sound6
{
sounds[]=
{
<<<<<<< HEAD
"WolfHowl6_SoundSet",
"WolfHowl6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl8_tailDistant_SoundSet"
};
};
probability=0.5;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
=======
"DeerAmbush6_SoundSet",
"DeerAmbush6_tailForest_SoundSet"
};
};
probability=1;
};
minDistanceToTargetRatio=0.5;
class SoundsDuring
{
sounds[]=
{
"dz\sounds\effects\animals\deer\bark_roe\bark_0",
"dz\sounds\effects\animals\deer\bark_roe\bark_1",
"dz\sounds\effects\animals\deer\bark_roe\bark_2",
"dz\sounds\effects\animals\deer\bark_roe\bark_3",
"dz\sounds\effects\animals\deer\bark_roe\bark_4",
"dz\sounds\effects\animals\deer\bark_roe\bark_5",
"dz\sounds\effects\animals\deer\bark_roe\bark_6",
"dz\sounds\effects\animals\deer\bark_roe\bark_7"
};
volume=0.80000001;
distance=200;
probability=0.30000001;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
class RunMovement
{
maxSpeed=11.76;
optimalSpeed=9.6000004;
minSpeed=0.89999998;
maxSpeedRange=50;
optimalSpeedRange=25;
acceleration=7;
maxAngleSpeed=70;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="RoeDeerOnRun";
startAnimationMaxSpeed=0.91000003;
>>>>>>> upstream/master
};
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=5;
grazeWalkingDurationMax=10;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=50;
travelingDurationMax=100;
grazeWalkingSpeed=0.54400003;
travelingWalkingSpeed=0.78200001;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
<<<<<<< HEAD
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
=======
maxSpeed=1.35;
optimalSpeed=1.35;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=0.91000003;
>>>>>>> upstream/master
};
class CatchUpMovement
{
<<<<<<< HEAD
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
};
};
class SlotFireplace
=======
maxSpeed=0.1;
optimalSpeed=0;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=0.91000003;
};
};
};
class AlertSystem
{
visionToAlertMultiplier=7;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=5;
dropDelay=1;
maxAlertValue=25;
};
class NonSpecificThreat
{
dropSpeed=5;
dropDelay=10;
maxAlertValue=50;
};
class SpecificThreat
{
dropSpeed=2;
dropDelay=10;
maxAlertValue=75;
};
class Alerted
{
dropSpeed=10;
dropDelay=10;
maxAlertValue=100;
};
};
};
class NoiseSystemParams
{
rangeMin=20;
rangeMax=70;
rangeShotMin=100;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=1;
Zombies=1;
Player=1;
Predator=10;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.5;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=5;
visionRangeMax=50;
visionFov=2;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=30;
visionPeripheralFov=3.2;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
class Herbivores_CapraHircus
{
HeadLookBoneName="pin_lookat";
teamName="BigGame";
defaultGroupTemplateName="DZSheepGroupBeh";
class PathAgent
{
radius=0.2;
height=1;
};
class BehaviourHLDomestic
{
instantAlertRangeMin=10;
instantAlertRangeMax=40;
instantAlertStrength=9;
agentPathLength=30;
agentPathUpdateDelta=1;
agentPathMinLength=2;
class SlotCalmResting
>>>>>>> upstream/master
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
<<<<<<< HEAD
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyIntervalMin=30;
safetyIntervalMax=40;
safetyDurationMin=5;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotScared
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfGroans1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroans2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroans3_SoundSet"
};
};
probability=1;
=======
grazeWalkingWeight=10;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=40;
grazeOnSpotDurationMax=120;
grazeWalkingDurationMin=40;
grazeWalkingDurationMax=120;
restingDurationMin=60;
restingDurationMax=180;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.11;
minSpeed=0.11;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
>>>>>>> upstream/master
};
class CatchUpMovement
{
<<<<<<< HEAD
class Sound1
{
sounds[]=
{
"WolfGroan1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroan2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroan3_SoundSet"
};
};
probability=0.30000001;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
=======
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
>>>>>>> upstream/master
};
class RunMovement
{
maxSpeed=12.175;
optimalSpeed=6.3899999;
minSpeed=1;
acceleration=2;
maxAngleSpeed=360;
slowRadius=4;
stopRadius=0;
maxSpeedRange=15;
optimalSpeedRange=10;
pathFilter="DeerOnRun";
};
};
};
<<<<<<< HEAD
class AlertSystem
{
visionToAlertMultiplier=10;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=200;
class Calm
{
dropSpeed=3;
dropDelay=2;
maxAlertValue=30;
};
class Alerted
{
dropSpeed=11;
dropDelay=0;
maxAlertValue=100;
};
class AlertedExtra
{
dropSpeed=25;
dropDelay=10;
maxAlertValue=500;
};
};
};
class NoiseSystemParams
{
rangeMin=25;
rangeMax=100;
rangeShotMin=0;
rangeShotMax=50;
class NoiseStrengthTeamMultipliers
{
BigGame=0.40000001;
Zombies=0.60000002;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=0.60000002;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.60000002;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=100;
visionRangeMax=200;
visionFov=1.8;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=16;
visionPeripheralFov=6.1999998;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
class Predators_Shred
{
HeadLookBoneName="pin_lookat";
teamName="Shred";
defaultGroupTemplateName="ShredGroupBeh";
class PathAgent
{
radius=0.30000001;
height=1;
lengthRadius=0.69999999;
};
class BehaviourHLPredator
{
instantAlertRangeMin=0;
instantAlertRangeMax=0;
instantAlertStrength=0;
proximityAttackRange=2.5;
attackCooldown=3;
=======
>>>>>>> upstream/master
class SlotCalmGrazing
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
<<<<<<< HEAD
restWeight=0;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=500;
grazeWalkingDurationMax=500;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=15;
travelingDurationMax=30;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotSiege
=======
restWeight=10;
travelWeight=0;
grazeOnSpotDurationMin=40;
grazeOnSpotDurationMax=120;
grazeWalkingDurationMin=40;
grazeWalkingDurationMax=120;
restingDurationMin=60;
restingDurationMax=180;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.11;
minSpeed=0.11;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
class CatchUpMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
};
};
class SlotDrinking
>>>>>>> upstream/master
{
class BehaviourSiege
{
<<<<<<< HEAD
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfPant0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant2_SoundSet"
};
};
probability=1;
=======
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=30;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=30;
restingDurationMin=20;
restingDurationMax=30;
travelingDurationMin=0;
travelingDurationMax=20;
drinkingDurationMin=40;
drinkingDurationMax=60;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class DrinkingMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
class GrazeMovement
{
maxSpeed=0.11;
minSpeed=0.11;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
>>>>>>> upstream/master
};
class SoundsDuring
{
<<<<<<< HEAD
class Sound1
{
sounds[]=
{
"WolfPant3_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant4_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant5_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfPant6_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfPant7_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfGrowl0_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfGrowl1_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfGrowl2_SoundSet"
};
};
probability=0.40000001;
RepeatTimeMin=5;
RepeatTimeMax=15;
RepeatEnabled="true";
};
innerRadius=7;
innerRadiusMin=4.5;
innerRadiusMax=10;
outerRadius=16;
directionChangeTimeMin=7;
directionChangeTimeMax=25;
PlayerFOV=1.4;
preferPlayerFOVCooldown=1;
attackDistance=3.5;
class InnerCircleMovement
{
maxSpeed=6.3000002;
optimalSpeed=6.3000002;
optimalSpeedRange=1;
minSpeed=1;
acceleration=7;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=2;
maxSpeedRange=2;
pathFilter="WolfOnHunt";
startAnimationMaxSpeed=0.54000002;
};
class Movement
{
maxSpeed=9;
optimalSpeed=6.3000002;
optimalSpeedRange=15;
minSpeed=1;
acceleration=10;
maxAngleSpeed=180;
slowRadius=0;
stopRadius=2;
maxSpeedRange=20;
pathFilter="WolfOnOuterCircle";
startAnimationMaxSpeed=0.54000002;
};
class AttackMovement
{
maxSpeed=12.175;
optimalSpeed=12;
optimalSpeedRange=6;
minSpeed=0.80000001;
acceleration=10;
maxAngleSpeed=180;
slowRadius=2;
stopRadius=3;
maxSpeedRange=30;
pathFilter="WolfOnHunt";
};
};
};
class SlotEating
=======
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
class CatchUpMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
};
};
class SlotCalmTravelling
>>>>>>> upstream/master
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
<<<<<<< HEAD
travelWeight=20;
eatingWeight=20;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=15;
restingDurationMin=15;
restingDurationMax=25;
travelingDurationMin=15;
travelingDurationMax=30;
eatingDurationMin=15;
eatingDurationMax=25;
safetyDurationMin=10;
safetyDurationMax=20;
=======
travelWeight=50;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=50;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=50;
restingDurationMin=20;
restingDurationMax=25;
travelingDurationMin=20;
travelingDurationMax=40;
safetyDurationMin=15;
safetyDurationMax=35;
>>>>>>> upstream/master
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
<<<<<<< HEAD
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
=======
maxSpeed=0.11;
minSpeed=0.11;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
class CatchUpMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
>>>>>>> upstream/master
};
};
};
class SlotHunting
{
class BehaviourHunt
{
<<<<<<< HEAD
attackRange=3.5;
followingRadius=15;
followingRadiusReqroupCooldownMin=5;
followingRadiusReqroupCooldownMax=15;
followingRadiusRegroupMinSpeed=1.5;
predictFollowingMinDistance=10;
minDistanceToTargetRatio=0.30000001;
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfBark3_0_SoundSet"
};
};
probability=0.30000001;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfBark2_0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfBark2_1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfBark2_2_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfBark2_3_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfBark2_4_SoundSet"
};
};
probability=1;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
class Movement
{
maxSpeed=10;
optimalSpeed=9.5;
minSpeed=1;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
maxSpeedRange=15;
optimalSpeedRange=5;
pathFilter="WolfOnHunt";
=======
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=1;
walkAwayDurationMin=5;
walkAwayDurationMax=15;
walkToDurationMin=5;
walkToDurationMax=15;
stayLookAtDurationMin=10;
stayLookAtDurationMax=20;
stayDurationMin=20;
stayDurationMax=30;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.83999997;
minSpeed=0.41;
acceleration=5;
maxAngleSpeed=90;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.41999999;
};
};
};
class SlotSpecificThreat
{
class SlotEvents
{
class EventsEntering
{
};
class EventsDuring
{
class PeriodicEventRepeatAlert_OvisAriesSlotSpec
{
repeatTimeMin=1;
repeatTimeMax=4;
class AlertImpulseActionRepeatAlert_OvisAriesSlotSpec
{
value=0;
range=10;
};
};
};
};
class BehaviourSpecificThreat
{
walkAwayWeight=10;
walkToWeight=0;
stayLookAtWeight=0;
stayWeight=0;
walkAwaySpreadAngle=0.5;
walkAwayInitialAngle=1;
walkToSpreadAngle=1.5;
walkToInitialAngle=1;
walkAwayDurationMin=5;
walkAwayDurationMax=15;
walkToDurationMin=5;
walkToDurationMax=15;
stayLookAtDurationMin=10;
stayLookAtDurationMax=20;
stayDurationMin=20;
stayDurationMax=30;
pathLength=10;
class WalkingMovement
{
maxSpeed=6;
optimalSpeed=2.8;
minSpeed=2.1199999;
maxSpeedRange=30;
optimalSpeedRange=20;
acceleration=4;
maxAngleSpeed=90;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=2.1300001;
};
};
};
class SlotAlerted
{
class SlotEvents
{
class EventsEntering
{
class OneTimeEventSendAlert_OvisAriesSlotAlert
{
class AlertImpulseActionSendAlert_OvisAriesSlotAlert
{
value=50;
range=10;
};
};
};
class EventsDuring
{
class PeriodicEventRepeatAlert_OvisAriesSlotAlert
{
repeatTimeMin=1;
repeatTimeMax=4;
class AlertImpulseActionRepeatAlert_OvisAriesSlotAlert
{
value=0;
range=10;
};
};
};
};
class BehaviourGoToTarget
{
class Movement
{
maxSpeed=10.44;
optimalSpeed=6;
minSpeed=0.41;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=60;
slowRadius=6;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.41999999;
};
class RunMovementInjured1
{
maxSpeed=1.2;
optimalSpeed=0.41;
minSpeed=0.41;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=1;
maxAngleSpeed=30;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.41999999;
>>>>>>> upstream/master
};
class MovementAttack
{
<<<<<<< HEAD
maxSpeed=12.175;
optimalSpeed=12.175;
minSpeed=6;
acceleration=20;
maxAngleSpeed=360;
slowRadius=0;
stopRadius=0;
maxSpeedRange=3;
optimalSpeedRange=1;
pathFilter="WolfOnHunt";
};
};
};
=======
maxSpeed=0;
optimalSpeed=0;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=1;
maxAngleSpeed=30;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=1.4;
};
};
};
class AlertSystem
{
visionToAlertMultiplier=60;
noiseToAlertMultiplier=0.30000001;
noiseShotToAlertMultiplier=1.2;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=8;
dropDelay=1;
maxAlertValue=5;
};
class NonSpecificThreat
{
dropSpeed=8;
dropDelay=2;
maxAlertValue=70;
};
class SpecificThreat
{
dropSpeed=7;
dropDelay=2;
maxAlertValue=110;
};
class Alerted
{
dropSpeed=6;
dropDelay=0.1;
maxAlertValue=120;
};
};
};
class NoiseSystemParams
{
rangeMin=10;
rangeMax=30;
rangeShotMin=5;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=1;
Zombies=1;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.5;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=5;
visionRangeMin=6;
visionRangeMax=10;
visionFov=1.6;
visionPeripheralRangeMin=5;
visionPeripheralRangeMax=8;
visionPeripheralFov=6.2800002;
visionNightMinMult=1;
visionNightMaxMult=1;
visionRainMinMult=1;
visionRainMaxMult=1;
visionFogMinMult=1;
visionFogMaxMult=1;
};
};
class Herbivores_SusDomesticus
{
HeadLookBoneName="pin_lookat";
teamName="BigGame";
defaultGroupTemplateName="DZSheepGroupBeh";
class PathAgent
{
radius=0.2;
height=1;
};
class BehaviourHLDomestic
{
instantAlertRangeMin=5;
instantAlertRangeMax=15;
instantAlertStrength=7;
agentPathLength=30;
agentPathUpdateDelta=1;
agentPathMinLength=2;
>>>>>>> upstream/master
class SlotCalmResting
{
class BehaviourCalm
{
<<<<<<< HEAD
travelingMode="true";
grazeOnSpotWeight=50;
grazeWalkingWeight=50;
restWeight=50;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=25;
restingDurationMin=25;
restingDurationMax=35;
travelingDurationMin=15;
travelingDurationMax=30;
safetyDurationMin=10;
safetyDurationMax=10;
=======
travelingMode="false";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=15;
grazeWalkingDurationMin=3;
grazeWalkingDurationMax=8;
restingDurationMin=15;
restingDurationMax=20;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.25;
travelingWalkingSpeed=0.95999998;
safetyIntervalMin=13;
safetyIntervalMax=27;
safetyDurationMin=8;
safetyDurationMax=12;
>>>>>>> upstream/master
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
<<<<<<< HEAD
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
=======
maxSpeed=0.23;
minSpeed=0.23;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.69999999;
optimalSpeed=0.69999999;
minSpeed=0.49000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
};
class CatchUpMovement
{
maxSpeed=3;
optimalSpeed=3;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
>>>>>>> upstream/master
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
<<<<<<< HEAD
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=25;
grazeWalkingDurationMax=35;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=10;
travelingDurationMax=50;
safetyDurationMin=10;
=======
travelingMode="false";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=5;
grazeWalkingDurationMax=10;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.25;
travelingWalkingSpeed=0.95999998;
safetyIntervalMin=30;
safetyIntervalMax=40;
safetyDurationMin=5;
>>>>>>> upstream/master
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
<<<<<<< HEAD
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
=======
class GrazeMovement
{
maxSpeed=0.23;
minSpeed=0.23;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.69999999;
optimalSpeed=0.69999999;
minSpeed=0.49000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
};
class CatchUpMovement
{
maxSpeed=3;
optimalSpeed=3;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=20;
grazeOnSpotDurationMin=100;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=100;
grazeWalkingDurationMax=100;
restingDurationMin=100;
restingDurationMax=100;
travelingDurationMin=100;
travelingDurationMax=100;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.23;
minSpeed=0.23;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.69999999;
optimalSpeed=0.69999999;
minSpeed=0.49000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
};
class CatchUpMovement
{
maxSpeed=3;
optimalSpeed=3;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
>>>>>>> upstream/master
};
};
};
class SlotAttracted
{
class BehaviourCalm
{
<<<<<<< HEAD
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfHowls1_SoundSet",
"WolfHowls1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowls2_SoundSet",
"WolfHowls2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowls3_SoundSet",
"WolfHowls3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowls4_SoundSet",
"WolfHowls4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls8_tailDistant_SoundSet"
};
};
probability=0.89999998;
=======
travelingMode="true";
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=10;
restingDurationMin=0;
restingDurationMax=0;
travelingDurationMin=20;
travelingDurationMax=20;
drinkingDurationMin=15;
drinkingDurationMax=20;
grazeWalkingSpeed=0.17900001;
travelingWalkingSpeed=1.196;
safetyIntervalMin=15;
safetyIntervalMax=20;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class DrinkingMovement
{
maxSpeed=0.69999999;
optimalSpeed=0.69999999;
minSpeed=0.49000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
};
class GrazeMovement
{
maxSpeed=0.23;
minSpeed=0.23;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=0.69999999;
optimalSpeed=0.69999999;
minSpeed=0.49000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
>>>>>>> upstream/master
};
class SoundsDuring
{
<<<<<<< HEAD
class Sound1
{
sounds[]=
{
"WolfHowl1_SoundSet",
"WolfHowl1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowl2_SoundSet",
"WolfHowl2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowl3_SoundSet",
"WolfHowl3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowl4_SoundSet",
"WolfHowl4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl8_tailDistant_SoundSet"
};
};
probability=0.5;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=5;
grazeWalkingDurationMax=10;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=50;
travelingDurationMax=100;
grazeWalkingSpeed=0.54400003;
travelingWalkingSpeed=0.78200001;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
=======
maxSpeed=3;
optimalSpeed=3;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
};
class SlotNonSpecificThreat
{
class BehaviourSpecificThreat
{
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=3;
walkToDurationMax=5;
stayLookAtDurationMin=10;
stayLookAtDurationMax=15;
stayDurationMin=10;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.69999999;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
>>>>>>> upstream/master
};
};
};
class SlotFireplace
{
<<<<<<< HEAD
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyIntervalMin=30;
safetyIntervalMax=40;
safetyDurationMin=5;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
=======
class BehaviourSpecificThreat
{
walkAwayWeight=10;
walkToWeight=0;
stayLookAtWeight=0;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=0.1;
walkToInitialAngle=0.1;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=2;
walkToDurationMax=6;
stayLookAtDurationMin=10;
stayLookAtDurationMax=15;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.69999999;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.5;
>>>>>>> upstream/master
};
};
};
class SlotScared
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
<<<<<<< HEAD
class Sound1
{
sounds[]=
{
"WolfGroans1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroans2_SoundSet"
=======
class OneTimeEventSendAlert_BosTaurusSlotAlert
{
class AlertImpulseActionSendAlert_BosTaurusSlotAlert
{
value=50;
range=15;
>>>>>>> upstream/master
};
};
class Sound3
{
sounds[]=
{
"WolfGroans3_SoundSet"
};
};
probability=1;
};
<<<<<<< HEAD
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfGroan1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroan2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroan3_SoundSet"
};
};
probability=0.30000001;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
=======
};
class BehaviourGoToTarget
{
class Movement
{
maxSpeed=7.1999998;
optimalSpeed=5;
minSpeed=0.69999999;
maxSpeedRange=30;
optimalSpeedRange=15;
acceleration=4;
maxAngleSpeed=70;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.80000001;
};
class RunMovementInjured1
{
maxSpeed=7.1999998;
optimalSpeed=5;
minSpeed=0.69999999;
maxSpeedRange=30;
optimalSpeedRange=15;
acceleration=4;
maxAngleSpeed=70;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.80000001;
>>>>>>> upstream/master
};
class RunMovement
{
<<<<<<< HEAD
maxSpeed=12.175;
optimalSpeed=6.3899999;
minSpeed=1;
acceleration=2;
maxAngleSpeed=360;
slowRadius=4;
stopRadius=0;
maxSpeedRange=15;
optimalSpeedRange=10;
pathFilter="DeerOnRun";
=======
maxSpeed=7.1999998;
optimalSpeed=5;
minSpeed=0.69999999;
maxSpeedRange=30;
optimalSpeedRange=15;
acceleration=4;
maxAngleSpeed=70;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.80000001;
>>>>>>> upstream/master
};
};
};
class AlertSystem
{
<<<<<<< HEAD
visionToAlertMultiplier=10;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=200;
class Calm
{
dropSpeed=3;
dropDelay=2;
maxAlertValue=30;
=======
visionToAlertMultiplier=25;
noiseToAlertMultiplier=0.69999999;
noiseShotToAlertMultiplier=2;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=5;
dropDelay=1;
maxAlertValue=10;
};
class NonSpecificThreat
{
dropSpeed=5;
dropDelay=5;
maxAlertValue=70;
>>>>>>> upstream/master
};
class Alerted
{
<<<<<<< HEAD
dropSpeed=11;
dropDelay=0;
=======
dropSpeed=5;
dropDelay=3;
>>>>>>> upstream/master
maxAlertValue=100;
};
class AlertedExtra
{
<<<<<<< HEAD
dropSpeed=25;
dropDelay=10;
maxAlertValue=500;
=======
dropSpeed=5;
dropDelay=1;
maxAlertValue=115;
>>>>>>> upstream/master
};
};
};
class NoiseSystemParams
{
<<<<<<< HEAD
rangeMin=25;
rangeMax=100;
rangeShotMin=0;
rangeShotMax=50;
class NoiseStrengthTeamMultipliers
{
BigGame=0.40000001;
Zombies=0.60000002;
=======
rangeMin=10;
rangeMax=25;
rangeShotMin=5;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
>>>>>>> upstream/master
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=0.60000002;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
<<<<<<< HEAD
visionManSizeProne=0.60000002;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=100;
visionRangeMax=200;
visionFov=1.8;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=16;
visionPeripheralFov=6.1999998;
=======
visionManSizeProne=0.44999999;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=5;
visionRangeMin=15;
visionRangeMax=20;
visionFov=1.2;
visionPeripheralRangeMin=5;
visionPeripheralRangeMax=10;
visionPeripheralFov=6.2800002;
>>>>>>> upstream/master
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
<<<<<<< HEAD
};
class CfgSoundShaders
{
class TigerAttack_SoundShader
{
samples[]=
=======
class Herbivores_SusScrofa
{
HeadLookBoneName="pin_lookat";
teamName="BigGame";
defaultGroupTemplateName="DZDeerGroupBeh";
class PathAgent
>>>>>>> upstream/master
{
{
"ShredAnimals\tiger\tigris\tiger_growl",
1
}
};
<<<<<<< HEAD
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerMumble_SoundShader
{
samples[]=
{
{
"ShredAnimals\tiger\tigris\tigerpurr",
1
}
};
volume=1;
range=140;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerRoar_SoundShader
{
samples[]=
{
{
"ShredAnimals\tiger\tigris\tigerroar",
1
}
=======
class BehaviourHLDeer
{
instantAlertRangeMin=20;
instantAlertRangeMax=50;
instantAlertStrength=7;
class SlotCalmResting
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=30;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=30;
restingDurationMin=20;
restingDurationMax=30;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=8;
safetyDurationMax=12;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
maxSpeed=4.1999998;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotCalmGrazing
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=5;
travelWeight=0;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=30;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=30;
restingDurationMin=20;
restingDurationMax=30;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=8;
safetyDurationMax=12;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
maxSpeed=4.1999998;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=15;
grazeOnSpotDurationMax=25;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=25;
restingDurationMin=0;
restingDurationMax=0;
travelingDurationMin=20;
travelingDurationMax=40;
safetyDurationMin=8;
safetyDurationMax=12;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
maxSpeed=4.1999998;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotDrinking
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=20;
restingDurationMin=15;
restingDurationMax=25;
travelingDurationMin=0;
travelingDurationMax=0;
drinkingDurationMin=50;
drinkingDurationMax=70;
safetyDurationMin=8;
safetyDurationMax=12;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class DrinkingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
maxSpeed=4.1999998;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotNonSpecificThreat
{
class BehaviourSpecificThreat
{
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=4;
walkToDurationMax=8;
stayLookAtDurationMin=10;
stayLookAtDurationMax=15;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotSpecificThreat
{
class BehaviourSpecificThreat
{
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=4;
walkToDurationMax=8;
stayLookAtDurationMin=10;
stayLookAtDurationMax=15;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=1.12;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotAlerted
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"DeerAmbush1_SoundSet",
"DeerAmbush1_tailForest_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"DeerAmbush2_SoundSet",
"DeerAmbush2_tailForest_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"DeerAmbush3_SoundSet",
"DeerAmbush3_tailForest_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"DeerAmbush4_SoundSet",
"DeerAmbush4_tailForest_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"DeerAmbush5_SoundSet",
"DeerAmbush5_tailForest_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"DeerAmbush6_SoundSet",
"DeerAmbush6_tailForest_SoundSet"
};
};
probability=1;
};
minDistanceToTargetRatio=0.5;
class RunMovement
{
maxSpeed=17;
optimalSpeed=12;
minSpeed=1;
maxSpeedRange=30;
optimalSpeedRange=15;
acceleration=4;
maxAngleSpeed=70;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=1.4;
};
class RunMovementInjured1
{
maxSpeed=1.35;
optimalSpeed=1.35;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=1.4;
};
class RunMovementInjured2
{
maxSpeed=0.1;
optimalSpeed=0;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=1.4;
};
};
};
class AlertSystem
{
visionToAlertMultiplier=7;
noiseToAlertMultiplier=1;
noiseShotToAlertMultiplier=2;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=5;
dropDelay=1;
maxAlertValue=15;
};
class NonSpecificThreat
{
dropSpeed=5;
dropDelay=5;
maxAlertValue=70;
};
class SpecificThreat
{
dropSpeed=2;
dropDelay=8;
maxAlertValue=100;
};
class Alerted
{
dropSpeed=3;
dropDelay=10;
maxAlertValue=105;
};
};
>>>>>>> upstream/master
};
volume=1;
range=140;
rangeCurve="defaultAnimalAttenuationCurve";
};
};
class CfgSoundSets
{
class baseTiger_SoundSet
{
sound3DProcessingType="animal3DProcessingType";
volumeCurve="animalAttenuationCurve";
spatial="true";
doppler="false";
loop="false";
};
class TigerAttack_SoundSet: baseTiger_SoundSet
{
soundShaders[]=
{
<<<<<<< HEAD
"TigerAttack_SoundShader"
=======
rangeMin=10;
rangeMax=60;
rangeShotMin=100;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
>>>>>>> upstream/master
};
};
class TigerRoar_SoundSet: baseTiger_SoundSet
{
soundShaders[]=
{
<<<<<<< HEAD
"TigerRoar_SoundShader"
};
};
class TigerMumble_SoundSet: baseTiger_SoundSet
=======
class VisionTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.44999999;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=5;
visionRangeMax=60;
visionFov=1.2;
visionPeripheralRangeMin=5;
visionPeripheralRangeMax=25;
visionPeripheralFov=3.1500001;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
class Herbivores_CervusElaphusFem
>>>>>>> upstream/master
{
soundShaders[]=
{
<<<<<<< HEAD
"TigerMumble_SoundShader"
=======
radius=0.2;
height=1.4;
>>>>>>> upstream/master
};
};
};
class CfgDamages
{
class DeerBiteDamage
{
};
class WolfBiteDamage
{
bone="tongue3";
ammo="MeleeWolf";
radius=0.40000001;
duration=0.2;
};
class WolfLowBiteDamage
{
bone="chest";
ammo="MeleeWolf";
radius=0.69999999;
duration=0.5;
};
class BearBiteDamage
{
bone="tongue4";
ammo="MeleeBear";
radius=0.69999999;
duration=0.2;
};
class BearLeftPawDamage
{
bone="lflegdigit11";
ammo="MeleeBear";
radius=0.69999999;
duration=0.2;
};
class BearRightPawDamage
{
bone="rflegdigit11";
ammo="MeleeBear";
radius=0.69999999;
duration=0.2;
};
class BearBiteDamageIntimidate
{
bone="tongue4";
ammo="MeleeBearShock";
radius=0.69999999;
duration=0.2;
};
class BearLeftPawDamageIntimidate
{
bone="lflegdigit11";
ammo="MeleeBearShock";
radius=0.69999999;
duration=0.2;
};
class BearRightPawDamageIntimidate
{
bone="rflegdigit11";
ammo="MeleeBearShock";
radius=0.69999999;
duration=0.2;
};
};
class CfgAmmo
{
class MeleeDamage;
class MeleeBear: MeleeDamage
{
class DamageApplied
{
type="Melee";
bleedThreshold=0.85000002;
class Health
{
<<<<<<< HEAD
damage=25;
=======
class BehaviourCalm
{
grazeOnSpotWeight=5;
grazeWalkingWeight=5;
restWeight=5;
travelWeight=0;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=60;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=60;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
safetyIntervalMin=15;
safetyIntervalMax=15;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.17900001;
minSpeed=0.17900001;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.225;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
class CatchUpMovement
{
maxSpeed=3.4000001;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
};
class SlotCalmGrazing
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=10;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
safetyIntervalMin=15;
safetyIntervalMax=15;
safetyDurationMin=20;
safetyDurationMax=20;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.17900001;
minSpeed=0.17900001;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.225;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
class CatchUpMovement
{
maxSpeed=3.4000001;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=30;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=20;
restingDurationMin=0;
restingDurationMax=0;
travelingDurationMin=20;
travelingDurationMax=50;
safetyIntervalMin=15;
safetyIntervalMax=20;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.17900001;
minSpeed=0.17900001;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.225;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
class CatchUpMovement
{
maxSpeed=3.4000001;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
};
class SlotDrinking
{
class BehaviourCalm
{
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=100;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=100;
grazeWalkingDurationMax=100;
restingDurationMin=200;
restingDurationMax=200;
travelingDurationMin=0;
travelingDurationMax=0;
drinkingDurationMin=150;
drinkingDurationMax=150;
safetyIntervalMin=15;
safetyIntervalMax=20;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class DrinkingMovement
{
maxSpeed=1.225;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
class GrazeMovement
{
maxSpeed=0.17900001;
minSpeed=0.17900001;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.225;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
class CatchUpMovement
{
maxSpeed=3.4000001;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
};
class SlotNonSpecificThreat
{
class BehaviourSpecificThreat
{
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=4;
walkToDurationMax=8;
stayLookAtDurationMin=10;
stayLookAtDurationMax=15;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.89999998;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
>>>>>>> upstream/master
};
class Blood
{
<<<<<<< HEAD
damage=110;
=======
class BehaviourSpecificThreat
{
walkAwayWeight=10;
walkToWeight=0;
stayLookAtWeight=20;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=20;
walkToDurationMax=30;
stayLookAtDurationMin=15;
stayLookAtDurationMax=20;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=1.225;
minSpeed=0.69999999;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.70999998;
};
};
>>>>>>> upstream/master
};
class Shock
{
<<<<<<< HEAD
damage=35;
=======
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"DeerAmbush1_SoundSet",
"DeerAmbush1_tailForest_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"DeerAmbush2_SoundSet",
"DeerAmbush2_tailForest_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"DeerAmbush3_SoundSet",
"DeerAmbush3_tailForest_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"DeerAmbush4_SoundSet",
"DeerAmbush4_tailForest_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"DeerAmbush5_SoundSet",
"DeerAmbush5_tailForest_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"DeerAmbush6_SoundSet",
"DeerAmbush6_tailForest_SoundSet"
};
};
probability=1;
};
minDistanceToTargetRatio=0.5;
class RunMovement
{
maxSpeed=15;
optimalSpeed=8;
minSpeed=1;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=5;
maxAngleSpeed=70;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=1.4;
};
class RunMovementInjured1
{
maxSpeed=1.196;
optimalSpeed=1.196;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=1.4;
};
class RunMovementInjured2
{
maxSpeed=0.1;
optimalSpeed=0;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=1.4;
};
};
};
class AlertSystem
{
visionToAlertMultiplier=7;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=5;
dropDelay=1;
maxAlertValue=25;
};
class NonSpecificThreat
{
dropSpeed=5;
dropDelay=10;
maxAlertValue=50;
};
class SpecificThreat
{
dropSpeed=2;
dropDelay=8;
maxAlertValue=75;
};
class Alerted
{
dropSpeed=10;
dropDelay=10;
maxAlertValue=100;
};
>>>>>>> upstream/master
};
additionAnimalMeleeMultiplier=5;
};
soundGroundSoft1[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_01",
0.5,
1,
60
=======
rangeMin=20;
rangeMax=80;
rangeShotMin=100;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
>>>>>>> upstream/master
};
soundGroundSoft2[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_02",
0.5,
1,
60
};
soundGroundSoft3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_03",
0.5,
1,
60
};
soundGroundSoft4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_04",
0.5,
1,
60
=======
class VisionTeamMultipliers
{
BigGame=1;
Zombies=1;
Player=1;
Predator=10;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.5;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=5;
visionRangeMax=80;
visionFov=2;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=30;
visionPeripheralFov=3.2;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
class Herbivores_OvisAries
{
HeadLookBoneName="pin_lookat";
teamName="BigGame";
defaultGroupTemplateName="DZSheepGroupBeh";
class PathAgent
{
radius=0.2;
height=1;
};
class BehaviourHLDomestic
{
instantAlertRangeMin=20;
instantAlertRangeMax=40;
instantAlertStrength=9;
agentPathLength=30;
agentPathUpdateDelta=1;
agentPathMinLength=2;
class SlotCalmResting
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=10;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=40;
grazeOnSpotDurationMax=120;
grazeWalkingDurationMin=40;
grazeWalkingDurationMax=120;
restingDurationMin=60;
restingDurationMax=180;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.090000004;
minSpeed=0.090000004;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
class CatchUpMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
};
};
class SlotCalmGrazing
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=10;
travelWeight=0;
grazeOnSpotDurationMin=40;
grazeOnSpotDurationMax=120;
grazeWalkingDurationMin=40;
grazeWalkingDurationMax=120;
restingDurationMin=60;
restingDurationMax=180;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.090000004;
minSpeed=0.090000004;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
class CatchUpMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
};
};
class SlotDrinking
{
class BehaviourCalm
{
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=10;
restingDurationMin=0;
restingDurationMax=0;
travelingDurationMin=20;
travelingDurationMax=20;
drinkingDurationMin=15;
drinkingDurationMax=20;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class DrinkingUpMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
class GrazeMovement
{
maxSpeed=0.090000004;
minSpeed=0.090000004;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
class CatchUpMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=50;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=50;
restingDurationMin=20;
restingDurationMax=25;
travelingDurationMin=20;
travelingDurationMax=40;
safetyDurationMin=15;
safetyDurationMax=35;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.090999998;
minSpeed=0.090999998;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
pathFilter="NoJumping";
};
class TravelingMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
class CatchUpMovement
{
maxSpeed=0.55000001;
minSpeed=0.30000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
};
};
class SlotNonSpecificThreat
{
class SlotEvents
{
class EventsDuring
{
};
};
class BehaviourSpecificThreat
{
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=1;
walkAwayDurationMin=5;
walkAwayDurationMax=15;
walkToDurationMin=5;
walkToDurationMax=15;
stayLookAtDurationMin=10;
stayLookAtDurationMax=20;
stayDurationMin=20;
stayDurationMax=30;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.55000001;
minSpeed=0.55000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=1.9;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="NoJumping";
useStartAnimation="true";
startAnimationMaxSpeed=0.31;
};
};
};
class SlotSpecificThreat
{
class SlotEvents
{
class EventsEntering
{
};
class EventsDuring
{
class PeriodicEventRepeatAlert_OvisAriesSlotSpec
{
repeatTimeMin=1;
repeatTimeMax=4;
class AlertImpulseActionRepeatAlert_OvisAriesSlotSpec
{
value=0;
range=10;
};
};
};
};
class BehaviourSpecificThreat
{
walkAwayWeight=10;
walkToWeight=0;
stayLookAtWeight=0;
stayWeight=0;
walkAwaySpreadAngle=0.5;
walkAwayInitialAngle=1;
walkToSpreadAngle=1.5;
walkToInitialAngle=1;
walkAwayDurationMin=5;
walkAwayDurationMax=15;
walkToDurationMin=5;
walkToDurationMax=15;
stayLookAtDurationMin=10;
stayLookAtDurationMax=20;
stayDurationMin=20;
stayDurationMax=30;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.55000001;
minSpeed=0.55000001;
maxSpeedRange=30;
optimalSpeedRange=20;
acceleration=4;
maxAngleSpeed=10;
slowRadius=8;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.31;
};
};
};
class SlotAlerted
{
class SlotEvents
{
class EventsEntering
{
class OneTimeEventSendAlert_OvisAriesSlotAlert
{
class AlertImpulseActionSendAlert_OvisAriesSlotAlert
{
value=50;
range=10;
};
};
};
class EventsDuring
{
class PeriodicEventRepeatAlert_OvisAriesSlotAlert
{
repeatTimeMin=1;
repeatTimeMax=4;
class AlertImpulseActionRepeatAlert_OvisAriesSlotAlert
{
value=0;
range=10;
};
};
};
};
class BehaviourGoToTarget
{
class Movement
{
maxSpeed=8.6300001;
optimalSpeed=6;
minSpeed=0.30000001;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=60;
slowRadius=6;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.30000001;
};
class RunMovementInjured1
{
maxSpeed=0.89999998;
optimalSpeed=0.40000001;
minSpeed=0.30000001;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=1;
maxAngleSpeed=30;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=0.30000001;
};
class RunMovementInjured2
{
maxSpeed=0;
optimalSpeed=0;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=1;
maxAngleSpeed=30;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="NoJumping";
startAnimationMaxSpeed=1.4;
};
};
};
class AlertSystem
{
visionToAlertMultiplier=60;
noiseToAlertMultiplier=0.30000001;
noiseShotToAlertMultiplier=1.2;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=8;
dropDelay=1;
maxAlertValue=5;
};
class NonSpecificThreat
{
dropSpeed=8;
dropDelay=2;
maxAlertValue=70;
};
class SpecificThreat
{
dropSpeed=7;
dropDelay=2;
maxAlertValue=110;
};
class Alerted
{
dropSpeed=6;
dropDelay=0.1;
maxAlertValue=120;
};
};
>>>>>>> upstream/master
};
soundGroundSoft5[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_05",
0.5,
1,
60
=======
rangeMin=10;
rangeMax=30;
rangeShotMin=5;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=1;
Zombies=1;
Player=1;
};
>>>>>>> upstream/master
};
soundGroundSoft6[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_06",
0.5,
1,
60
};
soundGroundSoft7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_07",
0.5,
1,
60
};
soundGroundSoft8[]=
{
=======
class VisionTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.5;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=5;
visionRangeMin=3;
visionRangeMax=9;
visionFov=1.6;
visionPeripheralRangeMin=4;
visionPeripheralRangeMax=6;
visionPeripheralFov=6.2800002;
visionNightMinMult=1;
visionNightMaxMult=1;
visionRainMinMult=1;
visionRainMaxMult=1;
visionFogMinMult=1;
visionFogMaxMult=1;
};
};
class Predators_Wolf
{
HeadLookBoneName="pin_lookat";
teamName="Predator";
defaultGroupTemplateName="DZWolfGroupBeh";
class PathAgent
{
radius=0.30000001;
height=1;
lengthRadius=0.69999999;
};
class BehaviourHLPredator
{
instantAlertRangeMin=0;
instantAlertRangeMax=0;
instantAlertStrength=0;
proximityAttackRange=2.5;
attackCooldown=3;
class SlotCalmGrazing
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=500;
grazeWalkingDurationMax=500;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=15;
travelingDurationMax=30;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotSiege
{
class BehaviourSiege
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfPant0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant2_SoundSet"
};
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfPant3_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant4_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant5_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfPant6_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfPant7_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfGrowl0_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfGrowl1_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfGrowl2_SoundSet"
};
};
probability=0.40000001;
RepeatTimeMin=5;
RepeatTimeMax=15;
RepeatEnabled="true";
};
innerRadius=7;
innerRadiusMin=4.5;
innerRadiusMax=10;
outerRadius=16;
directionChangeTimeMin=7;
directionChangeTimeMax=25;
PlayerFOV=1.4;
preferPlayerFOVCooldown=1;
attackDistance=3.5;
class InnerCircleMovement
{
maxSpeed=6.3000002;
optimalSpeed=6.3000002;
optimalSpeedRange=1;
minSpeed=1;
acceleration=7;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=2;
maxSpeedRange=2;
pathFilter="WolfOnHunt";
startAnimationMaxSpeed=0.54000002;
};
class Movement
{
maxSpeed=9;
optimalSpeed=6.3000002;
optimalSpeedRange=15;
minSpeed=1;
acceleration=10;
maxAngleSpeed=180;
slowRadius=0;
stopRadius=2;
maxSpeedRange=20;
pathFilter="WolfOnOuterCircle";
startAnimationMaxSpeed=0.54000002;
};
class AttackMovement
{
maxSpeed=12.175;
optimalSpeed=12;
optimalSpeedRange=6;
minSpeed=0.80000001;
acceleration=10;
maxAngleSpeed=180;
slowRadius=2;
stopRadius=3;
maxSpeedRange=30;
pathFilter="WolfOnHunt";
};
};
};
class SlotEating
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=20;
eatingWeight=20;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=15;
restingDurationMin=15;
restingDurationMax=25;
travelingDurationMin=15;
travelingDurationMax=30;
eatingDurationMin=15;
eatingDurationMax=25;
safetyDurationMin=10;
safetyDurationMax=20;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotHunting
{
class BehaviourHunt
{
attackRange=3.5;
followingRadius=15;
followingRadiusReqroupCooldownMin=5;
followingRadiusReqroupCooldownMax=15;
followingRadiusRegroupMinSpeed=1.5;
predictFollowingMinDistance=10;
minDistanceToTargetRatio=0.30000001;
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfBark3_0_SoundSet"
};
};
probability=0.30000001;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfBark2_0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfBark2_1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfBark2_2_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfBark2_3_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfBark2_4_SoundSet"
};
};
probability=1;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
class Movement
{
maxSpeed=10;
optimalSpeed=9.5;
minSpeed=1;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
maxSpeedRange=15;
optimalSpeedRange=5;
pathFilter="WolfOnHunt";
};
class MovementAttack
{
maxSpeed=12.175;
optimalSpeed=12.175;
minSpeed=6;
acceleration=20;
maxAngleSpeed=360;
slowRadius=0;
stopRadius=0;
maxSpeedRange=3;
optimalSpeedRange=1;
pathFilter="WolfOnHunt";
};
};
};
class SlotCalmResting
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=50;
grazeWalkingWeight=50;
restWeight=50;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=25;
restingDurationMin=25;
restingDurationMax=35;
travelingDurationMin=15;
travelingDurationMax=30;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=25;
grazeWalkingDurationMax=35;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=10;
travelingDurationMax=50;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
};
};
class SlotAttracted
{
class BehaviourCalm
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfHowls1_SoundSet",
"WolfHowls1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowls2_SoundSet",
"WolfHowls2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowls3_SoundSet",
"WolfHowls3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowls4_SoundSet",
"WolfHowls4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls8_tailDistant_SoundSet"
};
};
probability=0.89999998;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfHowl1_SoundSet",
"WolfHowl1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowl2_SoundSet",
"WolfHowl2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowl3_SoundSet",
"WolfHowl3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowl4_SoundSet",
"WolfHowl4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl8_tailDistant_SoundSet"
};
};
probability=0.5;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=5;
grazeWalkingDurationMax=10;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=50;
travelingDurationMax=100;
grazeWalkingSpeed=0.54400003;
travelingWalkingSpeed=0.78200001;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
};
};
class SlotFireplace
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyIntervalMin=30;
safetyIntervalMax=40;
safetyDurationMin=5;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotScared
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfGroans1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroans2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroans3_SoundSet"
};
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfGroan1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroan2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroan3_SoundSet"
};
};
probability=0.30000001;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
class RunMovement
{
maxSpeed=12.175;
optimalSpeed=6.3899999;
minSpeed=1;
acceleration=2;
maxAngleSpeed=360;
slowRadius=4;
stopRadius=0;
maxSpeedRange=15;
optimalSpeedRange=10;
pathFilter="DeerOnRun";
};
};
};
class AlertSystem
{
visionToAlertMultiplier=10;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=200;
class Calm
{
dropSpeed=3;
dropDelay=2;
maxAlertValue=30;
};
class Alerted
{
dropSpeed=11;
dropDelay=0;
maxAlertValue=100;
};
class AlertedExtra
{
dropSpeed=25;
dropDelay=10;
maxAlertValue=500;
};
};
};
class NoiseSystemParams
{
rangeMin=25;
rangeMax=100;
rangeShotMin=0;
rangeShotMax=50;
class NoiseStrengthTeamMultipliers
{
BigGame=0.40000001;
Zombies=0.60000002;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=0.60000002;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.60000002;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=100;
visionRangeMax=200;
visionFov=1.8;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=16;
visionPeripheralFov=6.1999998;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
class Herbivores_CervusElaphus
{
HeadLookBoneName="pin_lookat";
teamName="BigGame";
defaultGroupTemplateName="DZDeerGroupBeh";
class PathAgent
{
radius=0.25;
height=1.8;
};
class BehaviourHLDeer
{
instantAlertRangeMin=20;
instantAlertRangeMax=50;
instantAlertStrength=7;
class SlotCalmResting
{
class BehaviourCalm
{
grazeOnSpotWeight=5;
grazeWalkingWeight=5;
restWeight=5;
travelWeight=0;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=60;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=60;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=25;
safetyDurationMax=40;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.36;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
maxSpeed=5;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotCalmGrazing
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
safetyDurationMin=25;
safetyDurationMax=40;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.36;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
maxSpeed=5;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=20;
grazeOnSpotDurationMax=30;
grazeWalkingDurationMin=20;
grazeWalkingDurationMax=30;
restingDurationMin=0;
restingDurationMax=0;
travelingDurationMin=20;
travelingDurationMax=30;
safetyDurationMin=25;
safetyDurationMax=40;
safetyLookAngleMin=0.1;
safetyLookAngleMax=0.40000001;
safetyLookAngleChangeInterval=5;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.36;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
mmaxSpeed=5;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotDrinking
{
class BehaviourCalm
{
grazeOnSpotWeight=10;
grazeWalkingWeight=10;
restWeight=10;
travelWeight=0;
drinkingWeight=20;
grazeOnSpotDurationMin=100;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=100;
grazeWalkingDurationMax=100;
restingDurationMin=200;
restingDurationMax=200;
travelingDurationMin=0;
travelingDurationMax=0;
drinkingDurationMin=150;
drinkingDurationMax=150;
safetyDurationMin=25;
safetyDurationMax=40;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class DrinkingMovement
{
maxSpeed=1.36;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=5;
slowRadius=0;
stopRadius=2;
};
class TravelingMovement
{
maxSpeed=1.36;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
class CatchUpMovement
{
mmaxSpeed=5;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotNonSpecificThreat
{
class BehaviourSpecificThreat
{
walkAwayWeight=0;
walkToWeight=10;
stayLookAtWeight=10;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=4;
walkToDurationMax=8;
stayLookAtDurationMin=10;
stayLookAtDurationMax=15;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=0.85000002;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotSpecificThreat
{
class BehaviourSpecificThreat
{
walkAwayWeight=10;
walkToWeight=0;
stayLookAtWeight=20;
stayWeight=0;
walkAwaySpreadAngle=1.5;
walkAwayInitialAngle=2;
walkToSpreadAngle=1.5;
walkToInitialAngle=2;
walkAwayDurationMin=5;
walkAwayDurationMax=10;
walkToDurationMin=20;
walkToDurationMax=30;
stayLookAtDurationMin=15;
stayLookAtDurationMax=20;
stayDurationMin=5;
stayDurationMax=15;
pathLength=10;
class WalkingMovement
{
maxSpeed=1.359;
minSpeed=0.80000001;
acceleration=5;
maxAngleSpeed=10;
slowRadius=0;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="DeerOnRun";
useStartAnimation="true";
startAnimationMaxSpeed=0.81;
};
};
};
class SlotAlerted
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"DeerAmbush1_SoundSet",
"DeerAmbush1_tailForest_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"DeerAmbush2_SoundSet",
"DeerAmbush2_tailForest_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"DeerAmbush3_SoundSet",
"DeerAmbush3_tailForest_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"DeerAmbush4_SoundSet",
"DeerAmbush4_tailForest_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"DeerAmbush5_SoundSet",
"DeerAmbush5_tailForest_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"DeerAmbush6_SoundSet",
"DeerAmbush6_tailForest_SoundSet"
};
};
probability=1;
};
minDistanceToTargetRatio=0.5;
class RunMovement
{
maxSpeed=15;
optimalSpeed=8;
minSpeed=1;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=5;
maxAngleSpeed=70;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=1.4;
};
class RunMovementInjured1
{
maxSpeed=1.35;
optimalSpeed=1.35;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=1.4;
};
class RunMovementInjured2
{
maxSpeed=0.1;
optimalSpeed=0;
minSpeed=0;
maxSpeedRange=30;
optimalSpeedRange=25;
acceleration=2;
maxAngleSpeed=1;
slowRadius=10;
stopRadius=4;
slowToTurn="true";
smoothAcceleration="true";
useStartAnimation="true";
pathFilter="DeerOnRun";
startAnimationMaxSpeed=1.4;
};
};
};
class AlertSystem
{
visionToAlertMultiplier=7;
noiseToAlertMultiplier=1;
noiseShotToAlertMultiplier=2;
damageToAlertMultiplier=1000000;
class Calm
{
dropSpeed=5;
dropDelay=1;
maxAlertValue=25;
};
class NonSpecificThreat
{
dropSpeed=5;
dropDelay=10;
maxAlertValue=50;
};
class SpecificThreat
{
dropSpeed=2;
dropDelay=10;
maxAlertValue=75;
};
class Alerted
{
dropSpeed=10;
dropDelay=10;
maxAlertValue=100;
};
};
};
class NoiseSystemParams
{
rangeMin=20;
rangeMax=80;
rangeShotMin=100;
rangeShotMax=300;
class NoiseStrengthTeamMultipliers
{
BigGame=0.80000001;
Zombies=1;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=1;
Zombies=1;
Player=1;
Predator=10;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.5;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=5;
visionRangeMax=80;
visionFov=2;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=30;
visionPeripheralFov=3.2;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
class Infected
{
name="zombie";
HeadLookBoneName="lookat";
teamName="Zombies";
class BehaviourHLZombie
{
class MovementWalk
{
maxSpeed=1.5;
minSpeed=0;
acceleration=5;
maxAngleSpeed=180;
slowRadius=0;
stopRadius=0.5;
pathFilter="ZombieCalm";
};
class MovementRun
{
maxSpeed=3;
minSpeed=0;
acceleration=15;
maxAngleSpeed=120;
slowRadius=0;
goalRadius=1.5;
stopRadius=1.7;
useStartAnimation="false";
pathFilter="ZombieAlerted";
};
class MovementSprint
{
maxSpeed=9;
minSpeed=0;
acceleration=27;
maxAngleSpeed=180;
maxSpeedRange=9;
slowRadius=3.2;
goalRadius=1.5;
goalSpeed=7.1999998;
stopRadius=1.7;
waypointRadius=1.5;
useStartAnimation="false";
startAnimationMaxSpeed=0;
slowToTurn="false";
smoothAcceleration="true";
pathFilter="ZombieAlerted";
};
class SlotCalm
{
class BehaviourZombieCalm
{
StandingDurationMin=4;
StandingDurationMax=8;
WalkingDurationMin=4;
WalkingDurationMax=12;
MinLookTime=1;
MaxLookTime=2;
IsAttractMode="false";
class SoundsDuring
{
class Sound1
{
moveWithEntity="true";
};
probability=0.80000001;
RepeatTimeMin=9;
RepeatTimeMax=15;
RepeatEnabled="true";
};
};
};
class SlotAlerted
{
class BehaviourZombieAlerted
{
maxTimeInDisturbedState=5;
alertToAttract=0.75;
fightStateEnterDistance=2;
fightStateExitDistance=3;
fightStateEnterOrientAngleDiff=160;
fightStateExitOrientAngleDiff=160;
disturbedTargetHistoryLength=20;
disturbedVisionUtilityWeight=1;
disturbedNoiseUtilityWeight=1;
disturbedDamageUtilityWeight=0;
attractedTargetHistoryLength=20;
attractedVisionUtilityWeight=1;
attractedNoiseUtilityWeight=1;
attractedDamageUtilityWeight=1;
chaseTargetHistoryLength=20;
chaseVisionUtilityWeight=1;
chaseNoiseUtilityWeight=1;
chaseDamageUtilityWeight=1;
class SoundsEntering
{
class Sound1
{
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
};
probability=1;
RepeatTimeMin=3.9000001;
RepeatTimeMax=4.0999999;
RepeatEnabled="true";
};
noiseMakeAlertPeriod=3;
class NoiseMakeAlert
{
strength=60;
type="sound";
};
};
};
class AlertSystem
{
visionToAlertMultiplier=20;
noiseToAlertMultiplier=0.80000001;
damageToAlertMultiplier=10000;
noiseShotToAlertMultiplier=1.7;
class Calm
{
DropSpeed=3;
DropDelay=2;
MaxAlertValue=20;
};
class Alerted
{
DropSpeed=1;
DropDelay=10;
MaxAlertValue=100;
};
};
staminaDepletionSpeed=5;
staminaRechargeSpeed=10;
};
class TargetSystemDZBase
{
visionProximityRange=2.5;
visionProximityStrengthMult=3;
visionCloseRange=8;
visionCloseHeight=1.8;
visionCloseStrengthMult=3;
visionRangeMin=20;
visionRangeMax=40;
visionFov=1;
visionPeripheralRangeMin=5;
visionPeripheralRangeMax=20;
visionPeripheralFov=2.3;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1;
visionNightMinMult=1;
visionNightMaxMult=0.40000001;
visionRainMinMult=1;
visionRainMaxMult=0.5;
visionFogMinMult=1;
visionFogMaxMult=0.5;
};
class NoiseSystemParams
{
rangeMin=3;
rangeMax=35;
rangeShotMin=25;
rangeShotMax=200;
radiusMin=5;
radiusMax=20;
radiusShotMin=10;
radiusShotMax=50;
class NoiseStrengthTeamMultipliers
{
BigGame=1;
Zombies=1;
Player=1;
};
};
};
class InfectedFemale: Infected
{
class BehaviourHLZombie: BehaviourHLZombie
{
class SlotCalm: SlotCalm
{
class BehaviourZombieCalm: BehaviourZombieCalm
{
class SoundsDuring: SoundsDuring
{
class Sound1: Sound1
{
moveWithEntity="true";
};
};
};
};
class SlotAlerted: SlotAlerted
{
class BehaviourZombieAlerted: BehaviourZombieAlerted
{
class SoundsEntering: SoundsEntering
{
class Sound1: Sound1
{
};
};
class SoundsDuring: SoundsDuring
{
class Sound1: Sound1
{
};
};
};
};
};
};
class InfectedMale: Infected
{
class BehaviourHLZombie: BehaviourHLZombie
{
class SlotCalm: SlotCalm
{
class BehaviourZombieCalm: BehaviourZombieCalm
{
class SoundsDuring: SoundsDuring
{
class Sound1: Sound1
{
moveWithEntity="true";
};
};
};
};
class SlotAlerted: SlotAlerted
{
class BehaviourZombieAlerted: BehaviourZombieAlerted
{
class SoundsEntering: SoundsEntering
{
class Sound1: Sound1
{
};
};
class SoundsDuring: SoundsDuring
{
class Sound1: Sound1
{
};
};
};
};
};
};
class Predators_Shred
{
HeadLookBoneName="pin_lookat";
teamName="Shred";
defaultGroupTemplateName="ShredGroupBeh";
class PathAgent
{
radius=0.30000001;
height=1;
lengthRadius=0.69999999;
};
class BehaviourHLPredator
{
instantAlertRangeMin=0;
instantAlertRangeMax=0;
instantAlertStrength=0;
proximityAttackRange=2.5;
attackCooldown=3;
class SlotCalmGrazing
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=500;
grazeWalkingDurationMax=500;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=15;
travelingDurationMax=30;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotSiege
{
class BehaviourSiege
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfPant0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant2_SoundSet"
};
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfPant3_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfPant4_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfPant5_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfPant6_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfPant7_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfGrowl0_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfGrowl1_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfGrowl2_SoundSet"
};
};
probability=0.40000001;
RepeatTimeMin=5;
RepeatTimeMax=15;
RepeatEnabled="true";
};
innerRadius=7;
innerRadiusMin=4.5;
innerRadiusMax=10;
outerRadius=16;
directionChangeTimeMin=7;
directionChangeTimeMax=25;
PlayerFOV=1.4;
preferPlayerFOVCooldown=1;
attackDistance=3.5;
class InnerCircleMovement
{
maxSpeed=6.3000002;
optimalSpeed=6.3000002;
optimalSpeedRange=1;
minSpeed=1;
acceleration=7;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=2;
maxSpeedRange=2;
pathFilter="WolfOnHunt";
startAnimationMaxSpeed=0.54000002;
};
class Movement
{
maxSpeed=9;
optimalSpeed=6.3000002;
optimalSpeedRange=15;
minSpeed=1;
acceleration=10;
maxAngleSpeed=180;
slowRadius=0;
stopRadius=2;
maxSpeedRange=20;
pathFilter="WolfOnOuterCircle";
startAnimationMaxSpeed=0.54000002;
};
class AttackMovement
{
maxSpeed=12.175;
optimalSpeed=12;
optimalSpeedRange=6;
minSpeed=0.80000001;
acceleration=10;
maxAngleSpeed=180;
slowRadius=2;
stopRadius=3;
maxSpeedRange=30;
pathFilter="WolfOnHunt";
};
};
};
class SlotEating
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=20;
eatingWeight=20;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=10;
grazeWalkingDurationMax=15;
restingDurationMin=15;
restingDurationMax=25;
travelingDurationMin=15;
travelingDurationMax=30;
eatingDurationMin=15;
eatingDurationMax=25;
safetyDurationMin=10;
safetyDurationMax=20;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotHunting
{
class BehaviourHunt
{
attackRange=3.5;
followingRadius=15;
followingRadiusReqroupCooldownMin=5;
followingRadiusReqroupCooldownMax=15;
followingRadiusRegroupMinSpeed=1.5;
predictFollowingMinDistance=10;
minDistanceToTargetRatio=0.30000001;
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfBark3_0_SoundSet"
};
};
probability=0.30000001;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfBark2_0_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfBark2_1_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfBark2_2_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfBark2_3_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfBark2_4_SoundSet"
};
};
probability=1;
RepeatTimeMin=10;
RepeatTimeMax=30;
RepeatEnabled="true";
};
class Movement
{
maxSpeed=10;
optimalSpeed=9.5;
minSpeed=1;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
maxSpeedRange=15;
optimalSpeedRange=5;
pathFilter="WolfOnHunt";
};
class MovementAttack
{
maxSpeed=12.175;
optimalSpeed=12.175;
minSpeed=6;
acceleration=20;
maxAngleSpeed=360;
slowRadius=0;
stopRadius=0;
maxSpeedRange=3;
optimalSpeedRange=1;
pathFilter="WolfOnHunt";
};
};
};
class SlotCalmResting
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=50;
grazeWalkingWeight=50;
restWeight=50;
travelWeight=0;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=15;
grazeWalkingDurationMax=25;
restingDurationMin=25;
restingDurationMax=35;
travelingDurationMin=15;
travelingDurationMax=30;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.1;
safetyLookAngleMax=1.5;
safetyLookAngleChangeInterval=7;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotCalmTravelling
{
class BehaviourCalm
{
travelingMode="true";
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=10;
grazeOnSpotDurationMax=20;
grazeWalkingDurationMin=25;
grazeWalkingDurationMax=35;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=10;
travelingDurationMax=50;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=4;
stopRadius=2;
slowToTurn="true";
smoothAcceleration="true";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
slowToTurn="true";
smoothAcceleration="true";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=2;
stopRadius=1;
pathFilter="WolfOnHunt";
};
};
};
class SlotAttracted
{
class BehaviourCalm
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfHowls1_SoundSet",
"WolfHowls1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowls2_SoundSet",
"WolfHowls2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowls3_SoundSet",
"WolfHowls3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowls4_SoundSet",
"WolfHowls4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowls5_SoundSet",
"WolfHowls7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowls6_SoundSet",
"WolfHowls8_tailDistant_SoundSet"
};
};
probability=0.89999998;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfHowl1_SoundSet",
"WolfHowl1_tailDistant_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfHowl2_SoundSet",
"WolfHowl2_tailDistant_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfHowl3_SoundSet",
"WolfHowl3_tailDistant_SoundSet"
};
};
class Sound4
{
sounds[]=
{
"WolfHowl4_SoundSet",
"WolfHowl4_tailDistant_SoundSet"
};
};
class Sound5
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl5_tailDistant_SoundSet"
};
};
class Sound6
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl6_tailDistant_SoundSet"
};
};
class Sound7
{
sounds[]=
{
"WolfHowl5_SoundSet",
"WolfHowl7_tailDistant_SoundSet"
};
};
class Sound8
{
sounds[]=
{
"WolfHowl6_SoundSet",
"WolfHowl8_tailDistant_SoundSet"
};
};
probability=0.5;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=0;
travelWeight=50;
grazeOnSpotDurationMin=5;
grazeOnSpotDurationMax=10;
grazeWalkingDurationMin=5;
grazeWalkingDurationMax=10;
restingDurationMin=5;
restingDurationMax=10;
travelingDurationMin=50;
travelingDurationMax=100;
grazeWalkingSpeed=0.54400003;
travelingWalkingSpeed=0.78200001;
safetyDurationMin=10;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=5;
stopRadius=3;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class CatchUpMovement
{
maxSpeed=6.3800001;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
pathFilter="WolfOnHunt";
};
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
};
};
class SlotFireplace
{
class BehaviourCalm
{
grazeOnSpotWeight=20;
grazeWalkingWeight=20;
restWeight=20;
travelWeight=0;
grazeOnSpotDurationMin=50;
grazeOnSpotDurationMax=100;
grazeWalkingDurationMin=50;
grazeWalkingDurationMax=100;
restingDurationMin=50;
restingDurationMax=150;
travelingDurationMin=0;
travelingDurationMax=0;
grazeWalkingSpeed=0.2;
travelingWalkingSpeed=1.36;
safetyIntervalMin=30;
safetyIntervalMax=40;
safetyDurationMin=5;
safetyDurationMax=10;
safetyLookAngleMin=0.30000001;
safetyLookAngleMax=0.69999999;
safetyLookAngleChangeInterval=3;
class GrazeMovement
{
maxSpeed=0.25;
minSpeed=0.25;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
};
class TravelingMovement
{
maxSpeed=2.8499999;
minSpeed=0.77999997;
acceleration=5;
maxAngleSpeed=90;
slowRadius=0;
stopRadius=0.5;
slowToTurn="true";
smoothAcceleration="true";
};
};
};
class SlotScared
{
class BehaviourFleeFromTargets
{
class SoundsEntering
{
class Sound1
{
sounds[]=
{
"WolfGroans1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroans2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroans3_SoundSet"
};
};
probability=1;
};
class SoundsDuring
{
class Sound1
{
sounds[]=
{
"WolfGroan1_SoundSet"
};
};
class Sound2
{
sounds[]=
{
"WolfGroan2_SoundSet"
};
};
class Sound3
{
sounds[]=
{
"WolfGroan3_SoundSet"
};
};
probability=0.30000001;
RepeatTimeMin=5;
RepeatTimeMax=25;
RepeatEnabled="true";
};
class RunMovement
{
maxSpeed=12.175;
optimalSpeed=6.3899999;
minSpeed=1;
acceleration=2;
maxAngleSpeed=360;
slowRadius=4;
stopRadius=0;
maxSpeedRange=15;
optimalSpeedRange=10;
pathFilter="DeerOnRun";
};
};
};
class AlertSystem
{
visionToAlertMultiplier=10;
noiseToAlertMultiplier=1;
damageToAlertMultiplier=200;
class Calm
{
dropSpeed=3;
dropDelay=2;
maxAlertValue=30;
};
class Alerted
{
dropSpeed=11;
dropDelay=0;
maxAlertValue=100;
};
class AlertedExtra
{
dropSpeed=25;
dropDelay=10;
maxAlertValue=500;
};
};
};
class NoiseSystemParams
{
rangeMin=25;
rangeMax=100;
rangeShotMin=0;
rangeShotMax=50;
class NoiseStrengthTeamMultipliers
{
BigGame=0.40000001;
Zombies=0.60000002;
Player=1;
};
};
class TargetSystemDZBase
{
class VisionTeamMultipliers
{
BigGame=0.60000002;
Zombies=1;
Player=1;
};
visionManSizeStand=1;
visionManSizeCrouch=0.80000001;
visionManSizeProne=0.60000002;
visionAngularSpeedMin=0.1;
visionAngularSpeedMax=0.5;
visionAngularSpeedMaxMult=1.5;
visionRangeMin=100;
visionRangeMax=200;
visionFov=1.8;
visionPeripheralRangeMin=1;
visionPeripheralRangeMax=16;
visionPeripheralFov=6.1999998;
visionNightMinMult=1;
visionNightMaxMult=0.75;
visionRainMinMult=1;
visionRainMaxMult=0.89999998;
visionFogMinMult=1;
visionFogMaxMult=0.69999999;
};
};
};
class CfgDamages
{
class DeerBiteDamage
{
};
class WolfBiteDamage
{
bone="tongue3";
ammo="MeleeWolf";
radius=0.40000001;
duration=0.2;
};
class WolfLowBiteDamage
{
bone="chest";
ammo="MeleeWolf";
radius=0.69999999;
duration=0.5;
};
class BearBiteDamage
{
bone="tongue4";
ammo="MeleeBear";
radius=0.69999999;
duration=0.2;
};
class BearLeftPawDamage
{
bone="lflegdigit11";
ammo="MeleeBear";
radius=0.69999999;
duration=0.2;
};
class BearRightPawDamage
{
bone="rflegdigit11";
ammo="MeleeBear";
radius=0.69999999;
duration=0.2;
};
class BearBiteDamageIntimidate
{
bone="tongue4";
ammo="MeleeBearShock";
radius=0.69999999;
duration=0.2;
};
class BearLeftPawDamageIntimidate
{
bone="lflegdigit11";
ammo="MeleeBearShock";
radius=0.69999999;
duration=0.2;
};
class BearRightPawDamageIntimidate
{
bone="rflegdigit11";
ammo="MeleeBearShock";
radius=0.69999999;
duration=0.2;
};
};
class CfgAmmo
{
class MeleeDamage;
class MeleeBear: MeleeDamage
{
class DamageApplied
{
type="Melee";
bleedThreshold=0.85000002;
class Health
{
damage=25;
};
class Blood
{
damage=110;
};
class Shock
{
damage=35;
};
additionAnimalMeleeMultiplier=5;
};
soundGroundSoft1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_01",
0.5,
1,
60
};
soundGroundSoft2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_02",
0.5,
1,
60
};
soundGroundSoft3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_03",
0.5,
1,
60
};
soundGroundSoft4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_04",
0.5,
1,
60
};
soundGroundSoft5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_05",
0.5,
1,
60
};
soundGroundSoft6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_06",
0.5,
1,
60
};
soundGroundSoft7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_07",
0.5,
1,
60
};
soundGroundSoft8[]=
{
>>>>>>> upstream/master
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_08",
0.5,
1,
60
};
soundGroundHard1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_01",
0.5,
1,
80
};
soundGroundHard2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_02",
0.5,
1,
80
};
soundGroundHard3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_03",
0.5,
1,
80
};
soundGroundHard4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_04",
0.5,
1,
80
};
soundGroundHard5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_05",
0.5,
1,
80
};
soundGroundHard6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_06",
0.5,
1,
80
};
soundGroundHard7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_07",
0.5,
1,
80
};
soundGroundHard8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_08",
0.5,
1,
80
};
soundMetal1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
0.5,
1,
80
};
soundMetal2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
0.5,
1,
80
};
soundMetal3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
0.5,
1,
80
};
soundMetal4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
0.5,
1,
80
};
soundMetal5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
0.5,
1,
80
};
soundMetal6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
0.5,
1,
80
};
soundMetal7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
0.5,
1,
80
};
soundMetal8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
0.5,
1,
80
};
soundHitGlass1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_01",
0.5,
1,
100
};
soundHitGlass2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_02",
0.5,
1,
100
};
soundHitGlass3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_03",
0.5,
1,
100
};
soundHitGlass4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_04",
0.5,
1,
100
};
soundHitGlass5[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_05",
0.5,
1,
100
};
soundHitGlass6[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_06",
0.5,
1,
100
};
soundGlassArmored1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_01",
0.5,
1,
60
};
soundGlassArmored2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_02",
0.5,
1,
60
};
soundGlassArmored3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_03",
0.5,
1,
60
};
soundGlassArmored4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_04",
0.5,
1,
60
};
soundGlassArmored5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_05",
0.5,
1,
60
};
soundGlassArmored6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_06",
0.5,
1,
60
};
soundVehiclePlate1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
0.5,
1,
80
};
soundVehiclePlate2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
0.5,
1,
80
};
soundVehiclePlate3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
0.5,
1,
80
};
soundVehiclePlate4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
0.5,
1,
80
};
soundVehiclePlate5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
0.5,
1,
80
};
soundVehiclePlate6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
0.5,
1,
80
};
soundVehiclePlate7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
0.5,
1,
80
};
soundVehiclePlate8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
0.5,
1,
80
};
soundWood1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_01",
0.5,
1,
80
};
soundWood2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_02",
0.5,
1,
80
};
soundWood3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_03",
0.5,
1,
80
};
soundWood4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_04",
0.5,
1,
80
};
soundWood5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_05",
0.5,
1,
80
};
soundWood6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_06",
0.5,
1,
80
};
soundWood7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_07",
0.5,
1,
80
};
soundWood8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_08",
0.5,
1,
80
};
soundHitBody1[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_1",
0.56234133,
1,
60
};
soundHitBody2[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_2",
0.56234133,
1,
60
};
soundHitBody3[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_3",
0.56234133,
1,
60
};
soundHitBody4[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_4",
0.56234133,
1,
60
};
soundHitBody5[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_5",
0.56234133,
1,
60
};
soundHitBody6[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_6",
0.56234133,
1,
60
};
soundHitBuilding1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
0.5,
1,
60
};
soundHitBuilding2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
0.5,
1,
60
};
soundHitBuilding3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
0.5,
1,
60
};
soundHitBuilding4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
0.5,
1,
60
};
soundHitBuilding5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
0.5,
1,
60
};
soundHitBuilding6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
0.5,
1,
60
};
soundHitBuilding7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
0.5,
1,
60
};
soundHitBuilding8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
0.5,
1,
60
};
soundHitFoliage1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_01",
0.5,
1,
20
};
soundHitFoliage2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_02",
0.5,
1,
20
};
soundHitFoliage3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_03",
0.5,
1,
20
};
soundHitFoliage4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_04",
0.5,
1,
20
};
soundPlastic1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_01",
0.34999999,
1,
70
};
soundPlastic2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_02",
0.34999999,
1,
70
};
soundPlastic3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_03",
0.34999999,
1,
70
};
soundPlastic4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_04",
0.34999999,
1,
70
};
soundConcrete1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
0.5,
1,
70
};
soundConcrete2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
0.5,
1,
70
};
soundConcrete3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
0.5,
1,
70
};
soundConcrete4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
0.5,
1,
70
};
soundConcrete5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
0.5,
1,
70
};
soundConcrete6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
0.5,
1,
70
};
soundConcrete7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
0.5,
1,
70
};
soundConcrete8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
0.5,
1,
70
};
soundRubber1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_01",
0.5,
1,
50
};
soundRubber2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_02",
0.5,
1,
50
};
soundRubber3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_03",
0.5,
1,
50
};
soundRubber4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_04",
0.5,
1,
50
};
soundWater1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_01",
0.5,
1,
40
};
soundWater2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_02",
0.5,
1,
40
};
soundWater3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_03",
0.5,
1,
40
};
hitGroundSoft[]=
{
"soundGroundSoft1",
0.2,
"soundGroundSoft2",
0.2,
"soundGroundSoft3",
0.1,
"soundGroundSoft4",
0.1,
"soundGroundSoft5",
0.1,
"soundGroundSoft6",
0.1,
"soundGroundSoft7",
0.1,
"soundGroundSoft8",
0.1
};
hitGroundHard[]=
{
"soundGroundHard1",
0.2,
"soundGroundHard2",
0.2,
"soundGroundHard3",
0.1,
"soundGroundHard4",
0.1,
"soundGroundHard5",
0.1,
"soundGroundHard6",
0.1,
"soundGroundHard7",
0.1,
"soundGroundHard8",
0.1
};
hitMan[]=
{
"soundHitBody1",
0.16599999,
"soundHitBody2",
0.16599999,
"soundHitBody3",
0.16599999,
"soundHitBody4",
0.16599999,
"soundHitBody5",
0.16599999,
"soundHitBody6",
0.17
};
hitArmor[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitBuilding[]=
{
"soundHitBuilding1",
0.2,
"soundHitBuilding2",
0.2,
"soundHitBuilding3",
0.1,
"soundHitBuilding4",
0.1,
"soundHitBuilding5",
0.1,
"soundHitBuilding6",
0.1,
"soundHitBuilding7",
0.1,
"soundHitBuilding8",
0.1
};
hitFoliage[]=
{
"soundHitFoliage1",
0.25,
"soundHitFoliage2",
0.25,
"soundHitFoliage3",
0.25,
"soundHitFoliage4",
0.25
};
hitWood[]=
{
"soundWood1",
0.125,
"soundWood2",
0.125,
"soundWood3",
0.125,
"soundWood4",
0.125,
"soundWood5",
0.125,
"soundWood6",
0.125,
"soundWood7",
0.125,
"soundWood8",
0.125
};
hitGlass[]=
{
"soundHitGlass1",
0.16599999,
"soundHitGlass2",
0.16599999,
"soundHitGlass3",
0.167,
"soundHitGlass4",
0.167,
"soundHitGlass5",
0.167,
"soundHitGlass6",
0.167
};
hitGlassArmored[]=
{
"soundGlassArmored1",
0.16599999,
"soundGlassArmored2",
0.16599999,
"soundGlassArmored3",
0.167,
"soundGlassArmored4",
0.167,
"soundGlassArmored5",
0.167,
"soundGlassArmored6",
0.167
};
hitConcrete[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitRubber[]=
{
"soundRubber1",
0.25,
"soundRubber2",
0.25,
"soundRubber3",
0.25,
"soundRubber4",
0.25
};
hitPlastic[]=
{
"soundPlastic1",
0.25,
"soundPlastic2",
0.25,
"soundPlastic3",
0.25,
"soundPlastic4",
0.25
};
hitDefault[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitMetal[]=
{
"soundMetal1",
0.125,
"soundMetal2",
0.125,
"soundMetal3",
0.125,
"soundMetal4",
0.125,
"soundMetal5",
0.125,
"soundMetal6",
0.125,
"soundMetal7",
0.125,
"soundMetal8",
0.125
};
hitMetalplate[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitWater[]=
{
"soundWater1",
0.333,
"soundWater2",
0.333,
"soundWater3",
0.333
};
};
class MeleeBear_Heavy: MeleeBear
{
hitAnimation=1;
soundGroundSoft1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_01",
1,
1,
60
};
soundGroundSoft2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_02",
1,
1,
60
};
soundGroundSoft3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_03",
1,
1,
60
};
soundGroundSoft4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_04",
1,
1,
60
};
soundGroundSoft5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_05",
1,
1,
60
};
soundGroundSoft6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_06",
1,
1,
60
};
soundGroundSoft7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_07",
1,
1,
60
};
soundGroundSoft8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_08",
1,
1,
60
};
soundGroundHard1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_01",
1,
1,
80
};
soundGroundHard2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_02",
1,
1,
80
};
soundGroundHard3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_03",
1,
1,
80
};
soundGroundHard4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_04",
1,
1,
80
};
soundGroundHard5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_05",
1,
1,
80
};
soundGroundHard6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_06",
1,
1,
80
};
soundGroundHard7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_07",
1,
1,
80
};
soundGroundHard8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_08",
1,
1,
80
};
soundMetal1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
1,
1,
80
};
soundMetal2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
1,
1,
80
};
soundMetal3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
1,
1,
80
};
soundMetal4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
1,
1,
80
};
soundMetal5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
1,
1,
80
};
soundMetal6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
1,
1,
80
};
soundMetal7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
1,
1,
80
};
soundMetal8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
1,
1,
80
};
soundHitGlass1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_01",
1,
1,
100
};
soundHitGlass2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_02",
1,
1,
100
};
soundHitGlass3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_03",
1,
1,
100
};
soundHitGlass4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_04",
1,
1,
100
};
soundHitGlass5[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_05",
1,
1,
100
};
soundHitGlass6[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_06",
1,
1,
100
};
soundGlassArmored1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_01",
1,
1,
60
};
soundGlassArmored2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_02",
1,
1,
60
};
soundGlassArmored3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_03",
1,
1,
60
};
soundGlassArmored4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_04",
1,
1,
60
};
soundGlassArmored5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_05",
1,
1,
60
};
soundGlassArmored6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_06",
1,
1,
60
};
soundVehiclePlate1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
1,
1,
80
};
soundVehiclePlate2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
1,
1,
80
};
soundVehiclePlate3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
1,
1,
80
};
soundVehiclePlate4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
1,
1,
80
};
soundVehiclePlate5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
1,
1,
80
};
soundVehiclePlate6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
1,
1,
80
};
soundVehiclePlate7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
1,
1,
80
};
soundVehiclePlate8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
1,
1,
80
};
soundWood1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_01",
1,
1,
80
};
soundWood2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_02",
1,
1,
80
};
soundWood3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_03",
1,
1,
80
};
soundWood4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_04",
1,
1,
80
};
soundWood5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_05",
1,
1,
80
};
soundWood6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_06",
1,
1,
80
};
soundWood7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_07",
1,
1,
80
};
soundWood8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_08",
1,
1,
80
};
soundHitBody1[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_1",
0.56234133,
1,
60
};
soundHitBody2[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_2",
0.56234133,
1,
60
};
soundHitBody3[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_3",
0.56234133,
1,
60
};
soundHitBody4[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_4",
0.56234133,
1,
60
};
soundHitBody5[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_5",
0.56234133,
1,
60
};
soundHitBody6[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_6",
0.56234133,
1,
60
};
soundHitBuilding1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
1,
1,
60
};
soundHitBuilding2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
1,
1,
60
};
soundHitBuilding3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
1,
1,
60
};
soundHitBuilding4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
1,
1,
60
};
soundHitBuilding5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
1,
1,
60
};
soundHitBuilding6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
1,
1,
60
};
soundHitBuilding7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
1,
1,
60
};
soundHitBuilding8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
1,
1,
60
};
soundHitFoliage1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_01",
1,
1,
20
};
soundHitFoliage2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_02",
1,
1,
20
};
soundHitFoliage3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_03",
1,
1,
20
};
soundHitFoliage4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_04",
1,
1,
20
};
soundPlastic1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_01",
0.70794576,
1,
70
};
soundPlastic2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_02",
0.70794576,
1,
70
};
soundPlastic3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_03",
0.70794576,
1,
70
};
soundPlastic4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_04",
0.70794576,
1,
70
};
soundConcrete1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
1,
1,
70
};
soundConcrete2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
1,
1,
70
};
soundConcrete3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
1,
1,
70
};
soundConcrete4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
1,
1,
70
};
soundConcrete5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
1,
1,
70
};
soundConcrete6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
1,
1,
70
};
soundConcrete7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
1,
1,
70
};
soundConcrete8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
1,
1,
70
};
soundRubber1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_01",
1,
1,
50
};
soundRubber2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_02",
1,
1,
50
};
soundRubber3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_03",
1,
1,
50
};
soundRubber4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_04",
1,
1,
50
};
soundWater1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_01",
1,
1,
40
};
soundWater2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_02",
1,
1,
40
};
soundWater3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_03",
1,
1,
40
};
hitGroundSoft[]=
{
"soundGroundSoft1",
0.2,
"soundGroundSoft2",
0.2,
"soundGroundSoft3",
0.1,
"soundGroundSoft4",
0.1,
"soundGroundSoft5",
0.1,
"soundGroundSoft6",
0.1,
"soundGroundSoft7",
0.1,
"soundGroundSoft8",
0.1
};
hitGroundHard[]=
{
"soundGroundHard1",
0.2,
"soundGroundHard2",
0.2,
"soundGroundHard3",
0.1,
"soundGroundHard4",
0.1,
"soundGroundHard5",
0.1,
"soundGroundHard6",
0.1,
"soundGroundHard7",
0.1,
"soundGroundHard8",
0.1
};
hitMan[]=
{
"soundHitBody1",
0.16599999,
"soundHitBody2",
0.16599999,
"soundHitBody3",
0.16599999,
"soundHitBody4",
0.16599999,
"soundHitBody5",
0.16599999,
"soundHitBody6",
0.17
};
hitArmor[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitBuilding[]=
{
"soundHitBuilding1",
0.2,
"soundHitBuilding2",
0.2,
"soundHitBuilding3",
0.1,
"soundHitBuilding4",
0.1,
"soundHitBuilding5",
0.1,
"soundHitBuilding6",
0.1,
"soundHitBuilding7",
0.1,
"soundHitBuilding8",
0.1
};
hitFoliage[]=
{
"soundHitFoliage1",
0.25,
"soundHitFoliage2",
0.25,
"soundHitFoliage3",
0.25,
"soundHitFoliage4",
0.25
};
hitWood[]=
{
"soundWood1",
0.125,
"soundWood2",
0.125,
"soundWood3",
0.125,
"soundWood4",
0.125,
"soundWood5",
0.125,
"soundWood6",
0.125,
"soundWood7",
0.125,
"soundWood8",
0.125
};
hitGlass[]=
{
"soundHitGlass1",
0.16599999,
"soundHitGlass2",
0.16599999,
"soundHitGlass3",
0.167,
"soundHitGlass4",
0.167,
"soundHitGlass5",
0.167,
"soundHitGlass6",
0.167
};
hitGlassArmored[]=
{
"soundGlassArmored1",
0.16599999,
"soundGlassArmored2",
0.16599999,
"soundGlassArmored3",
0.167,
"soundGlassArmored4",
0.167,
"soundGlassArmored5",
0.167,
"soundGlassArmored6",
0.167
};
hitConcrete[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitRubber[]=
{
"soundRubber1",
0.25,
"soundRubber2",
0.25,
"soundRubber3",
0.25,
"soundRubber4",
0.25
};
hitPlastic[]=
{
"soundPlastic1",
0.25,
"soundPlastic2",
0.25,
"soundPlastic3",
0.25,
"soundPlastic4",
0.25
};
hitDefault[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitMetal[]=
{
"soundMetal1",
0.125,
"soundMetal2",
0.125,
"soundMetal3",
0.125,
"soundMetal4",
0.125,
"soundMetal5",
0.125,
"soundMetal6",
0.125,
"soundMetal7",
0.125,
"soundMetal8",
0.125
};
hitMetalplate[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitWater[]=
{
"soundWater1",
0.333,
"soundWater2",
0.333,
"soundWater3",
0.333
};
};
class MeleeBearShock: MeleeDamage
{
class DamageApplied
{
type="Melee";
bleedThreshold=0.85000002;
class Health
{
damage=25;
};
class Blood
{
damage=350;
};
class Shock
{
damage=110;
};
additionAnimalMeleeMultiplier=5;
};
soundGroundSoft1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_01",
0.5,
1,
60
};
soundGroundSoft2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_02",
0.5,
1,
60
};
soundGroundSoft3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_03",
0.5,
1,
60
};
soundGroundSoft4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_04",
0.5,
1,
60
};
soundGroundSoft5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_05",
0.5,
1,
60
};
soundGroundSoft6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_06",
0.5,
1,
60
};
soundGroundSoft7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_07",
0.5,
1,
60
};
soundGroundSoft8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_08",
0.5,
1,
60
};
soundGroundHard1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_01",
0.5,
1,
80
};
soundGroundHard2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_02",
0.5,
1,
80
};
soundGroundHard3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_03",
0.5,
1,
80
};
soundGroundHard4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_04",
0.5,
1,
80
};
soundGroundHard5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_05",
0.5,
1,
80
};
soundGroundHard6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_06",
0.5,
1,
80
};
soundGroundHard7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_07",
0.5,
1,
80
};
soundGroundHard8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_08",
0.5,
1,
80
};
soundMetal1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
0.5,
1,
80
};
soundMetal2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
0.5,
1,
80
};
soundMetal3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
0.5,
1,
80
};
soundMetal4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
0.5,
1,
80
};
soundMetal5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
0.5,
1,
80
};
soundMetal6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
0.5,
1,
80
};
soundMetal7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
0.5,
1,
80
};
soundMetal8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
0.5,
1,
80
};
soundHitGlass1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_01",
0.5,
1,
100
};
soundHitGlass2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_02",
0.5,
1,
100
};
soundHitGlass3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_03",
0.5,
1,
100
};
soundHitGlass4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_04",
0.5,
1,
100
};
soundHitGlass5[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_05",
0.5,
1,
100
};
soundHitGlass6[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_06",
0.5,
1,
100
};
soundGlassArmored1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_01",
0.5,
1,
60
};
soundGlassArmored2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_02",
0.5,
1,
60
};
soundGlassArmored3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_03",
0.5,
1,
60
};
soundGlassArmored4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_04",
0.5,
1,
60
};
soundGlassArmored5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_05",
0.5,
1,
60
};
soundGlassArmored6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_06",
0.5,
1,
60
};
soundVehiclePlate1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
0.5,
1,
80
};
soundVehiclePlate2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
0.5,
1,
80
};
soundVehiclePlate3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
0.5,
1,
80
};
soundVehiclePlate4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
0.5,
1,
80
};
soundVehiclePlate5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
0.5,
1,
80
};
soundVehiclePlate6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
0.5,
1,
80
};
soundVehiclePlate7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
0.5,
1,
80
};
soundVehiclePlate8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
0.5,
1,
80
};
soundWood1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_01",
0.5,
1,
80
};
soundWood2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_02",
0.5,
1,
80
};
soundWood3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_03",
0.5,
1,
80
};
soundWood4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_04",
0.5,
1,
80
};
soundWood5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_05",
0.5,
1,
80
};
soundWood6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_06",
0.5,
1,
80
};
soundWood7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_07",
0.5,
1,
80
};
soundWood8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_08",
0.5,
1,
80
};
soundHitBody1[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_1",
0.56234133,
1,
60
};
soundHitBody2[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_2",
0.56234133,
1,
60
};
soundHitBody3[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_3",
0.56234133,
1,
60
};
soundHitBody4[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_4",
0.56234133,
1,
60
};
soundHitBody5[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_5",
0.56234133,
1,
60
};
soundHitBody6[]=
{
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_6",
0.56234133,
1,
60
};
soundHitBuilding1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
0.5,
1,
60
};
soundHitBuilding2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
0.5,
1,
60
};
soundHitBuilding3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
0.5,
1,
60
};
soundHitBuilding4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
0.5,
1,
60
};
soundHitBuilding5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
0.5,
1,
60
};
soundHitBuilding6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
0.5,
1,
60
};
soundHitBuilding7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
0.5,
1,
60
};
soundHitBuilding8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
0.5,
1,
60
};
soundHitFoliage1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_01",
0.5,
1,
20
};
soundHitFoliage2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_02",
0.5,
1,
20
};
soundHitFoliage3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_03",
0.5,
1,
20
};
soundHitFoliage4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_04",
0.5,
1,
20
};
soundPlastic1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_01",
0.34999999,
1,
70
};
soundPlastic2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_02",
0.34999999,
1,
70
};
soundPlastic3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_03",
0.34999999,
1,
70
};
soundPlastic4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_04",
0.34999999,
1,
70
};
soundConcrete1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
0.5,
1,
70
};
soundConcrete2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
0.5,
1,
70
};
soundConcrete3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
0.5,
1,
70
};
soundConcrete4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
0.5,
1,
70
};
soundConcrete5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
0.5,
1,
70
};
soundConcrete6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
0.5,
1,
70
};
soundConcrete7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
0.5,
1,
70
};
soundConcrete8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
0.5,
1,
70
};
soundRubber1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_01",
0.5,
1,
50
};
soundRubber2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_02",
0.5,
1,
50
};
soundRubber3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_03",
0.5,
1,
50
};
soundRubber4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_04",
0.5,
1,
50
};
soundWater1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_01",
0.5,
1,
40
};
soundWater2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_02",
0.5,
1,
40
};
soundWater3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_03",
0.5,
1,
40
};
hitGroundSoft[]=
{
"soundGroundSoft1",
0.2,
"soundGroundSoft2",
0.2,
"soundGroundSoft3",
0.1,
"soundGroundSoft4",
0.1,
"soundGroundSoft5",
0.1,
"soundGroundSoft6",
0.1,
"soundGroundSoft7",
0.1,
"soundGroundSoft8",
0.1
};
hitGroundHard[]=
{
"soundGroundHard1",
0.2,
"soundGroundHard2",
0.2,
"soundGroundHard3",
0.1,
"soundGroundHard4",
0.1,
"soundGroundHard5",
0.1,
"soundGroundHard6",
0.1,
"soundGroundHard7",
0.1,
"soundGroundHard8",
0.1
};
hitMan[]=
{
"soundHitBody1",
0.16599999,
"soundHitBody2",
0.16599999,
"soundHitBody3",
0.16599999,
"soundHitBody4",
0.16599999,
"soundHitBody5",
0.16599999,
"soundHitBody6",
0.17
};
hitArmor[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitBuilding[]=
{
"soundHitBuilding1",
0.2,
"soundHitBuilding2",
0.2,
"soundHitBuilding3",
0.1,
"soundHitBuilding4",
0.1,
"soundHitBuilding5",
0.1,
"soundHitBuilding6",
0.1,
"soundHitBuilding7",
0.1,
"soundHitBuilding8",
0.1
};
hitFoliage[]=
{
"soundHitFoliage1",
0.25,
"soundHitFoliage2",
0.25,
"soundHitFoliage3",
0.25,
"soundHitFoliage4",
0.25
};
hitWood[]=
{
"soundWood1",
0.125,
"soundWood2",
0.125,
"soundWood3",
0.125,
"soundWood4",
0.125,
"soundWood5",
0.125,
"soundWood6",
0.125,
"soundWood7",
0.125,
"soundWood8",
0.125
};
hitGlass[]=
{
"soundHitGlass1",
0.16599999,
"soundHitGlass2",
0.16599999,
"soundHitGlass3",
0.167,
"soundHitGlass4",
0.167,
"soundHitGlass5",
0.167,
"soundHitGlass6",
0.167
};
hitGlassArmored[]=
{
"soundGlassArmored1",
0.16599999,
"soundGlassArmored2",
0.16599999,
"soundGlassArmored3",
0.167,
"soundGlassArmored4",
0.167,
"soundGlassArmored5",
0.167,
"soundGlassArmored6",
0.167
};
hitConcrete[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitRubber[]=
{
"soundRubber1",
0.25,
"soundRubber2",
0.25,
"soundRubber3",
0.25,
"soundRubber4",
0.25
};
hitPlastic[]=
{
"soundPlastic1",
0.25,
"soundPlastic2",
0.25,
"soundPlastic3",
0.25,
"soundPlastic4",
0.25
};
hitDefault[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitMetal[]=
{
"soundMetal1",
0.125,
"soundMetal2",
0.125,
"soundMetal3",
0.125,
"soundMetal4",
0.125,
"soundMetal5",
0.125,
"soundMetal6",
0.125,
"soundMetal7",
0.125,
"soundMetal8",
0.125
};
hitMetalplate[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitWater[]=
{
"soundWater1",
0.333,
"soundWater2",
0.333,
"soundWater3",
0.333
};
};
class MeleeBearShock_Heavy: MeleeBearShock
{
hitAnimation=1;
soundGroundSoft1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_01",
1,
1,
60
};
soundGroundSoft2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_02",
1,
1,
60
};
soundGroundSoft3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_03",
1,
1,
60
};
soundGroundSoft4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_04",
1,
1,
60
};
soundGroundSoft5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_05",
1,
1,
60
};
soundGroundSoft6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_06",
1,
1,
60
};
soundGroundSoft7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_07",
1,
1,
60
};
<<<<<<< HEAD
soundGroundSoft8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_08",
1,
=======
=======
>>>>>>> Stashed changes
soundGroundSoft8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_dirt_hit_08",
0.5,
>>>>>>> upstream/master
1,
60
};
soundGroundHard1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_07",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundGroundHard8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_default_hit_08",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundMetal8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundHitGlass1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
100
};
soundHitGlass2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
100
};
soundHitGlass3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
100
};
soundHitGlass4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
100
};
soundHitGlass5[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
100
};
soundHitGlass6[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_glass_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
100
};
soundGlassArmored1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundGlassArmored2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundGlassArmored3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundGlassArmored4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundGlassArmored5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundGlassArmored6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_armor_glass_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundVehiclePlate1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_07",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundVehiclePlate8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_metal_hit_08",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_07",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundWood8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_wood_hit_08",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
80
};
soundHitBody1[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_1",
=======
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_1",
>>>>>>> upstream/master
0.56234133,
1,
60
};
soundHitBody2[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_2",
=======
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_2",
>>>>>>> upstream/master
0.56234133,
1,
60
};
soundHitBody3[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_3",
=======
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_3",
>>>>>>> upstream/master
0.56234133,
1,
60
};
soundHitBody4[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_4",
=======
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_4",
>>>>>>> upstream/master
0.56234133,
1,
60
};
soundHitBody5[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_5",
=======
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_5",
>>>>>>> upstream/master
0.56234133,
1,
60
};
soundHitBody6[]=
{
<<<<<<< HEAD
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_heavy_6",
=======
"dz\sounds\weapons\hits\melee\shortblade\hit_shortblade_body_light_6",
>>>>>>> upstream/master
0.56234133,
1,
60
};
soundHitBuilding1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitBuilding8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
60
};
soundHitFoliage1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
20
};
soundHitFoliage2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
20
};
soundHitFoliage3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
20
};
soundHitFoliage4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_leaves_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
20
};
soundPlastic1[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_01",
<<<<<<< HEAD
0.70794576,
=======
0.34999999,
>>>>>>> upstream/master
1,
70
};
soundPlastic2[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_02",
<<<<<<< HEAD
0.70794576,
=======
0.34999999,
>>>>>>> upstream/master
1,
70
};
soundPlastic3[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_03",
<<<<<<< HEAD
0.70794576,
=======
0.34999999,
>>>>>>> upstream/master
1,
70
};
soundPlastic4[]=
{
"dz\sounds\weapons\meleehits\fist_hits\fist_hard_plastic_hit_04",
<<<<<<< HEAD
0.70794576,
=======
0.34999999,
>>>>>>> upstream/master
1,
70
};
soundConcrete1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete4[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete5[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_05",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete6[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_06",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete7[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_07",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundConcrete8[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_concrete_hit_08",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
70
};
soundRubber1[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
50
};
soundRubber2[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
50
};
soundRubber3[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
50
};
soundRubber4[]=
{
"dz\sounds\weapons\meleehits\blunt_metal_weapon_hits\blunt_metal_weapon_rubber_hit_04",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
50
};
soundWater1[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_01",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
40
};
soundWater2[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_02",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
40
};
soundWater3[]=
{
"dz\sounds\weapons\meleehits\short_blade_weapon_hits\short_blade_weapon_water_hit_03",
<<<<<<< HEAD
1,
=======
0.5,
>>>>>>> upstream/master
1,
40
};
hitGroundSoft[]=
{
"soundGroundSoft1",
0.2,
"soundGroundSoft2",
0.2,
"soundGroundSoft3",
0.1,
"soundGroundSoft4",
0.1,
"soundGroundSoft5",
0.1,
"soundGroundSoft6",
0.1,
"soundGroundSoft7",
0.1,
"soundGroundSoft8",
0.1
};
hitGroundHard[]=
{
"soundGroundHard1",
0.2,
"soundGroundHard2",
0.2,
"soundGroundHard3",
0.1,
"soundGroundHard4",
0.1,
"soundGroundHard5",
0.1,
"soundGroundHard6",
0.1,
"soundGroundHard7",
0.1,
"soundGroundHard8",
0.1
};
hitMan[]=
{
"soundHitBody1",
0.16599999,
"soundHitBody2",
0.16599999,
"soundHitBody3",
0.16599999,
"soundHitBody4",
0.16599999,
"soundHitBody5",
0.16599999,
"soundHitBody6",
0.17
};
hitArmor[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitBuilding[]=
{
"soundHitBuilding1",
0.2,
"soundHitBuilding2",
0.2,
"soundHitBuilding3",
0.1,
"soundHitBuilding4",
0.1,
"soundHitBuilding5",
0.1,
"soundHitBuilding6",
0.1,
"soundHitBuilding7",
0.1,
"soundHitBuilding8",
0.1
};
hitFoliage[]=
{
"soundHitFoliage1",
0.25,
"soundHitFoliage2",
0.25,
"soundHitFoliage3",
0.25,
"soundHitFoliage4",
0.25
};
hitWood[]=
{
"soundWood1",
0.125,
"soundWood2",
0.125,
"soundWood3",
0.125,
"soundWood4",
0.125,
"soundWood5",
0.125,
"soundWood6",
0.125,
"soundWood7",
0.125,
"soundWood8",
0.125
};
hitGlass[]=
{
"soundHitGlass1",
0.16599999,
"soundHitGlass2",
0.16599999,
"soundHitGlass3",
0.167,
"soundHitGlass4",
0.167,
"soundHitGlass5",
0.167,
"soundHitGlass6",
0.167
};
hitGlassArmored[]=
{
"soundGlassArmored1",
0.16599999,
"soundGlassArmored2",
0.16599999,
"soundGlassArmored3",
0.167,
"soundGlassArmored4",
0.167,
"soundGlassArmored5",
0.167,
"soundGlassArmored6",
0.167
};
hitConcrete[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
<<<<<<< HEAD
hitRubber[]=
{
"soundRubber1",
0.25,
"soundRubber2",
0.25,
"soundRubber3",
0.25,
"soundRubber4",
0.25
};
hitPlastic[]=
{
"soundPlastic1",
0.25,
"soundPlastic2",
0.25,
"soundPlastic3",
0.25,
"soundPlastic4",
0.25
};
hitDefault[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitMetal[]=
{
"soundMetal1",
0.125,
"soundMetal2",
0.125,
"soundMetal3",
0.125,
"soundMetal4",
0.125,
"soundMetal5",
0.125,
"soundMetal6",
0.125,
"soundMetal7",
0.125,
"soundMetal8",
0.125
};
hitMetalplate[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitWater[]=
{
"soundWater1",
0.333,
"soundWater2",
0.333,
"soundWater3",
0.333
};
};
};
class TrackingParams
{
maxTracksCount=100;
playerRangeMin=12;
playerRangeMax=40;
agentUpdateDistance=16;
};
class CfgVehicles
{
class Inventory_Base;
class Container_Base;
class WorldContainer_Base;
class HouseNoDestruct;
class Static;
class Barrel_ColorBase;
class Armband_ColorBase;
class Clothing_Base;
class ItemOptics;
class AviatorGlasses;
class CamoNet;
class Fence;
class WoodenCrate;
class AnimalBase;
//class Animal_UrsusArctos;
//class Animal_CanisLupus;
//class Animal_CapraHircus;
class DZ_LightAI;
class Clothing: Clothing_Base
{
};
class BearSteakMeat;
=======
hitRubber[]=
{
"soundRubber1",
0.25,
"soundRubber2",
0.25,
"soundRubber3",
0.25,
"soundRubber4",
0.25
};
hitPlastic[]=
{
"soundPlastic1",
0.25,
"soundPlastic2",
0.25,
"soundPlastic3",
0.25,
"soundPlastic4",
0.25
};
hitDefault[]=
{
"soundConcrete1",
0.125,
"soundConcrete2",
0.125,
"soundConcrete3",
0.125,
"soundConcrete4",
0.125,
"soundConcrete5",
0.125,
"soundConcrete6",
0.125,
"soundConcrete7",
0.125,
"soundConcrete8",
0.125
};
hitMetal[]=
{
"soundMetal1",
0.125,
"soundMetal2",
0.125,
"soundMetal3",
0.125,
"soundMetal4",
0.125,
"soundMetal5",
0.125,
"soundMetal6",
0.125,
"soundMetal7",
0.125,
"soundMetal8",
0.125
};
hitMetalplate[]=
{
"soundVehiclePlate1",
0.125,
"soundVehiclePlate2",
0.125,
"soundVehiclePlate3",
0.125,
"soundVehiclePlate4",
0.125,
"soundVehiclePlate5",
0.125,
"soundVehiclePlate6",
0.125,
"soundVehiclePlate7",
0.125,
"soundVehiclePlate8",
0.125
};
hitWater[]=
{
"soundWater1",
0.333,
"soundWater2",
0.333,
"soundWater3",
0.333
};
};
};
class CfgSoundShaders
{
class TigerBark_SoundShader
{
samples[]=
{
{
"\ShredAnimals\sounds\animals\tiger\bark\bark_1.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerBark2_SoundShader
{
samples[]=
{
{
"\ShredAnimals\sounds\animals\tiger\bark2\bark2_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerBark3_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\bark3\bark3_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerBreath_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\breath\breath_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class Tigerdeath_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\death\death_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerGroans_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\groans\groans_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerGrowl_A_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\growl\growl_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerGrowl_B_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\growl\growl_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerHowl_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\howl\howl_1.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerHowls_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\howls\howls_1.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerPant_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\pant\pant_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerPant_Short_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\pant_short\pant_short_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerSnarl_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\snarl\snarl_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerSnarl_Short_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\snarl_short\snarl_short_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerWhimper_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\whimper\whimper_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerYelp_SoundShader
{
samples[]=
{
{
"ShredAnimals\sounds\animals\tiger\Yelp\yelp_0.ogg",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerAttack_SoundShader
{
samples[]=
{
{
"ShredAnimals\tiger\tigris\tiger_growl",
1
}
};
volume=1;
range=45;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerMumble_SoundShader
{
samples[]=
{
{
"ShredAnimals\tiger\tigris\tigerpurr",
1
}
};
volume=1;
range=140;
rangeCurve="defaultAnimalAttenuationCurve";
};
class TigerRoar_SoundShader
{
samples[]=
{
{
"ShredAnimals\tiger\tigris\tigerroar",
1
}
};
volume=1;
range=140;
rangeCurve="defaultAnimalAttenuationCurve";
};
};
class CfgSoundSets
{
class TigerBase_SoundSet
{
sound3DProcessingType="animal3DProcessingType";
volumeCurve="animalAttenuationCurve";
spatial="true";
doppler="false";
loop="false";
};
class TigerBark_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerBark_SoundShader"
};
};
class TigerBark2_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerBark2_SoundShader"
};
};
class TigerBark3_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerBark3_SoundShader"
};
};
class TigerBreath_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerBreath_SoundShader"
};
};
class TigerDeath_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerDeath_SoundShader"
};
};
class TigerGroans_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerGroans_SoundShader"
};
};
class TigerGrowl_B_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerGrowl_SoundShader"
};
};
class TigerGrowl_A_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerGrowl_SoundShader"
};
};
class TigerHowl_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerHowl_SoundShader"
};
};
class TigerHowls_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerHowls_SoundShader"
};
};
class TigerPant_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerPant_SoundShader"
};
};
class TigerPant_Short_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerPant_Short_SoundShader"
};
};
class TigerSnarl_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerSnarl_SoundShader"
};
};
class TigerSnarl_Short_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerSnarl_Short_SoundShader"
};
};
class TigerWhimper_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerWhimper_SoundShader"
};
};
class TigerYelp_SoundSet: TigerBase_SoundSet
{
soundShaders[]=
{
"TigerYelp_SoundShader"
};
};
class baseTiger_SoundSet
{
sound3DProcessingType="animal3DProcessingType";
volumeCurve="animalAttenuationCurve";
spatial="true";
doppler="false";
loop="false";
};
class TigerAttack_SoundSet: baseTiger_SoundSet
{
soundShaders[]=
{
"TigerAttack_SoundShader"
};
};
class TigerRoar_SoundSet: baseTiger_SoundSet
{
soundShaders[]=
{
"TigerRoar_SoundShader"
};
};
class TigerMumble_SoundSet: baseTiger_SoundSet
{
soundShaders[]=
{
"TigerMumble_SoundShader"
};
};
};
class CfgNoises
{
class TigerRoarNoise
{
type="sound";
continuousRange=100;
strength=10;
};
};
class CfgVehicles
{
class Static;
class CamoNet;
class Fence;
class WoodenCrate;
class HouseNoDestruct;
class Inventory_Base;
class Container_Base;
class Gear_Base;
class WorldContainer_Base;
class Barrel_ColorBase;
class Armband_ColorBase;
class Clothing_Base;
class BearSteakMeat;
class DZ_LightAI;
class AnimalBase;
class Animal_UrsusArctos;
class Animal_CanisLupus;
class Pelt_Base;
>>>>>>> upstream/master
class TigerSteakMeat: BearSteakMeat
{
scope=2;
displayName="Tiger Steak";
descriptionShort="Tiger Steak";
model="\dz\gear\food\meat_steak.p3d";
rotationFlags=17;
weight=0;
interactionWeight=1;
quantityBar=1;
varQuantityInit=180;
varQuantityMin=0;
varQuantityMax=180;
itemSize[]={2,3};
absorbency=0.30000001;
inventorySlot="Ingredient";
isMeleeWeapon=1;
class MeleeModes
{
class Default
{
ammo="MeleeFist";
range=1;
};
class Heavy
{
ammo="MeleeFist_Heavy";
range=1;
};
class Sprint
{
ammo="MeleeFist_Heavy";
range=2.8;
};
};
<<<<<<< HEAD
};
class Pelt_Base;
=======
};
>>>>>>> upstream/master
class TigerPelt: Pelt_Base
{
scope = 2;
displayName = "Tiger Pelt";
descriptionShort = "Tiger Pelt";
<<<<<<< HEAD
model = "\dz\gear\consumables\Pelt_Wolf.p3d";
=======
model = "\dz\gear\consumables\pelt_wolf.p3d";
>>>>>>> upstream/master
hiddenSelections[] = {"camo"};
hiddenSelectionsTextures[] = {"ShredAnimals\pelt_tiger_co.paa"};
hiddenSelectionsMaterials[] = {"ShredAnimals\pelt_tiger.rvmat"};
weight = 1200;
itemSize[] = {5,3};
peltGain = 6;
class DamageSystem
{
class GlobalHealth
{
class Health
<<<<<<< HEAD
{
hitpoints = 200;
healthLevels[] = {{1.0,{"DZ\gear\consumables\data\pelt_wolf.rvmat"}},{0.7,{"DZ\gear\consumables\data\pelt_wolf.rvmat"}},{0.5,{"DZ\gear\consumables\data\pelt_wolf_damage.rvmat"}},{0.3,{"DZ\gear\consumables\data\pelt_wolf_damage.rvmat"}},{0.0,{"DZ\gear\consumables\data\pelt_wolf_destruct.rvmat"}}};
};
};
};
};
class Animal_Shred_Tiger: AnimalBase
{
simulation = "dayzanimal";
scope = 2;
//
model = "\ShredAnimals\tigerX2.p3d";
//model = "\DZ\animals\canis_lupus\canis_lupus.p3d";
displayName = "$STR_CfgVehicles_Animal_Tiger0";
descriptionShort = "$STR_CfgVehicles_Animal_Tigrer1";
//hiddenSelections[] = {"Camo","CamoHair"};
DamageSphereAmmos[] = {"MeleeWolf"};
aiAgentTemplate = "Predators_Wolf";
injuryLevels[] = {1.0,0.5,0.2,0.0};
class DamageSystem
{
class GlobalHealth
{
class Health
{
hitpoints = 200;
healthLabels[] = {1.0,0.7,0.5,0.3,0.0};
};
class Blood
{
hitpoints = 5000;
};
class Shock
{
hitpoints = 100;
};
};
class DamageZones
{
class Zone_Head
{
componentNames[] = {"Zone_Head"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.15;
canBleed = 0;
class Health
{
hitpoints = 120;
transferToGlobalCoef = 1;
};
class Blood: Health
{
hitpoints = 0;
};
class Shock: Health
{
hitpoints = 0;
};
};
class Zone_Neck: Zone_Head
{
componentNames[] = {"Zone_Neck"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 100;
};
};
class Zone_Chest: Zone_Head
{
componentNames[] = {"Zone_Chest"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Belly: Zone_Head
{
componentNames[] = {"Zone_Belly"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Spine: Zone_Head
{
componentNames[] = {"Zone_Spine_Front","Zone_Spine_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Pelvis: Zone_Head
{
componentNames[] = {"Zone_Pelvis"};
transferToZonesNames[] = {"Zone_Spine"};
transferToZonesCoefs[] = {0.5};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 180;
};
};
class Zone_Legs: Zone_Head
{
componentNames[] = {"Zone_Legs_Front","Zone_Legs_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.0;
class Health: Health
{
hitpoints = 100;
};
};
};
};
class Skinning
{
class ObtainedSteaks
{
item = "TigerSteakMeat";
count = 10;
itemZones[] = {"Zone_Chest","Zone_Belly","Zone_Pelvis"};
countByZone[] = {3.0,3.0,3.0};
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedPelt
{
item = "TigerPelt";
count = 1;
quantityCoef = 1;
transferToolDamageCoef = 1;
};
class ObtainedGuts
{
item = "Guts";
count = 2;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedLard
{
item = "Lard";
count = 1;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedBones
{
item = "Bone";
count = 1;
quantityMinMaxCoef[] = {0.7,1};
transferToolDamageCoef = 1;
};
};
class enfanimsys
{
meshObject = "dz\animals\canis_lupus\Data\canis_lupus_skeleton.xob";
graphname = "dz\animals\animations\!graph_files\Wolf\Wolf_Graph.agr";
defaultinstance = "dz\animals\animations\!graph_files\Wolf\Wolf_AnimInstance.asi";
startnode = "AlignToTerrain_Rot";
skeletonName = "canis_lupus_skeleton.xob";
};
class AnimEvents
{
class Steps
{
class Walk1
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 1;
};
class Walk2
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 2;
};
class Walk3
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 3;
};
class Walk4
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 4;
};
class Run1
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 5;
};
class Run2
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 6;
};
class Run3
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 7;
};
class Run4
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 8;
};
class Bodyfall
{
soundLookupTable = "PawMediumBodyfall_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 11;
};
class Settle
{
soundLookupTable = "PawMediumSettle_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 12;
};
class Rest2standA
{
soundLookupTable = "PawMediumRest2standA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 13;
};
class Rest2standB
{
soundLookupTable = "PawMediumRest2standB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 14;
};
class Stand2restA
{
soundLookupTable = "PawMediumStand2restA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 15;
};
class Stand2restB
{
soundLookupTable = "PawMediumStand2restB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 16;
};
class Stand2restC
{
soundLookupTable = "PawMediumStand2restC_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 17;
};
class Jump
{
soundLookupTable = "PawMediumJump_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 18;
};
class Impact
{
soundLookupTable = "PawMediumImpact_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 19;
};
};
class Sounds
{
class BearAttack
{
soundSet="BearAttack_SoundSet";
noise="WolfRoarNoise";
id=21;
};
class WolfBark
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 1;
};
class WolfBreath
{
soundSet = "WolfBreath_SoundSet";
noise = "WolfRoarNoise";
id = 4;
};
class WolfGroans
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 5;
};
class WolfGrowl_A
{
soundSet = "WolfGrowl_A_SoundSet";
noise = "WolfRoarNoise";
id = 6;
};
class WolfPant
{
soundSet = "WolfPant_SoundSet";
noise = "WolfRoarNoise";
id = 9;
};
class WolfPantShort
{
soundSet = "WolfPantShort_SoundSet";
noise = "WolfRoarNoise";
id = 10;
};
class WolfPantLong
{
soundSet = "WolfPantShort_SoundSet";
noise = "WolfRoarNoise";
id = 18;
};
class WolfSnarl
{
soundSet = "TigerMumble_SoundSet";
noise = "WolfRoarNoise";
id = 11;
};
class WolfSnarlShort
{
soundSet = "TigerMumble_SoundSet";
noise = "WolfRoarNoise";
id = 12;
};
class WolfWhimper
{
soundSet = "WolfWhimper_SoundSet";
noise = "WolfRoarNoise";
id = 13;
};
class WolfYelp
{
soundSet = "WolfYelp_SoundSet";
noise = "WolfRoarNoise";
id = 14;
};
class WolfYawn
{
soundSet = "WolfYelp_SoundSet";
noise = "WolfRoarNoise";
id = 15;
};
class WolfDeath
{
soundSet = "WolfDeath_SoundSet";
noise = "WolfRoarNoise";
id = 20;
};
class WolfHowl
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 16;
};
class WolfHowls
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 17;
};
};
class Damages
{
class Bite
{
damage = "WolfBiteDamage";
id = 1;
};
class BiteLow
{
damage = "WolfLowBiteDamage";
id = 2;
};
};
};
class CommandMoveSettings
{
useSpeedMapping = 1;
movementSpeedMapping[] = {0.0,0.25,0.5,1.2,4.5,12.2};
};
class CommandLookAtSettings
{
lookAtFilterTimeout = 0.5;
lookAtFilterSpeed = 1.57;
};
};
class Animal_Shred_Tigris: AnimalBase
{
simulation = "dayzanimal";
scope = 2;
//
model = "\ShredAnimals\tigerX2.p3d";
//model = "\DZ\animals\canis_lupus\canis_lupus.p3d";
displayName = "$STR_CfgVehicles_Animal_Tiger0";
descriptionShort = "$STR_CfgVehicles_Animal_Tigrer1";
//hiddenSelections[] = {"Camo","CamoHair"};
DamageSphereAmmos[] = {"MeleeWolf"};
aiAgentTemplate = "Predators_Shred";
injuryLevels[] = {1.0,0.5,0.2,0.0};
class DamageSystem
{
class GlobalHealth
{
class Health
{
hitpoints = 500;
healthLabels[] = {1.0,0.7,0.5,0.3,0.0};
};
class Blood
{
hitpoints = 5000;
};
class Shock
{
hitpoints = 250;
};
};
class DamageZones
{
class Zone_Head
{
componentNames[] = {"Zone_Head"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.15;
canBleed = 0;
class Health
{
hitpoints = 120;
transferToGlobalCoef = 1;
};
class Blood: Health
{
hitpoints = 0;
};
class Shock: Health
{
hitpoints = 0;
};
};
class Zone_Neck: Zone_Head
{
componentNames[] = {"Zone_Neck"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 100;
};
};
class Zone_Chest: Zone_Head
{
componentNames[] = {"Zone_Chest"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Belly: Zone_Head
{
componentNames[] = {"Zone_Belly"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Spine: Zone_Head
{
componentNames[] = {"Zone_Spine_Front","Zone_Spine_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Pelvis: Zone_Head
{
componentNames[] = {"Zone_Pelvis"};
transferToZonesNames[] = {"Zone_Spine"};
transferToZonesCoefs[] = {0.5};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 180;
};
};
class Zone_Legs: Zone_Head
{
componentNames[] = {"Zone_Legs_Front","Zone_Legs_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.0;
class Health: Health
{
hitpoints = 100;
};
};
};
};
class Skinning
{
class ObtainedSteaks
{
item = "WolfSteakMeat";
count = 10;
itemZones[] = {"Zone_Chest","Zone_Belly","Zone_Pelvis"};
countByZone[] = {3.0,3.0,3.0};
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedPelt
{
item = "WolfPelt";
count = 1;
quantityCoef = 1;
transferToolDamageCoef = 1;
};
class ObtainedGuts
{
item = "Guts";
count = 2;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedLard
{
item = "Lard";
count = 1;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedBones
{
item = "Bone";
count = 1;
quantityMinMaxCoef[] = {0.7,1};
transferToolDamageCoef = 1;
};
};
class enfanimsys
{
meshObject = "dz\animals\canis_lupus\Data\canis_lupus_skeleton.xob";
graphname = "dz\animals\animations\!graph_files\Wolf\Wolf_Graph.agr";
defaultinstance = "dz\animals\animations\!graph_files\Wolf\Wolf_AnimInstance.asi";
startnode = "AlignToTerrain_Rot";
skeletonName = "canis_lupus_skeleton.xob";
};
class AnimEvents
{
class Steps
{
class Walk1
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 1;
};
class Walk2
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 2;
};
class Walk3
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 3;
};
class Walk4
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 4;
};
class Run1
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 5;
};
class Run2
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 6;
};
class Run3
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 7;
};
class Run4
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 8;
};
class Bodyfall
{
soundLookupTable = "PawMediumBodyfall_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 11;
};
class Settle
{
soundLookupTable = "PawMediumSettle_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 12;
};
class Rest2standA
{
soundLookupTable = "PawMediumRest2standA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 13;
};
class Rest2standB
{
soundLookupTable = "PawMediumRest2standB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 14;
};
class Stand2restA
{
soundLookupTable = "PawMediumStand2restA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 15;
};
class Stand2restB
{
soundLookupTable = "PawMediumStand2restB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 16;
};
class Stand2restC
{
soundLookupTable = "PawMediumStand2restC_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 17;
};
class Jump
{
soundLookupTable = "PawMediumJump_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 18;
};
class Impact
{
soundLookupTable = "PawMediumImpact_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 19;
};
};
class Sounds
{
class WolfBark
{
soundSet = "WolfBark_SoundSet";
noise = "WolfRoarNoise";
id = 1;
};
class WolfBark_1
{
soundSet = "WolfBark_SoundSet";
noise = "WolfRoarNoise";
id = 61;
};
class WolfBark_2
{
soundSet = "WolfBark_SoundSet";
noise = "WolfRoarNoise";
id = 71;
};
class WolfBark2
{
soundSet = "WolfBark2_SoundSet";
noise = "WolfRoarNoise";
id = 2;
};
class WolfBark3
{
soundSet = "WolfBark3_SoundSet";
noise = "WolfRoarNoise";
id = 3;
};
class WolfBreath
{
soundSet = "WolfBreath_SoundSet";
noise = "WolfRoarNoise";
id = 4;
};
class WolfGroans
{
soundSet = "WolfGroans_SoundSet";
noise = "WolfRoarNoise";
id = 5;
};
class WolfGrowl_A
{
soundSet = "WolfGrowl_A_SoundSet";
noise = "WolfRoarNoise";
id = 6;
};
class WolfGrowl_B
{
soundSet = "WolfGrowl_B_SoundSet";
noise = "WolfRoarNoise";
id = 7;
};
class WolfGrowl
{
soundSet = "WolfGrowl_A_SoundSet";
noise = "WolfRoarNoise";
id = 8;
};
class WolfPant
{
soundSet = "WolfPant_SoundSet";
noise = "WolfRoarNoise";
id = 9;
};
class WolfPantShort
{
soundSet = "WolfPantShort_SoundSet";
noise = "WolfRoarNoise";
id = 10;
};
class WolfPantLong
{
soundSet = "WolfPantShort_SoundSet";
noise = "WolfRoarNoise";
id = 18;
};
class WolfSnarl
{
soundSet = "WolfSnarl_SoundSet";
noise = "WolfRoarNoise";
id = 11;
};
class WolfSnarlShort
{
soundSet = "WolfSnarlShort_SoundSet";
noise = "WolfRoarNoise";
id = 12;
};
class WolfWhimper
{
soundSet = "WolfWhimper_SoundSet";
noise = "WolfRoarNoise";
id = 13;
};
class WolfYelp
{
soundSet = "WolfYelp_SoundSet";
noise = "WolfRoarNoise";
id = 14;
};
class WolfYawn
{
soundSet = "WolfYelp_SoundSet";
noise = "WolfRoarNoise";
id = 15;
};
class WolfDeath
{
soundSet = "WolfDeath_SoundSet";
noise = "WolfRoarNoise";
id = 20;
};
class WolfHowl
{
soundSet = "WolfHowl_SoundSet";
noise = "WolfRoarNoise";
id = 16;
};
class WolfHowls
{
soundSet = "WolfHowls_SoundSet";
noise = "WolfRoarNoise";
id = 17;
};
};
class Damages
{
class Bite
{
damage = "WolfBiteDamage";
id = 1;
};
class BiteLow
{
damage = "WolfLowBiteDamage";
id = 2;
};
};
};
class CommandMoveSettings
{
useSpeedMapping = 1;
movementSpeedMapping[] = {0.0,0.25,0.5,1.2,4.5,12.2};
};
class CommandLookAtSettings
{
lookAtFilterTimeout = 0.5;
lookAtFilterSpeed = 1.57;
};
};
class Animal_Shred_MuleX: AnimalBase
{
simulation = "dayzanimal";
scope = 2;
//
model = "\ShredAnimals\tigerX2.p3d";
//model = "\DZ\animals\canis_lupus\canis_lupus.p3d";
displayName = "$STR_CfgVehicles_Animal_MuleX0";
descriptionShort = "$STR_CfgVehicles_Animal_MuleX1";
//hiddenSelections[] = {"Camo","CamoHair"};
//DamageSphereAmmos[] = {"MeleeWolf"};
aiAgentTemplate = "Predator_UrsusArctos";
injuryLevels[] = {1.0,0.5,0.2,0.0};
class DamageSystem
{
class GlobalHealth
{
class Health
{
hitpoints = 500;
healthLabels[] = {1.0,0.7,0.5,0.3,0.0};
};
class Blood
{
hitpoints = 5000;
};
class Shock
{
hitpoints = 250;
};
};
class DamageZones
{
class Zone_Head
{
componentNames[] = {"Zone_Head"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.15;
canBleed = 0;
class Health
{
hitpoints = 120;
transferToGlobalCoef = 1;
};
class Blood: Health
{
hitpoints = 0;
};
class Shock: Health
{
hitpoints = 0;
};
};
class Zone_Neck: Zone_Head
{
componentNames[] = {"Zone_Neck"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 100;
};
};
class Zone_Chest: Zone_Head
{
componentNames[] = {"Zone_Chest"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Belly: Zone_Head
{
componentNames[] = {"Zone_Belly"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Spine: Zone_Head
{
componentNames[] = {"Zone_Spine_Front","Zone_Spine_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Pelvis: Zone_Head
{
componentNames[] = {"Zone_Pelvis"};
transferToZonesNames[] = {"Zone_Spine"};
transferToZonesCoefs[] = {0.5};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 180;
};
};
class Zone_Legs: Zone_Head
{
componentNames[] = {"Zone_Legs_Front","Zone_Legs_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.0;
class Health: Health
{
hitpoints = 100;
};
};
};
};
class Skinning
{
class ObtainedSteaks
{
item = "WolfSteakMeat";
count = 10;
itemZones[] = {"Zone_Chest","Zone_Belly","Zone_Pelvis"};
countByZone[] = {3.0,3.0,3.0};
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedPelt
{
item = "WolfPelt";
count = 1;
quantityCoef = 1;
transferToolDamageCoef = 1;
};
class ObtainedGuts
{
item = "Guts";
count = 2;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedLard
{
item = "Lard";
count = 1;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedBones
{
item = "Bone";
count = 1;
quantityMinMaxCoef[] = {0.7,1};
transferToolDamageCoef = 1;
};
};
class enfanimsys
{
meshObject = "dz\animals\canis_lupus\Data\canis_lupus_skeleton.xob";
graphname = "dz\animals\animations\!graph_files\Wolf\Wolf_Graph.agr";
defaultinstance = "dz\animals\animations\!graph_files\Wolf\Wolf_AnimInstance.asi";
startnode = "AlignToTerrain_Rot";
skeletonName = "canis_lupus_skeleton.xob";
};
class AnimEvents
{
class Steps
{
class Walk1
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 1;
};
class Walk2
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 2;
};
class Walk3
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 3;
};
class Walk4
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 4;
};
class Run1
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 5;
};
class Run2
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 6;
};
class Run3
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 7;
};
class Run4
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 8;
};
class Bodyfall
{
soundLookupTable = "PawMediumBodyfall_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 11;
};
class Settle
{
soundLookupTable = "PawMediumSettle_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 12;
};
class Rest2standA
{
soundLookupTable = "PawMediumRest2standA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 13;
};
class Rest2standB
{
soundLookupTable = "PawMediumRest2standB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 14;
};
class Stand2restA
{
soundLookupTable = "PawMediumStand2restA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 15;
};
class Stand2restB
{
soundLookupTable = "PawMediumStand2restB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 16;
};
class Stand2restC
{
soundLookupTable = "PawMediumStand2restC_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 17;
};
class Jump
{
soundLookupTable = "PawMediumJump_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 18;
};
class Impact
{
soundLookupTable = "PawMediumImpact_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 19;
};
};
class Sounds
{
};
class Damages
{
class Bite
{
=======
{
hitpoints = 200;
healthLevels[] = {{1.0,{"DZ\gear\consumables\data\pelt_wolf.rvmat"}},{0.7,{"DZ\gear\consumables\data\pelt_wolf.rvmat"}},{0.5,{"DZ\gear\consumables\data\pelt_wolf_damage.rvmat"}},{0.3,{"DZ\gear\consumables\data\pelt_wolf_damage.rvmat"}},{0.0,{"DZ\gear\consumables\data\pelt_wolf_destruct.rvmat"}}};
};
};
};
};
class Animal_GS_Tiger: AnimalBase
{
simulation = "dayzanimal";
scope = 2;
model = "\ShredAnimals\tigerX2.p3d";
displayName = "$STR_CfgVehicles_Animal_Tiger";
descriptionShort = "$STR_CfgVehicles_Animal_Tiger";
DamageSphereAmmos[] = {"MeleeTiger"};
aiAgentTemplate = "Predators_Tiger";
injuryLevels[] = {1.0,0.5,0.2,0.0};
class DamageSystem
{
class GlobalHealth
{
class Health
{
hitpoints = 600;
healthLabels[] = {1.0,0.7,0.5,0.3,0.0};
};
class Blood
{
hitpoints = 5000;
};
class Shock
{
hitpoints = 600;
};
};
class DamageZones
{
class Zone_Head
{
componentNames[] = {"Zone_Head"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.15;
canBleed = 0;
class Health
{
hitpoints = 120;
transferToGlobalCoef = 1;
};
class Blood: Health
{
hitpoints = 0;
};
class Shock: Health
{
hitpoints = 0;
};
};
class Zone_Neck: Zone_Head
{
componentNames[] = {"Zone_Neck"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 100;
};
};
class Zone_Chest: Zone_Head
{
componentNames[] = {"Zone_Chest"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Belly: Zone_Head
{
componentNames[] = {"Zone_Belly"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Spine: Zone_Head
{
componentNames[] = {"Zone_Spine_Front","Zone_Spine_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Pelvis: Zone_Head
{
componentNames[] = {"Zone_Pelvis"};
transferToZonesNames[] = {"Zone_Spine"};
transferToZonesCoefs[] = {0.5};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 180;
};
};
class Zone_Legs: Zone_Head
{
componentNames[] = {"Zone_Legs_Front","Zone_Legs_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.0;
class Health: Health
{
hitpoints = 100;
};
};
};
};
class Skinning
{
class ObtainedSteaks
{
item = "TigerSteakMeat";
count = 10;
itemZones[] = {"Zone_Chest","Zone_Belly","Zone_Pelvis"};
countByZone[] = {3.0,3.0,3.0};
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedPelt
{
item = "TigerPelt";
count = 1;
quantityCoef = 1;
transferToolDamageCoef = 1;
};
class ObtainedGuts
{
item = "Guts";
count = 2;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedLard
{
item = "Lard";
count = 1;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedBones
{
item = "Bone";
count = 1;
quantityMinMaxCoef[] = {0.7,1};
transferToolDamageCoef = 1;
};
};
class enfanimsys
{
meshObject = "dz\animals\canis_lupus\Data\canis_lupus_skeleton.xob";
graphname = "dz\animals\animations\!graph_files\Wolf\Wolf_Graph.agr";
defaultinstance = "dz\animals\animations\!graph_files\Wolf\Wolf_AnimInstance.asi";
startnode = "AlignToTerrain_Rot";
skeletonName = "canis_lupus_skeleton.xob";
};
class AnimEvents
{
class Steps
{
class Walk1
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 1;
};
class Walk2
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 2;
};
class Walk3
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 3;
};
class Walk4
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 4;
};
class Run1
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 5;
};
class Run2
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 6;
};
class Run3
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 7;
};
class Run4
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 8;
};
class Bodyfall
{
soundLookupTable = "PawMediumBodyfall_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 11;
};
class Settle
{
soundLookupTable = "PawMediumSettle_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 12;
};
class Rest2standA
{
soundLookupTable = "PawMediumRest2standA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 13;
};
class Rest2standB
{
soundLookupTable = "PawMediumRest2standB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 14;
};
class Stand2restA
{
soundLookupTable = "PawMediumStand2restA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 15;
};
class Stand2restB
{
soundLookupTable = "PawMediumStand2restB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 16;
};
class Stand2restC
{
soundLookupTable = "PawMediumStand2restC_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 17;
};
class Jump
{
soundLookupTable = "PawMediumJump_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 18;
};
class Impact
{
soundLookupTable = "PawMediumImpact_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 19;
};
};
class Sounds
{
class TigerBark
{
soundSet = "TigerBark_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerBark_1
{
soundSet = "TigerBark_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerBark_2
{
soundSet = "TigerBark_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerBark2
{
soundSet = "TigerBark2_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerBark3
{
soundSet = "TigerBark3_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerBreath
{
soundSet = "TigerBreath_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerGroans
{
soundSet = "TigerGroans_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerGrowl_A
{
soundSet = "TigerGrowl_A_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerGrowl_B
{
soundSet = "TigerGrowl_B_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerGrowl
{
soundSet = "TigerGrowl_A_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerPant
{
soundSet = "TigerPant_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerPantShort
{
soundSet = "TigerPantShort_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerPantLong
{
soundSet = "TigerPantShort_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerSnarl
{
soundSet = "TigerSnarl_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerSnarlShort
{
soundSet = "TigerSnarlShort_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerWhimper
{
soundSet = "TigerWhimper_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerYelp
{
soundSet = "TigerYelp_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerYawn
{
soundSet = "TigerYelp_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerDeath
{
soundSet = "TigerDeath_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerHowl
{
soundSet = "TigerHowl_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
class TigerHowls
{
soundSet = "TigerHowls_SoundSet";
noise = "TigerRoarNoise";
id = 1;
};
};
class Damages
{
class Bite
{
damage = "TigerBiteDamage";
id = 1;
};
class BiteLow
{
damage = "TigerLowBiteDamage";
id = 2;
};
};
};
class CommandMoveSettings
{
useSpeedMapping = 1;
movementSpeedMapping[] = {0.0,0.25,0.5,1.2,4.5,12.2};
};
class CommandLookAtSettings
{
lookAtFilterTimeout = 0.5;
lookAtFilterSpeed = 1.57;
};
};
class Animal_Shred_Tiger: AnimalBase
{
simulation = "dayzanimal";
scope = 2;
//
model = "\ShredAnimals\tigerX2.p3d";
//model = "\DZ\animals\canis_lupus\canis_lupus.p3d";
displayName = "$STR_CfgVehicles_Animal_Tiger0";
descriptionShort = "$STR_CfgVehicles_Animal_Tigrer1";
//hiddenSelections[] = {"Camo","CamoHair"};
DamageSphereAmmos[] = {"MeleeTiger"};
aiAgentTemplate = "Predators_Tiger";
injuryLevels[] = {1.0,0.5,0.2,0.0};
class DamageSystem
{
class GlobalHealth
{
class Health
{
hitpoints = 200;
healthLabels[] = {1.0,0.7,0.5,0.3,0.0};
};
class Blood
{
hitpoints = 5000;
};
class Shock
{
hitpoints = 100;
};
};
class DamageZones
{
class Zone_Head
{
componentNames[] = {"Zone_Head"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.15;
canBleed = 0;
class Health
{
hitpoints = 120;
transferToGlobalCoef = 1;
};
class Blood: Health
{
hitpoints = 0;
};
class Shock: Health
{
hitpoints = 0;
};
};
class Zone_Neck: Zone_Head
{
componentNames[] = {"Zone_Neck"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 100;
};
};
class Zone_Chest: Zone_Head
{
componentNames[] = {"Zone_Chest"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Belly: Zone_Head
{
componentNames[] = {"Zone_Belly"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Spine: Zone_Head
{
componentNames[] = {"Zone_Spine_Front","Zone_Spine_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 150;
};
};
class Zone_Pelvis: Zone_Head
{
componentNames[] = {"Zone_Pelvis"};
transferToZonesNames[] = {"Zone_Spine"};
transferToZonesCoefs[] = {0.5};
fatalInjuryCoef = 0.05;
class Health: Health
{
hitpoints = 180;
};
};
class Zone_Legs: Zone_Head
{
componentNames[] = {"Zone_Legs_Front","Zone_Legs_Back"};
transferToZonesNames[] = {};
transferToZonesCoefs[] = {};
fatalInjuryCoef = 0.0;
class Health: Health
{
hitpoints = 100;
};
};
};
};
class Skinning
{
class ObtainedSteaks
{
item = "TigerSteakMeat";
count = 10;
itemZones[] = {"Zone_Chest","Zone_Belly","Zone_Pelvis"};
countByZone[] = {3.0,3.0,3.0};
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedPelt
{
item = "TigerPelt";
count = 1;
quantityCoef = 1;
transferToolDamageCoef = 1;
};
class ObtainedGuts
{
item = "Guts";
count = 2;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedLard
{
item = "Lard";
count = 1;
quantityMinMaxCoef[] = {0.5,1};
};
class ObtainedBones
{
item = "Bone";
count = 1;
quantityMinMaxCoef[] = {0.7,1};
transferToolDamageCoef = 1;
};
};
class enfanimsys
{
meshObject = "dz\animals\canis_lupus\Data\canis_lupus_skeleton.xob";
graphname = "dz\animals\animations\!graph_files\Wolf\Wolf_Graph.agr";
defaultinstance = "dz\animals\animations\!graph_files\Wolf\Wolf_AnimInstance.asi";
startnode = "AlignToTerrain_Rot";
skeletonName = "canis_lupus_skeleton.xob";
};
class AnimEvents
{
class Steps
{
class Walk1
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 1;
};
class Walk2
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 2;
};
class Walk3
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 3;
};
class Walk4
{
soundLookupTable = "PawMediumWalk_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 4;
};
class Run1
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 5;
};
class Run2
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 6;
};
class Run3
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 7;
};
class Run4
{
soundLookupTable = "PawMediumRun_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 8;
};
class Bodyfall
{
soundLookupTable = "PawMediumBodyfall_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 11;
};
class Settle
{
soundLookupTable = "PawMediumSettle_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 12;
};
class Rest2standA
{
soundLookupTable = "PawMediumRest2standA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 13;
};
class Rest2standB
{
soundLookupTable = "PawMediumRest2standB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 14;
};
class Stand2restA
{
soundLookupTable = "PawMediumStand2restA_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 15;
};
class Stand2restB
{
soundLookupTable = "PawMediumStand2restB_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 16;
};
class Stand2restC
{
soundLookupTable = "PawMediumStand2restC_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 17;
};
class Jump
{
soundLookupTable = "PawMediumJump_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 18;
};
class Impact
{
soundLookupTable = "PawMediumImpact_LookupTable";
noise = "WolfStepNoise";
effectSet[] = {"WolfStepEffect1","WolfStepEffect2"};
id = 19;
};
};
class Sounds
{
class BearAttack
{
soundSet="BearAttack_SoundSet";
noise="WolfRoarNoise";
id=21;
};
class WolfBark
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 1;
};
class WolfBreath
{
soundSet = "WolfBreath_SoundSet";
noise = "WolfRoarNoise";
id = 4;
};
class WolfGroans
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 5;
};
class WolfGrowl_A
{
soundSet = "WolfGrowl_A_SoundSet";
noise = "WolfRoarNoise";
id = 6;
};
class WolfPant
{
soundSet = "WolfPant_SoundSet";
noise = "WolfRoarNoise";
id = 9;
};
class WolfPantShort
{
soundSet = "WolfPantShort_SoundSet";
noise = "WolfRoarNoise";
id = 10;
};
class WolfPantLong
{
soundSet = "WolfPantShort_SoundSet";
noise = "WolfRoarNoise";
id = 18;
};
class WolfSnarl
{
soundSet = "TigerMumble_SoundSet";
noise = "WolfRoarNoise";
id = 11;
};
class WolfSnarlShort
{
soundSet = "TigerMumble_SoundSet";
noise = "WolfRoarNoise";
id = 12;
};
class WolfWhimper
{
soundSet = "WolfWhimper_SoundSet";
noise = "WolfRoarNoise";
id = 13;
};
class WolfYelp
{
soundSet = "WolfYelp_SoundSet";
noise = "WolfRoarNoise";
id = 14;
};
class WolfYawn
{
soundSet = "WolfYelp_SoundSet";
noise = "WolfRoarNoise";
id = 15;
};
class WolfDeath
{
soundSet = "WolfDeath_SoundSet";
noise = "WolfRoarNoise";
id = 20;
};
class WolfHowl
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 16;
};
class WolfHowls
{
soundSet = "TigerAttack_SoundSet";
noise = "WolfRoarNoise";
id = 17;
};
};
class Damages
{
class Bite
{
damage = "WolfBiteDamage";
id = 1;
};
class BiteLow
{
damage = "WolfLowBiteDamage";
id = 2;
>>>>>>> upstream/master
};
};
};
class CommandMoveSettings
{
useSpeedMapping = 1;
movementSpeedMapping[] = {0.0,0.25,0.5,1.2,4.5,12.2};
};
class CommandLookAtSettings
{
lookAtFilterTimeout = 0.5;
lookAtFilterSpeed = 1.57;
};
<<<<<<< HEAD
};
};
class CfgNonAIVehicles
{
class ProxyHands;
class ProxyAK_47_v58_Proxy: ProxyHands
{
model="\dz\Characters\Proxies\ak_47_v58_proxy.p3d";
};
class ProxyBack;
class ProxyBackpack_DZ: ProxyBack
{
model="\dz\Characters\Proxies\Backpack_DZ.p3d";
};
class ProxyHeadgear;
class ProxyHeadgear_DZ: ProxyHeadgear
{
model="\dz\Characters\Proxies\Headgear_DZ.p3d";
};
class ProxyMask;
class ProxyMask_DZ: ProxyMask
{
model="\dz\Characters\Proxies\Mask_DZ.p3d";
};
class ProxyVest;
class ProxyVest_DZ: ProxyVest
{
model="\dz\Characters\Proxies\Vest_DZ.p3d";
};
class ProxyMelee;
class ProxyMelee_DZ: ProxyMelee
{
model="\dz\Characters\Proxies\Melee_DZ.p3d";
};
};
=======
};
};
>>>>>>> upstream/master
| [
"60577277+Shredorama@users.noreply.github.com"
] | 60577277+Shredorama@users.noreply.github.com |
64d2106617c38ba3b5232acaa8f11149f2e6d4c1 | a0037c2cc5247e453477a0e8dbd7f52115fc1ac9 | /system_api/libc_time_api.cc | aafd84c1078fe03305b7d09dce8e293eda092963 | [
"Apache-2.0"
] | permissive | max19931/lmctfy | 41cd74e5a79fead2bca381270100ff024c742753 | 02ab42ab4702d3cd577ada230369e3f1d7786351 | refs/heads/master | 2023-04-06T11:54:52.979318 | 2019-09-11T13:11:14 | 2019-09-11T13:11:14 | 198,486,076 | 0 | 0 | NOASSERTION | 2019-07-23T18:21:20 | 2019-07-23T18:21:20 | null | UTF-8 | C++ | false | false | 1,361 | cc | // Copyright 2014 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "system_api/libc_time_api.h"
#include <sys/time.h>
namespace system_api {
namespace {
// The "real" implementation of the API.
class LibcTimeApiImpl : public LibcTimeApi {
public:
LibcTimeApiImpl() {}
char *CTimeR(const time_t *timep, char *buf) const override {
return ::ctime_r(timep, buf);
}
time_t Time(time_t *t) const override {
return ::time(t);
}
int GetTimeOfDay(struct timeval *time_value,
struct timezone *time_zone) const override {
return ::gettimeofday(time_value, time_zone);
}
};
} // namespace
// The default singleton instantiation.
const LibcTimeApi *GlobalLibcTimeApi() {
static LibcTimeApi *api = new LibcTimeApiImpl();
return api;
}
} // namespace system_api
| [
"vmarmol@google.com"
] | vmarmol@google.com |
75b875c8635f00e9060798bd0518ec1851a3254a | cde198bebb6a4ed98801158b010f971b0000d5fe | /Algorithm Basics/第四讲 数学知识/快速幂/875. 快速幂.cpp | 7a4d51413277d97f0be3cb3c1531fe6a89e93632 | [] | no_license | YTGhost/AcWing | 8e4588624f5c2871b496e3086045ac47d1365e84 | 505cbd50e74ec3aa146c975a563eafea1f757d88 | refs/heads/master | 2021-09-20T15:35:12.406137 | 2021-09-09T14:13:44 | 2021-09-09T14:13:44 | 249,120,388 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 420 | cpp | #include <iostream>
using namespace std;
typedef long long LL;
int qmi(int a, int b, int p)
{
int res = 1;
while(b)
{
if(b&1) res = (LL)res * a % p;
b >>= 1;
a = (LL)a * a % p;
}
return res;
}
int main()
{
int a, b, p, n, res;
cin >> n;
while(n--)
{
cin >> a >> b >> p;
res = qmi(a, b, p);
cout << res << endl;
}
return 0;
} | [
"283304489@qq.com"
] | 283304489@qq.com |
2451792822531616891f210f08fd5ef103acd409 | cae0243512e1614fc9ef945713c9499d1a56d389 | /src/testers/tester_iteration_all_intervals.h | 36fa1f4008ee2873cf176a2a800712023d6fae0e | [] | no_license | alejandro-reyesamaro/POSL | 15b5b58a9649234fa9bedbca4393550d38a69e7d | 0b3b7cf01a0392fc76394bbc04c52070637b3009 | refs/heads/master | 2021-04-15T11:10:24.998562 | 2016-09-06T15:10:54 | 2016-09-06T15:10:54 | 33,991,084 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 188 | h | #pragma once
#include "tester.h"
class Tester_IterationAllIntervals : public Tester
{
public:
Tester_IterationAllIntervals(int argc, char *argv[]);
string test();
};
| [
"alejandro-reyesamaro@univ-nantes.fr"
] | alejandro-reyesamaro@univ-nantes.fr |
60203109a568b7d6a82a757cf20f811ed6dfd01e | aca493ca1e4a86bb42e557b2015683680ea26f4a | /paint.h | 871c3ab12fd4cd97379d0aedd380bd84192de36e | [] | no_license | BridgeHill/bmp | 9eaa61ffc55a25fffd08660d3a03ad7493a7ae3c | fd19db4f324f9470156a6f9d5e4491e4e0ba0a45 | refs/heads/master | 2021-01-15T08:51:53.972382 | 2016-01-03T16:28:33 | 2016-01-03T16:28:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | h | #ifndef PAINT_H
#define PAINT_H
#include "color.h"
#include "bmp32.h"
#include "QR_Encode.h"
class paint:public bmp32
{
public:
int setBcolor(union color_u Bcolor1);
int setBcolor(unsigned long ulg);
int setFcolor(union color_u Fcolor1);
int setFcolor(unsigned long ulg);
void setBrush(short r1);
void setErase(short r1);
paint(unsigned long w,unsigned long h);
paint(const paint& tniap);
paint& operator=(const paint& tniap);
~paint();
int clear();
bool isin(short x1,short y1);
int addpoint(short x0,short y0);
int drawpoint(short x0,short y0,short r0,bool PointShapeModeIsSquare);
int erasepoint(short x0,short y0);
int clearpoint(short x0,short y0,short r0,bool PointShapeModeIsSquare);
int addcircle(short x0,short y0,short r0);
int addline(short x1,short y1,short x2,short y2);
int addCardioid(short x1,short y1,short a);
int addQRcode(
short x0,
short y0,
short r0,
int nLevel,
int nVersion,
BOOL bAutoExtent,
int nMaskingNo,
LPCSTR lpsSource,
int ncSource = 0
);
private:
union color_u Fcolor;
union color_u Bcolor;
short Brush;
short Erase;
};
#endif
| [
"huangjun.chn@outlook.com"
] | huangjun.chn@outlook.com |
f0e8055ae30fc7d5eddc7d88acc218932e7c0601 | b15e0aa36c90d33a8e76448a82915acfb1e16f50 | /448/lab8/Retailer.h | 5c40dc622493cabe799bdba990d7c912fcaf03d8 | [] | no_license | lcoblamm/EECS | 8f422c40d5b7ce5c8d3081fc7b3e2a6879e3675e | a04f4a05715b567e8aaf606b6484e33d3728caee | refs/heads/master | 2021-05-03T09:11:05.794206 | 2016-04-10T23:37:39 | 2016-04-10T23:37:39 | 30,848,029 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 918 | h | #ifndef RETAILER_H
#define RETAILER_H
#include <list>
#include <string>
#include "Good.h"
#include "Supplier.h"
class Retailer
{
public:
Retailer();
Retailer(std::string retailerName, std::string phone, std::string email, Supplier& supplier);
~Retailer();
void addGood(Good item);
bool acceptPayment(double payment, std::string goodName, int quantity);
bool acceptOrder(std::string goodName, int quantity, double& price);
bool orderGoods(std::string goodName, int quantity, Supplier& supplier);
bool updateGoods(bool bAdding, std::string goodName, int quantityChanged);
void arrangeGoods();
bool makePayment(double payment, Supplier& supplier);
std::list<Good> m_inventory;
std::string m_name;
std::string m_phoneNumber;
std::string m_email;
private:
bool checkStock(std::string goodName, int quantityDesired, double& price);
Supplier m_supplier;
double m_balance;
};
#endif
| [
"lynne.lammers@gmail.com"
] | lynne.lammers@gmail.com |
3a043735788838a700c9a2afc3d0f53fca54dfd2 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_new_log_50.cpp | a31de8c23ad0baa482047a6c133df209e260e642 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | cpp | usage_msg_opt("-f only makes sense when writing a replacement",
git_replace_usage, options); | [
"993273596@qq.com"
] | 993273596@qq.com |
85969229be724aaab35ebe7150b5d8b7847a94e8 | 187c2f0d83eac13d3fdba74600e5154b89258428 | /generic/libc/stdio/vsnprintf.cpp | 9464f87d34bbae33b1ab59ecd86f8ce4b7ec562c | [] | no_license | ZeusJupiter/PowerPC-Demo-OS | 5bcbc33be267600cacd3da6dde5367d6e6807725 | 23f0f10ba21f9f76dd4fb51402c3b237b5a1be2c | refs/heads/master | 2020-04-02T01:40:56.799983 | 2018-10-30T05:49:10 | 2018-10-30T05:49:10 | 153,867,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 362 | cpp | /*
* File name: vsnprintf.cpp
*
* Created on: 2017年6月25日, 下午11:25:50
* Author: victor
* Toolchain:
* Language: C/C++
* description:
*/
#include <macros.h>
#include <types.h>
#include <stdio.h>
#include <stdarg.h>
BEG_EXT_C
int vsnprintf(char *str,size_t n,const char *fmt,va_list ap)
{
int res = 0;
return res;
}
END_EXT_C
| [
"dangyuedong@baidu.com"
] | dangyuedong@baidu.com |
103074ab4ee9665ebcb5e472a0cd5db5833600b6 | d0764568a235e0fcc45324d2ad92c722d269171e | /catkin_ws/src/neural_networks/darknet_ros/darknet_ros/src/yolo_object_detector_node.cpp | 6758896f1f019eb6f874a6c9a4244f9ea3579fde | [] | no_license | edgarVazquez43/TAKESHI | ec2bd833d5cc31fcc5c3f527b7974b06d882f42d | 187dc0c1f934ea58d78ae03bd7c522550f5e4801 | refs/heads/master | 2022-08-20T16:19:11.322250 | 2020-05-12T19:09:31 | 2020-05-12T19:09:31 | 120,661,771 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | cpp | /*
* yolo_obstacle_detector_node.cpp
*
* Created on: Dec 19, 2016
* Author: Marko Bjelonic
* Institute: ETH Zurich, Robotic Systems Lab
*/
#include <darknet_ros/YoloObjectDetector.hpp>
#include <ros/ros.h>
int main(int argc, char** argv)
{
ros::init(argc, argv, "darknet_ros");
ros::NodeHandle nodeHandle("~");
darknet_ros::YoloObjectDetector yoloObjectDetector(nodeHandle);
ros::spin();
return 0;
}
| [
"edgarvazquez1403@gmail.com"
] | edgarvazquez1403@gmail.com |
48cac2425029628709b2ff0f349b1ff66e974a44 | bbcda48854d6890ad029d5973e011d4784d248d2 | /trunk/win/Source/BT_WidgetManager.cpp | c5d5da665a4fd8dc52a778ff3bca77b332dac847 | [
"MIT",
"curl",
"LGPL-2.1-or-later",
"BSD-3-Clause",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LGPL-2.1-only",
"Zlib",
"LicenseRef-scancode-unknown",
"LicenseRef-scancode-unknown-license-reference",
"MS-LPL"
] | permissive | dyzmapl/BumpTop | 9c396f876e6a9ace1099b3b32e45612a388943ff | 1329ea41411c7368516b942d19add694af3d602f | refs/heads/master | 2020-12-20T22:42:55.100473 | 2020-01-25T21:00:08 | 2020-01-25T21:00:08 | 236,229,087 | 0 | 0 | Apache-2.0 | 2020-01-25T20:58:59 | 2020-01-25T20:58:58 | null | UTF-8 | C++ | false | false | 13,077 | cpp | // Copyright 2012 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "BT_Common.h"
#include "BT_WidgetManager.h"
#include "BT_FileSystemActor.h"
#include "BT_FileSystemManager.h"
#include "BT_SceneManager.h"
#include "BT_WindowsOS.h"
#include "BT_Logger.h"
#include "BT_TextManager.h"
#include "BT_RenderManager.h"
#include "BT_Util.h"
// ----------------------------------------------------------------------------
void Widget::onFileAdded( QString strFileName )
{
QFileInfo info(strFileName);
if (info.dir() == QDir(workingDirectory))
scnManager->onFileAdded(strFileName);
}
void Widget::onFileRemoved( QString strFileName )
{
QFileInfo info(strFileName);
if (info.dir() == QDir(workingDirectory))
scnManager->onFileRemoved(strFileName);
}
void Widget::onFileNameChanged( QString strOldFileName, QString strNewFileName )
{
QFileInfo info(strOldFileName);
if (info.dir() == QDir(workingDirectory))
scnManager->onFileNameChanged(strOldFileName, strNewFileName);
}
void Widget::onFileModified( QString strFileName )
{
// check if it was the widget properties that was modified
if (widgetPropertiesPath == strFileName)
{
// reload the widget
widgetManager->reloadWidgetActorOverrides(this, true);
textManager->invalidate();
rndrManager->invalidateRenderer();
}
else
{
QFileInfo info(strFileName);
if (info.dir() == QDir(workingDirectory))
scnManager->onFileModified(strFileName);
}
}
vector<QString> Widget::getWatchDir()
{
return watchDirs;
}
bool Widget::isWidgetOverrideActor( FileSystemActor * actor )
{
QString actorPath = actor->getFullPath();
for (int i = 0; i < actorOverrides.size(); ++i)
{
if (fsManager->isIdenticalPath(actorPath, actorOverrides[i].filePath))
return true;
}
return false;
}
void Widget::launchWidgetOverride(FileSystemActor * actor)
{
QString actorPath = actor->getFullPath();
for (int i = 0; i < actorOverrides.size(); ++i)
{
if (fsManager->isIdenticalPath(actorPath, actorOverrides[i].filePath))
{
if (!actorOverrides[i].launchOverride.isEmpty())
fsManager->launchFile(actorOverrides[i].launchOverride, actorOverrides[i].launchOverrideParams);
}
}
}
QString Widget::getWidgetOverrideLabel(FileSystemActor * actor)
{
QString actorPath = actor->getFullPath();
for (int i = 0; i < actorOverrides.size(); ++i)
{
if (fsManager->isIdenticalPath(actorPath, actorOverrides[i].filePath))
{
return actorOverrides[i].label;
}
}
return dummyLabel;
}
float Widget::getWidgetOverrideScale( FileSystemActor * actor )
{
QString actorPath = actor->getFullPath();
for (int i = 0; i < actorOverrides.size(); ++i)
{
if (fsManager->isIdenticalPath(actorPath, actorOverrides[i].filePath))
{
return actorOverrides[i].scale;
}
}
return 1.0f;
}
Widget::Widget()
: hProcess(NULL)
{}
// ----------------------------------------------------------------------------
WidgetManager::WidgetManager()
: _loaded(false)
{
// XXX: create the widget directory if it does not already exist
}
Json::Value WidgetManager::getValue(QString keyPath)
{
if (_loaded)
{
// otherwise, reload the value from the json node hierarchy
QStringList tokens = keyPath.split(".");
Json::Value node = _root;
for (int i = 0; i < tokens.size(); ++i)
{
// ensure valid key path
if (!node.isMember(stdString(tokens[i])))
{
QString err = QT_TR_NOOP("No such key path exists in the current widget:\n") + keyPath;
::MessageBox(winOS->GetWindowsHandle(), (LPCTSTR) err.utf16(), (LPCWSTR)QT_TR_NOOP("BumpTop Widget Error").utf16(), MB_OK | MB_ICONERROR);
throw invalid_argument("No such key path");
}
node = node[stdString(tokens[i])];
}
return node;
}
return Json::Value();
}
bool WidgetManager::isWidgetDirectory( QString filepath ) const
{
QString expectedDirSuffix(QT_NT(".widget"));
if (filepath.size() > expectedDirSuffix.size())
{
QString lowerFilePath = filepath.toLower();
return (filepath.indexOf(expectedDirSuffix) == (filepath.size() - expectedDirSuffix.size()));
}
return false;
}
Widget * WidgetManager::loadWidgetProperties(QDir widgetPath, QFileInfo widgetPropertiesPath)
{
// load the json file and fill in a new Widget structure
QString widgetDescStr = read_file_utf8(native(widgetPropertiesPath));
// load the description file
LOG("Parsing widget json file...");
QByteArray tmp = widgetDescStr.toUtf8();
_loaded = _reader.parse(tmp.constData(), _root);
if (_loaded)
{
Widget * w = new Widget;
try
{
// XXX: validate the schema
// fill the widget
QString app = qstringFromValue(getValue("widget.startupApplication.path").asString());
if (!app.isEmpty())
w->application = native(make_file(widgetPath, app));
w->applicationParams = qstringFromValue(getValue("widget.startupApplication.args").asString());
w->widgetPropertiesPath = native(widgetPropertiesPath);
w->widgetDirectory = native(widgetPath);
QDir workingDir = native(widgetPath / qstringFromValue(getValue("widget.relativeWorkingDirectory").asString()));
w->workingDirectory = native(workingDir);
if (!reloadWidgetActorOverrides(w, false))
throw runtime_error("Invalid actor overrides");
w->watchDirs.push_back(w->workingDirectory);
w->watchDirs.push_back(w->widgetDirectory);
return w;
}
catch (...)
{
delete w;
}
}
else
{
// notify the user
static bool userNotified = false;
if (!userNotified)
{
::MessageBox(NULL, (LPCWSTR)QT_TR_NOOP("Could not load one or more widgets").utf16(), (LPCWSTR)QT_TR_NOOP("Widget goes boom!").utf16(), MB_OK);
userNotified = true;
}
}
return NULL;
}
void WidgetManager::TerminateExistingWidgetProcesses()
{
QDir widgetPath = winOS->GetWidgetsDirectory();
QString widgetPathStr = native(widgetPath);
TCHAR szFilename[MAX_PATH];
DWORD processIDs[1024];
DWORD cbNeeded = 0;
int numProcesses = 0;
// try and enum all processes
if (!EnumProcesses(processIDs, sizeof(processIDs), &cbNeeded))
return;
// determine how many process id's were returned
numProcesses = cbNeeded / sizeof(DWORD);
// save process handle <-> filename
for (unsigned int i = 0; i < numProcesses; ++i)
{
if (processIDs[i])
{
// Get a handle to the process.
HANDLE hProcess = OpenProcess( PROCESS_TERMINATE | PROCESS_QUERY_INFORMATION |
PROCESS_VM_READ,
FALSE, processIDs[i] );
// Get the process name.
if (NULL != hProcess )
{
HMODULE hMod = 0;
if (EnumProcessModules(hProcess, &hMod, sizeof(hMod), &cbNeeded))
{
GetModuleFileNameEx(hProcess, hMod, szFilename, sizeof(szFilename)/sizeof(TCHAR));
QString filename = QString::fromUtf16((const ushort *) szFilename);
if (filename.startsWith(widgetPathStr, Qt::CaseInsensitive))
{
// terminate the process
TerminateProcess(hProcess, 1);
continue;
}
}
CloseHandle(hProcess);
}
}
}
}
void WidgetManager::initializeWidget(Widget * w)
{
if (!w->application.isEmpty())
{
// start the process associated with this widget
// see http://msdn.microsoft.com/en-us/library/ms682512(VS.85).aspx
STARTUPINFO si = {0};
si.cb = sizeof(STARTUPINFO);
PROCESS_INFORMATION pi = {0};
// Start the child process.
if( !CreateProcess((LPCTSTR) w->application.utf16(), // No module name (use command line)
(LPWSTR) w->applicationParams.utf16(), // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle in heritance to FALSE
CREATE_DEFAULT_ERROR_MODE, // No creation flags
NULL, // Use parent's environment block
(LPWSTR) w->workingDirectory.utf16(), // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi) // Pointer to PROCESS_INFORMATION structure
)
{
QString error = QT_TR_NOOP("Could not load widget: %1").arg(w->application);
::MessageBox(winOS->GetWindowsHandle(), (LPCTSTR) error.utf16(), (LPCWSTR)QT_TR_NOOP("Could not load widget!").utf16(), MB_OK | MB_ICONWARNING);
return;
}
CloseHandle(pi.hThread);
// save the process' process handle
w->hProcess = pi.hProcess;
}
// add to list of active widgets
_widgets.push_back(w);
// start watching the widget's working directory
fsManager->addObject(w);
}
void WidgetManager::uninitializeWidget(Widget * w)
{
// stop watching the widget's working directory
fsManager->removeObject(w);
// TerminateProcess this widget's process
if (!w->application.isEmpty() && w->hProcess)
TerminateProcess(w->hProcess, 0);
// delete this widget
_widgets.erase(find(_widgets.begin(), _widgets.end(), w));
SAFE_DELETE(w);
}
void WidgetManager::initializeActiveWidgets()
{
TerminateExistingWidgetProcesses();
if (_widgets.empty())
{
// loop through the widgets directory and find any widgets in that folder
QDir widgetsDir = winOS->GetWidgetsDirectory();
vector<QString> widgets = fsManager->getDirectoryContents(native(widgetsDir), "*");
for (int i = 0; i < widgets.size(); ++i)
{
// ensure that the widget is valid
QDir widgetPath(widgets[i]);
QFileInfo widgetPropertiesPath(widgetPath, QT_NT("widget.json"));
if (QFileInfo(widgetPath.absolutePath()).isDir() && isWidgetDirectory(widgets[i]) && exists(widgetPropertiesPath))
{
// create the widget
Widget * w = loadWidgetProperties(widgetPath, widgetPropertiesPath);
if (w)
{
initializeWidget(w);
}
}
}
}
}
void WidgetManager::uninitializeActiveWidgets()
{
while (!_widgets.empty())
{
uninitializeWidget(_widgets.front());
}
}
const vector<Widget *>& WidgetManager::getActiveWidgets() const
{
return _widgets;
}
Widget * WidgetManager::getActiveWidgetForFile( QString filepath ) const
{
for (int i = 0; i < _widgets.size(); ++i)
{
QString widgetWorkingDir = _widgets[i]->workingDirectory;
if (filepath.startsWith(widgetWorkingDir, Qt::CaseInsensitive))
{
// the file is located in a particular widget's working directory, so
// we assume that it is managed by that widget
return _widgets[i];
}
}
return NULL;
}
bool WidgetManager::reloadWidgetActorOverrides( Widget * w, bool reloadProperties )
{
if (reloadProperties)
{
// re-read the properties file
QString widgetDescStr = read_file_utf8(w->widgetPropertiesPath);
// load the description file
LOG("Parsing widget json file...");
QByteArray tmp = widgetDescStr.toUtf8();
_loaded = _reader.parse(tmp.constData(), _root);
}
if (_loaded)
{
try
{
// read all the actor overrides
w->actorOverrides.clear();
Json::Value iconOverrides = getValue("widget.icons");
for (int i = 0; i < iconOverrides.size(); ++i)
{
WidgetActorOverride ovr;
ovr.filePath = native(make_file(w->workingDirectory, qstringFromValue(iconOverrides[i]["filename"])));
QString launchApp = qstringFromValue(iconOverrides[i]["launchApplication"]["path"]);
if (!launchApp.isEmpty())
ovr.launchOverride = native(make_file(w->widgetDirectory, launchApp));
ovr.launchOverrideParams = qstringFromValue(iconOverrides[i]["launchApplication"]["args"]);
ovr.label = qstringFromValue(iconOverrides[i]["label"]);
ovr.scale = -1.0f;
if (iconOverrides[i].isMember("scale"))
{
ovr.scale = NxMath::min(6.0f, (float) iconOverrides[i]["scale"].asDouble());
}
// update scene objects depending on override
// - move the object if it already exists
if (reloadProperties)
{
vector<FileSystemActor *> actors = scnManager->getFileSystemActors(ovr.filePath, false, false);
for (int j = 0; j < actors.size(); ++j)
{
actors[j]->setText(ovr.label);
Vec3 actorDims = actors[j]->getDims();
float aspect = (actorDims.x / actorDims.y);
Vec3 dims(GLOBAL(settings).xDist, GLOBAL(settings).zDist / aspect, GLOBAL(settings).yDist);
if (ovr.scale > 0.0f)
{
dims *= ovr.scale;
actors[j]->setSizeAnim(actors[j]->getDims(), dims, 25);
}
}
}
w->actorOverrides.push_back(ovr);
}
return true;
}
catch (...)
{}
}
return false;
} | [
"anandx@google.com"
] | anandx@google.com |
994660357469411a23b6c9bde9c39cf9d0acd018 | 45f8bc68c713a6aad91df02553fcf704070d1f14 | /100121_affineDetect_gaHough/ForCompare_ClassicalGA.cpp | d69d7b76c9d16bdf16ad953896c4a205d9887748 | [
"MIT"
] | permissive | ntthuy11/background-compensation-genetic-hough-transforms | f9832f40b67fbe8eae569433c9f08e93de6828d1 | 68c72931f3a732c8a175570856e3d34f99fac838 | refs/heads/master | 2021-06-16T03:25:48.014285 | 2017-05-06T04:58:17 | 2017-05-06T04:58:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,610 | cpp | #include "ForCompare_ClassicalGA.h"
ForCompare_ClassicalGA::ForCompare_ClassicalGA(IplImage* previousImg, IplImage* currentImg, int popSize, double pc, double pm,
double aRangeStart, double aRangeEnd, double bRangeStart, double bRangeEnd) {
this->previousImg = previousImg;
this->currentImg = currentImg;
this->popSize = popSize; this->halfPopSize = popSize/2;
this->pc = pc;
this->pm = pm;
this->aRangeStart = aRangeStart; this->aRangeEnd = aRangeEnd; this->aRange = int((aRangeEnd - aRangeStart) * MUL_FACTOR_10K + 1);
this->bRangeStart = bRangeStart; this->bRangeEnd = bRangeEnd; this->bRange = int((bRangeEnd - bRangeStart) * MUL_FACTOR_10K + 1);
}
ForCompare_ClassicalGA::~ForCompare_ClassicalGA(void) {
for (int i = 0; i < popSize; i++) delete chromosomes[i]; delete chromosomes;
delete[] errors;
}
double ForCompare_ClassicalGA::getBestA11() { return chromosomes[minErrorIndex][0]; }
double ForCompare_ClassicalGA::getBestA22() { return chromosomes[minErrorIndex][1]; }
double ForCompare_ClassicalGA::getBestB1() { return chromosomes[minErrorIndex][2]; }
double ForCompare_ClassicalGA::getBestB2() { return chromosomes[minErrorIndex][3]; }
double ForCompare_ClassicalGA::getBestError() { return errors[minErrorIndex]; }
double** ForCompare_ClassicalGA::getChromosomes() { return chromosomes; }
// --------------------------------------------------------------------------------------
void ForCompare_ClassicalGA::init() {
this->chromosomes = new double*[popSize];
for (int i = 0; i < popSize; i++) this->chromosomes[i] = new double[N_ITEM];
this->errors = new double[popSize];
// tao ra seed dung cho ngau nhien
__int64 timeForRandSeed;
QueryPerformanceCounter((LARGE_INTEGER*)&timeForRandSeed);
unsigned int t = (unsigned int)(timeForRandSeed % 1000);
srand(t);
}
void ForCompare_ClassicalGA::createPopulation() {
for (int i = 0; i < popSize; i++) {
chromosomes[i][0] = double(rand() % aRange)/MUL_FACTOR_10K + aRangeStart;
chromosomes[i][1] = double(rand() % aRange)/MUL_FACTOR_10K + aRangeStart;
chromosomes[i][2] = double(rand() % bRange)/MUL_FACTOR_10K + bRangeStart;
chromosomes[i][3] = double(rand() % bRange)/MUL_FACTOR_10K + bRangeStart;
}
}
double ForCompare_ClassicalGA::fitness() { // is the compensation error
double errorMin = 1000;
for (int i = 0; i < popSize; i++) {
errors[i] = Util::calculateAvgIntensityWrtAffine(previousImg, currentImg, chromosomes[i][0], chromosomes[i][1], chromosomes[i][2], chromosomes[i][3]);
if (errorMin > errors[i]) {
errorMin = errors[i];
minErrorIndex = i; // used to get the smallest error
}
}
return errorMin;
}
void ForCompare_ClassicalGA::selection() {
for (int i = 0; i < popSize; i++) {
int randN = rand() % popSize;
if (errors[i] > errors[randN]) {
for (int j = 0; j < N_ITEM; j++) chromosomes[i][j] = chromosomes[randN][j];
} else {
for (int j = 0; j < N_ITEM; j++) chromosomes[randN][j] = chromosomes[i][j];
}
}
}
void ForCompare_ClassicalGA::crossover() {
for (int i = 0; i < halfPopSize; i++) {
for (int j = 0; j < N_ITEM; j++) {
double randN = double(rand() % MUL_FACTOR_10001) / MUL_FACTOR_10K;
if (randN < this->pc) {
int halfPopSize_i = i + halfPopSize;
double tmp = chromosomes[i][j];
chromosomes[i][j] = chromosomes[halfPopSize_i][j];
chromosomes[halfPopSize_i][j] = tmp;
}
}
}
}
void ForCompare_ClassicalGA::mutation() {
for (int i = 0; i < popSize; i++) {
double randN = double(rand() % MUL_FACTOR_10001) / MUL_FACTOR_10K; if (randN < this->pm) chromosomes[i][0] = double(rand() % aRange)/MUL_FACTOR_10K + aRangeStart;
randN = double(rand() % MUL_FACTOR_10001) / MUL_FACTOR_10K; if (randN < this->pm) chromosomes[i][1] = double(rand() % aRange)/MUL_FACTOR_10K + aRangeStart;
randN = double(rand() % MUL_FACTOR_10001) / MUL_FACTOR_10K; if (randN < this->pm) chromosomes[i][2] = double(rand() % bRange)/MUL_FACTOR_10K + bRangeStart;
randN = double(rand() % MUL_FACTOR_10001) / MUL_FACTOR_10K; if (randN < this->pm) chromosomes[i][3] = double(rand() % bRange)/MUL_FACTOR_10K + bRangeStart;
}
}
void ForCompare_ClassicalGA::exchangeChromosomes(double** toChromosomes) {
for (int i = 0; i < popSize; i++) {
double randN = double(rand() % MUL_FACTOR_10001) / MUL_FACTOR_10K;
if (randN < this->pc) {
for (int j = 0; j < N_ITEM; j++) {
double tmp = chromosomes[i][j];
chromosomes[i][j] = toChromosomes[i][j];
toChromosomes[i][j] = tmp;
}
}
}
} | [
"noreply@github.com"
] | ntthuy11.noreply@github.com |
45d8347de3b5e6b8dd8655c7c657b3d760181cf6 | 60dbda48a0554a83265d95b973f26e8400865df3 | /Algorith All/Selection Sort/Selection Sort.cpp | 5c233a4f554adf3b285a672da0e32291c739b0cb | [] | no_license | aeronzafar/algorithm | 7260192cc28ba31ae8be320119f970c7bcdebe38 | 91c5b4d7af94d0ec0a5244705bb664e64942278a | refs/heads/master | 2020-05-17T16:39:56.535252 | 2019-04-27T22:09:53 | 2019-04-27T22:09:53 | 183,824,967 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | cpp | #include<stdio.h>
#include<conio.h>
void Selection_Sort(int arr[], int n)
{
int mid, temp;
for(int i=0;i<n-1;i++)
{
mid=i;
for(int j=i+1;j<n;j++)
{
if(arr[mid]>arr[j])
mid=j;
}
if(mid!=i)
{
temp=arr[mid];
arr[mid]=arr[i];
arr[i]=temp;
}
}
}
int main()
{
int n;
printf("\nEnter how much no you want to enter : ");
scanf("%d",&n);
int arr[n];
printf("\nInput %d data : ",n);
for(int i=0;i<n;i++)
scanf("%d",&arr[i]);
printf("\nBefore Sorted array:");
for(int i=0;i<n;i++)
printf("%d ", arr[i]);
Selection_Sort(arr,n);
printf("\nAfter Sorted array:");
for(int i=0;i<n;i++)
printf("%d ", arr[i]);
return 0;
}
| [
"noreply@github.com"
] | aeronzafar.noreply@github.com |
cc56ca0de51008a01cea450d3c60c46d3c766f59 | 2c101134f5c113ef98fa5ab846965ce6ee27ad0f | /maxHeight.cpp | e4bcbb20b205caa0b3fb25574b5fe8dee3eb9633 | [] | no_license | Gabriel0402/Leetcode_practice | 6a4282d4ce02c5611e39d3f956bb34e2b19efeb1 | f92b10b824ce04db4b689484011bbf3d506d532f | refs/heads/master | 2020-07-05T06:27:31.797868 | 2014-02-10T14:55:32 | 2014-02-10T14:55:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | cpp | #include <iostream>
using namespace std;
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int maxHeight(TreeNode *root)
{
if(root==NULL) return 0;
int left=maxHeight(root->left)+1;
int right=maxHeight(root->right)+1;
return left>right?left:right;
}
bool isBalanced(TreeNode *root) {
if(root==NULL) return true;
while(root!=NULL)
{
int left=maxHeight(root->left);
int right=maxHeight(root->right);
if(abs(left-right)>=2) return false;
else return isBalanced(root->left) && isBalanced(root->right);
}
}
};
int main(int argc, char *argv[]) {
} | [
"zhuch@seas.upenn.edu"
] | zhuch@seas.upenn.edu |
509c9c69ad22a2ac9a29cb544b319c5fd40ea1fb | 1d1f67e1a3f98871a1b9ba100704083e426fade9 | /Leet2019/PreimageSizeofFactorialZeroesFunction.cpp | 058bd50e335f890d75b46a2d0fc5299883011ca0 | [] | no_license | flameshimmer/leet2019.io | fae46200ed78fb0478db726b8c31e976e7d57001 | 47808dc97609f5a96c97a6fc703b98c75ad9a2b3 | refs/heads/master | 2022-07-22T10:51:10.651558 | 2022-07-07T18:05:48 | 2022-07-07T18:05:48 | 202,389,705 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | #include "stdafx.h"
//
namespace Solution2019
{
namespace PreimageSizeofFactorialZeroesFunction
{
void Main() {
string test = "tst test test";
print(test);
}
}
}
| [
"Ning@ningmadev99.redmond.corp.microsoft.com"
] | Ning@ningmadev99.redmond.corp.microsoft.com |
c73011cb8787f559ce3e721fb21031ab893a6b13 | 7fc7f2389e0c356ad853d4cb651ec3020493ee20 | /framework/src/Core/Network/Udp/UdpManager.cpp | 137276529b0d586d6deec624813e5c817467521c | [
"MIT"
] | permissive | gautier-lefebvre/cppframework | 50c5f5c2d83a4431a195578e7ce0c76bdf762913 | bc1c3405913343274d79240b17ab75ae3f2adf56 | refs/heads/master | 2021-01-10T11:16:40.589126 | 2016-09-21T19:10:54 | 2016-09-21T19:10:54 | 43,247,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,191 | cpp | #include <algorithm>
#include "Library/ThirdParty/cppformat/format.hh"
#include "Library/Tool/Converter.hpp"
#include "Library/Tool/Macro.hh"
#include "Core/Network/Udp/UdpManager.hh"
#include "Core/Network/Exception.hh"
using namespace fwk;
UdpManager::UdpManager(NotifiableThread& input, NotifiableThread& output):
_servers(),
_clients(),
_input(input),
_output(output)
{}
UdpManager::~UdpManager(void) {}
void UdpManager::clear(void) {
// close every server
{
SCOPELOCK(&(this->_servers));
for (auto server_it = this->_servers.begin(); server_it != this->_servers.end() ; ++server_it) {
for (auto& client : (*server_it).clients) {
// fire onClientClosed event
(*server_it).events.onClientClosed.fireSync(client);
// close client
UdpSocketClient::returnToPool(client);
}
// fire onClosed event
(*server_it).events.onClosed.fireSync((*server_it).server);
// close server
UdpSocketServer::returnToPool((*server_it).server);
// remove server
server_it = this->_servers.erase(server_it);
}
}
// close every connection
{
SCOPELOCK(&(this->_clients));
for (auto client_it = this->_clients.begin(); client_it != this->_clients.end() ; ++client_it) {
// fire onClosed event
(*client_it).events.onClosed.fireSync((*client_it).socket);
// close connection
UdpSocketStream::returnToPool((*client_it).socket);
// remove connection
client_it = this->_clients.erase(client_it);
}
}
}
UdpServer& UdpManager::createServer(uint16_t port) {
UdpSocketServer* socket = UdpSocketServer::getFromPool();
try {
socket->init();
socket->socket();
UdpServer* server = nullptr;
{
SCOPELOCK(&(this->_servers));
if (std::find_if(this->_servers.begin(), this->_servers.end(), [=] (const UdpServer& s) -> bool { return s.port == port; }) != this->_servers.end()) {
throw NetworkException(fmt::format("The port {0} was already associated to a server", port));
}
this->_servers.emplace_back(port, socket);
server = &(this->_servers.back());
}
return *server;
} catch (const NetworkException&) {
UdpSocketServer::returnToPool(socket);
throw;
}
}
void UdpManager::run(const UdpServer& server) {
{
SCOPELOCK(&(this->_servers));
auto serverIt = std::find_if(this->_servers.begin(), this->_servers.end(), [&] (const UdpServer& s) -> bool { return s.port == server.port; });
if (serverIt != this->_servers.end()) {
try {
UdpServer& s = (*serverIt);
s.server->bind(s.port);
s.active = true;
INFO(fmt::format("UDP: listening on port {0}", s.port));
} catch (const std::exception&) {
UdpSocketServer::returnToPool((*serverIt).server);
this->_servers.erase(serverIt);
throw;
}
} else {
throw NetworkException("This server was never created");
}
}
{
SCOPELOCK(&(this->_input.condition));
this->_input.condition.notify();
}
}
void UdpManager::close(uint16_t port) {
SCOPELOCK(&(this->_servers));
// find the server
auto server_it = std::find_if(this->_servers.begin(), this->_servers.end(),
[&] (const UdpServer& elem) -> bool { return elem.port == port; });
// if found
if (server_it != this->_servers.end()) {
for (auto& client : (*server_it).clients) {
// fire onClientClosed event
(*server_it).events.onClientClosed.fireSync(client);
// send client back to pool
UdpSocketClient::returnToPool(client);
}
// fire server close event
(*server_it).events.onClosed.fireSync((*server_it).server);
// close server
UdpSocketServer::returnToPool((*server_it).server);
// remove server
this->_servers.erase(server_it);
return;
}
}
void UdpManager::close(const UdpServer& server) {
this->close(server.port);
}
void UdpManager::blacklist(uint16_t port, uint32_t addr) {
SCOPELOCK(&(this->_servers));
// find the server
auto server_it = std::find_if(this->_servers.begin(), this->_servers.end(),
[&] (const UdpServer& elem) -> bool { return elem.port == port; });
// if found
if (server_it != this->_servers.end()) {
(*server_it).blacklist.insert(addr);
return;
}
}
UdpClient& UdpManager::createClient(const std::string& hostname, uint16_t port) {
UdpSocketStream* socket = UdpSocketStream::getFromPool();
try {
socket->socket();
socket->init(hostname, port);
UdpClient* client = nullptr;
{
SCOPELOCK(&(this->_clients));
if (std::find_if(this->_clients.begin(), this->_clients.end(), [=] (const UdpClient& c) -> bool { return c.hostname == hostname && c.port == port; }) != this->_clients.end()) {
throw NetworkException(fmt::format("A client to {0}:{1} already exists", hostname, port));
}
this->_clients.emplace_back(hostname, port, socket);
client = &(this->_clients.back());
}
return *client;
} catch (const NetworkException&) {
UdpSocketStream::returnToPool(socket);
throw;
}
}
void UdpManager::run(const UdpClient& client) {
{
SCOPELOCK(&(this->_clients));
auto clientIt = std::find_if(this->_clients.begin(), this->_clients.end(), [&] (const UdpClient& c) -> bool { return c.hostname == client.hostname && c.port == client.port; });
if (clientIt != this->_clients.end()) {
try {
UdpClient& c = (*clientIt);
c.active = true;
INFO(fmt::format("UDP: prepared connection to {0}:{1}", c.hostname, c.port));
} catch (const std::exception&) {
UdpSocketStream::returnToPool((*clientIt).socket);
this->_clients.erase(clientIt);
throw;
}
} else {
throw NetworkException("This client was never created");
}
}
}
void UdpManager::close(const std::string& hostname, uint16_t port) {
SCOPELOCK(&(this->_clients));
// find the connection
auto client_it = std::find_if(this->_clients.begin(), this->_clients.end(),
[&] (const UdpClient& elem) -> bool { return elem.hostname == hostname && elem.port == port; });
// if found
if (client_it != this->_clients.end()) {
// fire close event
(*client_it).events.onClosed.fireSync((*client_it).socket);
// close socket
UdpSocketStream::returnToPool((*client_it).socket);
// remove connection
this->_clients.erase(client_it);
return;
}
}
void UdpManager::close(const UdpClient& connection) {
this->close(connection.hostname, connection.port);
}
void UdpManager::push(AUdpSocketIO* socket, const void* data, size_t size) {
if (socket != nullptr) {
ByteArray* datagram = ByteArray::getFromPool(data, size);
try {
socket->push(datagram);
{
SCOPELOCK(&(this->_output.condition));
this->_output.condition.notify();
}
} catch (const NetworkException& e) {
ByteArray::returnToPool(datagram);
// find server
{
SCOPELOCK(&(this->_servers));
for (auto& server : this->_servers) {
auto client_it = std::find(server.clients.begin(), server.clients.end(), socket);
if (client_it != server.clients.end()) {
this->__onIOException(server.events.onClientClosed, reinterpret_cast<UdpSocketClient*>(socket), e.what());
server.clients.erase(client_it);
return;
}
}
}
// find connection
{
SCOPELOCK(&(this->_clients));
auto client_it = std::find_if(this->_clients.begin(), this->_clients.end(),
[&] (const UdpClient& elem) -> bool { return elem.socket == socket; });
if (client_it != this->_clients.end()) {
this->__onIOException((*client_it).events.onClosed, reinterpret_cast<UdpSocketStream*>(socket), e.what());
this->_clients.erase(client_it);
return;
}
}
// if no server / connection found
// close the socket
// THIS IS NOT NORMAL, THIS MEANS A POINTER TO THE SOCKET IS STILL USED IN THE APPLICATION
// EVEN THOUGH IT WAS CLOSED BEFORE
CRITICAL("Invalid UDP socket still used inside application.");
delete socket; // prevent leaks, but can lead to other bugs (this is one in itself anyway)
}
}
}
void UdpManager::push(AUdpSocketIO* socket, const ByteArray* bytearray) {
if (bytearray != nullptr) {
this->push(socket, bytearray->getBytes(), bytearray->getSize());
}
}
void UdpManager::fillSetRead(fd_set& fdset, int& fdmax, uint32_t& nb) {
{
SCOPELOCK(&(this->_servers));
for (auto& server : this->_servers) {
if (server.active) {
server.server->addToSet(fdset, fdmax);
nb++;
}
}
}
{
SCOPELOCK(&(this->_clients));
for (auto& client : this->_clients) {
if (client.active) {
client.socket->addToSet(fdset, fdmax);
nb++;
}
}
}
}
void UdpManager::fillSetWrite(fd_set& fdset, int& fdmax, uint32_t& nb) {
{
SCOPELOCK(&(this->_servers));
// for each server -> add to set if at least one client has data to send
for (auto& server : this->_servers) {
if (server.active) {
for (auto& client : server.clients) {
if (client->hasDataToSend()) {
server.server->addToSet(fdset, fdmax);
nb++;
break;
}
}
}
}
}
{
SCOPELOCK(&(this->_clients));
for (auto& client : this->_clients) {
if (client.active && client.socket->hasDataToSend()) {
client.socket->addToSet(fdset, fdmax);
nb++;
}
}
}
}
void UdpManager::send(fd_set& set) {
{
SCOPELOCK(&(this->_servers));
for (auto& server : this->_servers) {
if (server.active && server.server->isset(set)) {
for (auto client_it = server.clients.begin() ; client_it != server.clients.end() ; ++client_it) {
if ((*client_it)->hasDataToSend()) {
try {
server.server->sendto(*client_it);
} catch (const NetworkException& e) {
// fire client closed event + close client
this->__onIOException(server.events.onClientClosed, *client_it, e.what());
// remove client
client_it = server.clients.erase(client_it);
}
}
}
}
}
}
{
SCOPELOCK(&(this->_clients));
for (auto client_it = this->_clients.begin() ; client_it != this->_clients.end() ; ++client_it) {
if ((*client_it).active && (*client_it).socket->isset(set)) {
try {
(*client_it).socket->sendto();
} catch (const NetworkException& e) {
// fire closed event + close connection
this->__onIOException((*client_it).events.onClosed, (*client_it).socket, e.what());
// remove connection
client_it = this->_clients.erase(client_it);
}
}
}
}
}
void UdpManager::recv(fd_set& set) {
{
SCOPELOCK(&(this->_servers));
sockaddr_in addr;
for (auto& server : this->_servers) {
if (server.active && server.server->isset(set)) {
memset(&addr, 0, sizeof(sockaddr_in)); // reinit the addr in order not to remove a valid client because of old data
ByteArray* datagram = nullptr;
bool success = true; // true -> recvfrom did not except / false -> recvfrom did except
try {
datagram = server.server->recvfrom(addr);
} catch (const NetworkException& e) {
WARNING(e.what());
continue;
}
// find client
auto client_it = std::find_if(server.clients.begin(), server.clients.end(),
[&] (const UdpSocketClient* socket) -> bool { return *socket == addr; });
if (success) {
try {
// if client found -> add datagram
// if client not found -> check if client not blacklisted / accepted
// add client + add datagram
if (client_it != server.clients.end()) {
(*client_it)->received(datagram);
// fire data received event
server.events.onReceivedData.fireSync(*client_it);
} else {
uint32_t remote_ip = static_cast<uint32_t>(addr.sin_addr.s_addr);
// if accept list is not empty and remote ip not in it
if (!(server.accept.empty()) && std::find(server.accept.begin(), server.accept.end(), remote_ip) == server.accept.end()) {
throw NetworkException("Unauthorized IP attempted to send data (UDP)");
}
// if blacklisted ip
if (!(server.blacklist.empty()) && std::find(server.blacklist.begin(), server.blacklist.end(), remote_ip) != server.blacklist.end()) {
throw NetworkException("Blacklisted IP attempted to send data (UDP)");
}
UdpSocketClient* client = UdpSocketClient::getFromPool(addr);
try {
client->received(datagram);
} catch (const NetworkException&) {
WARNING("Something went wrong, a single datagram could not overflow the limit");
UdpSocketClient::returnToPool(client);
throw;
}
server.clients.push_back(client);
// fire new client event
server.events.onNewClient.fireSync(client);
// fire data received event
server.events.onReceivedData.fireSync(client);
}
} catch (const NetworkException& e) {
ByteArray::returnToPool(datagram);
WARNING(e.what());
}
} else {
// if recvfrom excepted and client in list -> remove client
if (client_it != server.clients.end()) {
// fire onClientClosed event
server.events.onClientClosed.fireSync(*client_it);
// remove client
client_it = server.clients.erase(client_it);
}
}
}
}
}
{
SCOPELOCK(&(this->_clients));
for (auto client_it = this->_clients.begin() ; client_it != this->_clients.end() ; ++client_it) {
if ((*client_it).active && (*client_it).socket->isset(set)) {
try {
// receive data
(*client_it).socket->recvfrom();
// fire onReceivedData event
(*client_it).events.onReceivedData.fireSync((*client_it).socket);
} catch (const NetworkException& e) {
// fire onClosed event + close socket
this->__onIOException((*client_it).events.onClosed, (*client_it).socket, e.what());
// remove connection
client_it = this->_clients.erase(client_it);
}
}
}
}
}
void UdpManager::__onIOException(EventHandle<UdpSocketClient*>& event, UdpSocketClient* socket, const std::string&) {
// fire closed event
event.fireSync(socket);
// close socket
UdpSocketClient::returnToPool(socket);
}
void UdpManager::__onIOException(EventHandle<UdpSocketStream*>& event, UdpSocketStream* socket, const std::string&) {
// fire closed event
event.fireSync(socket);
// close socket
UdpSocketStream::returnToPool(socket);
}
| [
"gautier.lfbvr@gmail.com"
] | gautier.lfbvr@gmail.com |
8138d6bdbca48cd4a59ad6c2a830410ea25818c2 | 24240f765d461af8ce704ed34667ddc53e995b07 | /2_LEETCODE/Easy/basics/deleteNodeLinkedList.cpp | 6e301ee11a283fb335f07fae8cbf18cfde0e91c2 | [] | no_license | Kun4lpal/CodePractice | af0c884e4c8c0036fe5cb525d4e438c6f1435d00 | 5ea616fb9088b74a462b8dbdb56a7d64255f8903 | refs/heads/master | 2020-03-30T11:45:47.545226 | 2018-10-02T11:59:56 | 2018-10-02T11:59:56 | 151,191,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64 | cpp | void deleteNode(ListNode* node) {
*node = *node->next;
} | [
"kupaliwa@syr.edu"
] | kupaliwa@syr.edu |
6857df683365f57f68d57eca3c090ba8cc57fb89 | 88ed2661443c88f9519b39124d32264a825813bd | /tcrbase.h | b6cd8eb135c6b8d25cbd16975548ef443bc59aeb | [] | no_license | aray1982/TCRMeasure | 95755c4869ac1ca5b19555f784ce80880316076a | cd27d2bd244d762f20d2688d96104e15e09c94de | refs/heads/master | 2020-04-12T08:28:12.472540 | 2018-12-24T00:15:34 | 2018-12-24T00:15:34 | 162,385,131 | 0 | 0 | null | 2018-12-24T00:15:35 | 2018-12-19T05:01:33 | C | UTF-8 | C++ | false | false | 1,089 | h | #ifndef TCRBASE_H
#define TCRBASE_H
#include <QWidget>
#include<QPushButton>
#include"gloabaldefine.h"
#include<QCheckBox>
#include<QGroupBox>
//TCR选择界面,基板操作类
class TCRBase : public QWidget
{
Q_OBJECT
public:
explicit TCRBase(QWidget *parent = nullptr,QString name ="TA",int No=0);
void setResistance(int i); //set point r;
void clearResistance(int i);//clear point r;
void setchoosed();//jud choosed
void setbasename(QString name);//set basename
bool isChoosed();
flag_t Rstate();
void clickcancelstate();//取消定制状态
QPushButton* thebutton();//return button
QString returnbasename();
void InitialBase();
signals:
void clicksure(int i);
public slots:
void on_basebutton_clicked();
private:
void clicksurestate();
private:
QPushButton *m_Button;
flag_t m_resistancestate;
bool m_chooseble;
bool m_clickstate;
QString m_basename;
QString m_lable;
QCheckBox *m_stateindicator;
int m_no;
};
#endif // TCRBASE_H
| [
"noreply@github.com"
] | aray1982.noreply@github.com |
2fce973db3eeb0df9799e8c597a90e8b217e8422 | 5b8aaf1a97853defedaa7593891c4191612ff09b | /DayThree/DayThreePartTwo.cpp | 67fe22495c4436b5fa7d16756d7586e62ee68b10 | [] | no_license | star8kid/AdventOfCode2020 | 0ef98b7bd3be6200c13cf138895f12ce50ed1611 | 1d0b2ec2646bd422b0ea7e3bcd29451114462f58 | refs/heads/main | 2023-02-06T04:30:29.804196 | 2021-01-03T20:08:14 | 2021-01-03T20:08:14 | 318,045,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,684 | cpp | #include<iostream>
#include<string>
#include<vector>
using namespace std;
//Time Lapse: 28 minutes and 37 seconds
// (Yeah, I didn't know there were other datatypes than `int`, don't make fun of me)
uint64_t treeSlopeInterceptCount(vector<string> inputMap, int riseSlope, int runSlope){
int treeCount = 0;
int currentXValue = 0;
int currentYValue = 0;
while(true){
// cout << "The current coordinate is: [" << currentXValue << "," << currentYValue << "]" << endl;
// Checks if the current coordinate point is a tree and increments the count if it is
if( inputMap[currentYValue][currentXValue] == '#' ){
treeCount++;
}
// Checks if the next coordinate point down by the "rise" of the slope
// slope would be possible. If not, it breaks because that'd be the end of the map.
if( (currentYValue + -riseSlope) <= inputMap.size() - 1 ){
currentYValue += -riseSlope;
}
else{
break;
}
if( (currentXValue + runSlope) <= inputMap[0].length() - 1 ){
currentXValue += runSlope;
}
// Checks to see if the next x value in the coordinate point would be in
// the same string. If it is not, it checks to see how much further it is from
// the end of the string, substracts that from the slope, and uses the remainder at
// the start of the same string to represent the horizontal cross over.
else{
currentXValue = currentXValue - (inputMap[0].length()) + runSlope;
}
// cout << "The the next checking coordinate is: [" << currentXValue << "," << currentYValue << "]" << endl;
}
cout << "The amount of trees intercepted is: " << treeCount << endl;
return treeCount;
}
int main(){
string tempString;
vector<string> landMapMatrix;
uint64_t treeCountProduct;
while(true){
bool is_valid_input = bool (cin >> tempString);
landMapMatrix.push_back(tempString);
if (is_valid_input == false){
break;
}
}
treeCountProduct = treeSlopeInterceptCount(landMapMatrix, -1 , 1) * treeSlopeInterceptCount(landMapMatrix, -1 , 3) * treeSlopeInterceptCount(landMapMatrix, -1 , 5) * treeSlopeInterceptCount(landMapMatrix, -1, 7) * treeSlopeInterceptCount(landMapMatrix, -2 , 1);
// treeCountProduct = treeSlopeInterceptCount(landMapMatrix, -1 , 1) * treeSlopeInterceptCount(landMapMatrix, -1 , 3) * treeSlopeInterceptCount(landMapMatrix, -1 , 5) * treeSlopeInterceptCount(landMapMatrix, -1, 7);
// treeCountProduct = treeSlopeInterceptCount(landMapMatrix, -2,1);
cout << treeCountProduct;
} | [
"2022younganthonyn@aaps.k12.mi.us"
] | 2022younganthonyn@aaps.k12.mi.us |
7c131cffe50d055c51f8308503cff6bb5a455a1f | dce7fae275df536abacc8328e598a28ac927b8bd | /my_cpp_oop/Shapes.h | a9c7674c32ae5dee63c6539304a6f697782262f1 | [] | no_license | ILevchugov/oop_task | b10eaba0b3ac936a735a101cf9dc98a33ddf0b78 | 12fce1eea1ac555e8f61cd30d33e4a801611ecb0 | refs/heads/master | 2022-05-24T08:24:55.981423 | 2020-04-27T09:21:38 | 2020-04-27T09:21:38 | 258,524,083 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,268 | h | #pragma once
#define _USE_MATH_DEFINES
#include "Container.h"
#include <iostream>
#include <math.h>
#include "Base.h"
#include "Container.h"
#include <sstream>
static double const eps = 0.001;
class Shape : public Printable {
public:
Shape() {
++sm_count;
}
Shape(Shape const& shape) {
++sm_count;
}
virtual ~Shape() {
--sm_count;
}
static int getCount() {
return sm_count;
}
private:
static int sm_count;
};
int Shape::sm_count = 0;
class Point : public Shape, public Named {
public:
Point(double x, double y):
Named("Point"),
m_x(x),
m_y(y) {}
Point(std::string name, double x, double y) :
Named(name),
m_x(x),
m_y(y) {}
double getX() const {
return m_x;
}
double getY() const {
return m_y;
}
std::string print() const override {
std::stringstream description;
description << Named::print() << "\n"
<< "x: " << m_x << " y: " << m_y << "\n";
return description.str();
}
private:
double m_x;
double m_y;
};
class Circle : public Shape, public Named {
public:
Circle(std::string name, double radius):
Named(name),
m_radius(radius) {
if (radius <= 0) {
throw "Wrong radius";
}
}
Circle(double radius) :
Circle("Circle", radius) {}
double getRadius() {
return m_radius;
}
double getArea() const {
return M_PI * m_radius * m_radius;
}
std::string print() const override {
std::stringstream description;
description << Named::print() << "\n"
<< "Radius: " << m_radius << "\n"
<< "Area: " << getArea() << "\n";
return description.str();
}
private:
double m_radius;
};
class Rectangle : public Shape, public Named {
public:
Rectangle(std::string name, Point & pointA, Point & pointB):
Named(name),
m_pointA(&pointA),
m_pointB(&pointB) {
if (pointA.getX() == pointB.getX() || pointA.getY() == pointB.getY()) {
throw ("wrong points");
}
}
Rectangle(Point & pointA, Point & pointB):
Rectangle("Reactangle", pointA, pointB) {}
~Rectangle() {
delete m_pointA;
delete m_pointB;
}
double getArea() const {
return abs((m_pointA->getX() - m_pointB->getX()) * (m_pointA->getY() - m_pointB->getY()));
}
Point getPointA() {
return * m_pointA;
}
Point getPointB() {
return * m_pointB;
}
std::string print() const override {
std::stringstream description;
description << Named::print() << "\n"
<< "Point A: " << m_pointA->print()
<< "Point B: " << m_pointB->print()
<< "Area = " << getArea() << "\n";
return description.str();
}
private:
Point * m_pointA;
Point * m_pointB;
};
class Square : public Shape, public Named {
public:
Square(std::string name, Rectangle & rectangle) :
Named(name),
m_squareRect(&rectangle) {
if (isSquareExist() == false) {
throw "Wrong square";
}
}
Square(Rectangle & rectangle) :
Square("Square", rectangle) {}
~Square() {
delete m_squareRect;
}
std::string print() const override {
std::stringstream description;
description << Named::print() << "\n"
<< m_squareRect->print()<<"\n";
return description.str();
}
private:
Rectangle * m_squareRect;
bool isSquareExist() {
Point pointA = m_squareRect->getPointA();
Point pointB = m_squareRect->getPointB();
return (abs(abs(pointA.getX() - pointB.getX()) - abs(pointA.getY() - pointB.getY())) < eps);
}
};
double calcDistance(Point const & pointA, Point const & pointB) {
return sqrt((pointA.getX() - pointB.getX()) * (pointA.getX() - pointB.getX()) +
(pointA.getY() - pointB.getY()) * (pointA.getY() - pointB.getY()));
}
class Polyline : public Shape, public Named {
public:
Polyline(std::string name, Container<Point> const & points) :
Named(name),
m_points(points) {}
Polyline(Container<Point> & points) :
Polyline("Polyline", points) {}
~Polyline() {
m_points.clear();
}
void addPoint(Point const & point) {
m_points.add(point);
}
double calcLength() const {
double length = 0;
for (uint32_t i = 0; i < m_points.size() - 1; i++) {
length += calcDistance(m_points.get(i), m_points.get(i + 1));
}
return length;
}
std::string print() const override {
std::stringstream description;
description << Named::print() << "\n";
for (uint32_t i = 0; i < m_points.size(); i++) {
description << m_points.get(i).print();
}
description << "Length = " << calcLength() << "\n";
return description.str();
}
private:
Container<Point> m_points;
};
class Polygon : public Shape, public Named {
public:
Polygon(std::string name, Container<Point> const & points) :
Named(name),
m_points(points) {
}
Polygon(Container<Point> const & points):
Polygon("Polygon", points) {}
~Polygon() {
m_points.clear();
}
double calcPerimetr() const {
double length = 0;
for (uint32_t i = 0; i < m_points.size() - 1; i++) {
length += calcDistance(m_points.get(i), m_points.get(i + 1));
}
length += calcDistance(m_points.get(0), m_points.get(m_points.size()-1));
return length;
}
std::string print() const override {
std::stringstream description;
description << Named::print() << "\n";
for (uint32_t i = 0; i < m_points.size(); i++) {
description << m_points.get(i).print();
}
description << "Perimetr = " << calcPerimetr() << "\n";
return description.str();
}
private:
Container<Point> m_points;
};
| [
"van5364@ya.ru"
] | van5364@ya.ru |
31f27ec1a85529610c387cf09128b343cfe285de | af9c1566c7f8b7e30ee957ef40de647c1d86d17a | /tek2/cpp/cpp_bomberman/include/Menu.hh | c549a6daba737d6d797b51f747eabb70174e1448 | [] | no_license | Vasrek77/epitech-projects | 471b7503e189000ad1ab491915c950af4b661c01 | 6db30340f7accd04d037ba1ea2bc3e3ecd736251 | refs/heads/master | 2021-01-17T22:41:05.342477 | 2015-08-12T19:10:24 | 2015-08-12T19:10:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 605 | hh | #ifndef MENU_HH_
# define MENU_HH_
# include <iostream>
# include <list>
# include <Clock.hh>
# include <Input.hh>
# include "AItem.hh"
# include "MenuItem.hh"
# include "Bomb.hh"
# include "Cursor.hh"
class Menu
{
private:
std::list<ADrawableObject *> _items;
public:
Menu();
~Menu();
void addItem(ADrawableObject *);
void deleteItem(ADrawableObject *);
void update(const gdl::Clock &, gdl::Input &);
//void draw(const gdl::Clock &, const gdl::Input &);
void createMenu();
std::list<ADrawableObject *> const &getItems(void) const;
};
#endif /* MENU_HH_ */
| [
"pierrick.gicquelais@epitech.eu"
] | pierrick.gicquelais@epitech.eu |
f99d2aeddc3db4c8f9abb5c1e5105b913660dacc | 1a9ef412a09894302ca7df1fedd5d71e7da2f25f | /DP Problems/Kadane.cpp | d755ebdafb5c18155a329b8fbd7195b203497756 | [] | no_license | barnwal-anand/Interview_Preparation | ca87f2fb0cac19f9e6eefe1f8c4ed1e9724e41db | 4fd155ced74910e637b9d6453b2820b53cab7505 | refs/heads/master | 2023-07-19T07:33:34.927883 | 2023-07-07T22:22:47 | 2023-07-07T22:22:47 | 214,193,849 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,042 | cpp | // Largest Sum Contiguous Subarray
#include <iostream>
#include <climits>
using namespace std;
class Kadane {
private:
int *arr;
int size;
public:
Kadane(int size);
void getLargestSum(int &res, int &start, int &end);
};
Kadane::Kadane(int size) {
this->size = size;
arr = new int[size]{-2, -3, 4, -1, -2, 1, 5, -3};
}
void Kadane::getLargestSum(int &res, int &start, int &end) {
int cur_max = 0;
int max_res = INT_MIN;
start = 0, end = 0;
int tmp_start = 0;
for(int it = 0; it < size; it++) {
cur_max += arr[it];
if(cur_max < 0) {
cur_max = 0;
tmp_start = it + 1;
}
else if(cur_max > max_res){
max_res = cur_max;
start = tmp_start;
end = it;
}
}
res = max_res;
}
int main() {
Kadane kadaneObj(8);
int start, end, res;
kadaneObj.getLargestSum(res, start, end);
cout << res << endl;
}
| [
"anandtalks2u@gmail.com"
] | anandtalks2u@gmail.com |
d9044aab3ff9e1a94935cb1509a24a91477336b6 | 3dfc4abe501c3382e12d24a4ee88c4c914e65a3f | /console.cpp | 51c11982e7b2ec1bcbdf745021368b40c2a5383d | [] | no_license | tienquan99/Game_Quan | b42d31bd3761a98457abd3b1ec7d08ff9e2ec3e2 | 7596b0722af555d1197f6e85c3e897dee5f3c0e7 | refs/heads/master | 2021-01-03T03:39:16.640999 | 2019-10-17T06:36:53 | 2019-10-17T06:36:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,691 | cpp | #include <stdio.h>
#include <conio.h>
#include "console.h"
int inputKey() // ham nay dung ddeer lam j
{
if (_kbhit())
{
int key = _getch();
if (key == 224) // special key
{
key = _getch();
return key + 1000;
}
return key;
}
else
{
return key_none;
}
return key_none;
}
//-------------------------Screen-------------------------
void clrscr()
{
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
HANDLE hConsoleOut;
COORD Home = {0,0};
DWORD dummy;
hConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE);
GetConsoleScreenBufferInfo(hConsoleOut,&csbiInfo);
FillConsoleOutputCharacter(hConsoleOut,' ',csbiInfo.dwSize.X * csbiInfo.dwSize.Y,Home,&dummy);
csbiInfo.dwCursorPosition.X = 0;
csbiInfo.dwCursorPosition.Y = 0;
SetConsoleCursorPosition(hConsoleOut,csbiInfo.dwCursorPosition);
}
//screen: goto [x,y]
void gotoXY (int column, int line)
{
COORD coord;
coord.X = column;
coord.Y = line;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
}
//screen: get [x]
int whereX()
{
CONSOLE_SCREEN_BUFFER_INFO csbi;
if(GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
return csbi.dwCursorPosition.X;
return -1;
}
//screen: get [y]
int whereY()
{
CONSOLE_SCREEN_BUFFER_INFO csbi;
if(GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
return csbi.dwCursorPosition.Y;
return -1;
}
void TextColor (int color)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color);
}
| [
"noreply@github.com"
] | tienquan99.noreply@github.com |
2513ed67ab0040e5516f5c544744803bff4da5f0 | 942db7940bec56ed0c660c1325232fbd70396cf2 | /Arduino_Nano_Serial_Case/Arduino_Nano_Serial_Case.ino | 5cf3757807e2145b178c5804e2dc917c84331355 | [
"MIT"
] | permissive | rukvih/Prototype-of-system-Smart-Home | d4adb78a831f880d8513055919c80c9274154ed0 | ad414166bfaa3f252e75105e256a04d0af4513e3 | refs/heads/master | 2020-12-24T13:43:49.985044 | 2016-05-13T09:14:36 | 2016-05-13T09:14:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,547 | ino | #include <Servo.h>
#include "Ultrasonic.h"
#include <SPI.h>
#include <Wire.h>
#define fadePin 5 //ванная
#define fadePin1 9 //периметр
#define fadePin2 3 //гостиная
#define fadePin3 6 //коридор
int val;
byte newinfo, ledDoorLap;
int clocktime;
int cltime;
int valPIR = 0;
int valpir;
int vallight;
int pirPin1 = A1; //контакт для подключения датчика 1 к Arduino
int pirPin2 = A2; //контакт для подключения датчика 2 к Arduino
int lightcycle;
int lkorstate; //переменные для света в коридоре
int valK; //переменная для таймера (накапливает секунды)
long previousMillis1 = 0; //переменная для сравнения текущего и сохраненного времени
int lzalstate; //переменнные для света в комнате
int valC;
long previousMillis2 = 0;
int ltulstate;
int valT;
long previousMillis3 = 0;
int lightG, lightV, lightK;
int ledDoor = 13;
int relay1 = 2; //объявление переменных для выходов сигналов реле
int relay2 = 10;
int relay3 = 4;
int relay4 = 12;
int a, b, c, d, k1=0, k2=0, k3=0, k4=0, s1=0, kOK=0, pas=0, MD=0, npas=1, nom=0, InvPas=0, smv=0, smvon=0, PIR3;
int key1, key2, key3, key4, keyOK, passw, kmanl, sig=0, lig=0, key11, zal1=0, zal11=0, kom2=0, kom22=0, tul=0, tul2=0;
char incomingByte;
Ultrasonic ultrasonic(7, 11);
Servo servo;
void setup(){
Wire.begin(4); // join i2c bus with address #4
Wire.onReceive(receiveEvent); // register event
Serial.begin(9600);
pinMode(A3, OUTPUT);
pinMode(ledDoor, OUTPUT);
pinMode(pirPin1, INPUT); //определить входной контакт для датчика 1
pinMode(pirPin2, INPUT); //определить входной контакт для датчика 2
pinMode(relay1, OUTPUT); //выходной контакт реле 1
digitalWrite(relay1, HIGH); //поддержание высокого уровня на выходе (реле выключено)
pinMode(relay2, OUTPUT); //аналогично реле 1...
digitalWrite(relay2, HIGH);
pinMode(relay3, OUTPUT);
digitalWrite(relay3, HIGH);
pinMode(relay4, OUTPUT);
digitalWrite(relay4, HIGH);
pinMode(fadePin, OUTPUT);
pinMode(fadePin1, OUTPUT);
pinMode(fadePin2, OUTPUT);
pinMode(fadePin3, OUTPUT);
analogWrite(fadePin, 0);
analogWrite(fadePin1, 0);
analogWrite(fadePin2, 0);
analogWrite(fadePin3, 0);
servo.attach(8);
servo.write(90);
/* if(EEPROM.read(5) == 5){ //использование сохраненного пароля, если он менялся
sim1=EEPROM.read(0); //в функции "новый пароль", при его изменении, в ячейку памяти 5
sim2=EEPROM.read(1); //записывается 5, и при включении проверяется, если 5 есть, значит
sim3=EEPROM.read(2); //присвоить переменным пароля значения, записанные в EEPROM
sim4=EEPROM.read(3);
}*/
}
/**************************************************** АВТОМАТИЧЕСКОЕ УПРАВЛЕНИЕ СВЕТОМ (датчики) ********************************************************************************************/
void lightin(){
while(lig == 0){
if(analogRead(fadePin3) == HIGH ){Serial.println("ON - koridor");} else {Serial.println("OFF - koridor");}
if(analogRead(fadePin) == HIGH ){Serial.println("ON - zal");} else {Serial.println("OFF - zal");}
if(analogRead(fadePin2) == HIGH ){Serial.println("ON - tual");} else{Serial.println("OFF - tual");}
lig = 1;
}
if (lig == 1){ //отключение света при переходе из ручного управления в автоматическое
lightcycle++; //отсчет времени горения света
Serial.println(lightcycle);
if(lightG == 1) //если был включен свет в гостиной
{
if(lzalstate == 0 && lightcycle == 100) //если не было движения с датчиков и прошло достаточно времени
{
Wire.beginTransmission(5); // transmit to device #5
Wire.write(21); // sends one byte
Wire.endTransmission();
for(int k=150; k>=0; k--){analogWrite(fadePin, k); delay(10);} //то гасим свет
Serial.println("OFF - gost");
lightG = 0;
}
}
if(lightV == 1)
{
if(ltulstate == 0 && lightcycle == 100)
{
Wire.beginTransmission(5); // transmit to device #5
Wire.write(31); // sends one byte
Wire.endTransmission();
for(int k=150; k>=0; k--){analogWrite(fadePin2, k); delay(10);}
Serial.println("OFF - vanna");
lightV = 0;
}
}
if(lightK == 1)
{
if(lkorstate == 0 && lightcycle == 100)
{
Wire.beginTransmission(5); // transmit to device #5
Wire.write(22); // sends one byte
Wire.endTransmission();
for(int k=150; k>=0; k--){analogWrite(fadePin3, k); delay(10);}
Serial.println("OFF - koridor");
lightK = 0;
}
}
if (lightcycle >= 101) {lig = 2; lightcycle = 0;}
}
if (digitalRead(pirPin1) == HIGH)
{
previousMillis1 = millis();
lzalstate = 1;
valC = 0;
while(zal11 == 0){ //то включаем бесконечный цикл для разового вывода на экран (ON - zal)
Wire.beginTransmission(5); // transmit to device #5
Wire.write(12); // sends one byte
Wire.endTransmission();
if(lightG != 1){
for(int i=0; i<=150; i++){analogWrite(fadePin, i); delay(10);}
Serial.println("ON - zal");
lightG = 1;
} //переменная для работы общего откл/вкл света (команда 15/51)
zal1 = 0; //обнуляем переменную для включения второго цикла
zal11++; //выходим из цикла
} // далее аналогично для других комнат
}
if (digitalRead(pirPin2) == HIGH)
{
previousMillis2 = millis();
lkorstate = 1;
valK = 0;
while(kom22 == 0){
Wire.beginTransmission(5); // transmit to device #5
Wire.write(11); // sends one byte
Wire.endTransmission();
if(lightK != 1){
for(int i=0; i<=150; i++){analogWrite(fadePin3, i); delay(10);}
Serial.println("ON - koridor");
lightK = 1;
}
kom2 = 0;
kom22++;
}
}
float dist_cm = ultrasonic.Ranging(CM); //значение с датчика в см
if (dist_cm <= 16){ //если оно меньше или равно 16см то
previousMillis3 = millis(); //включаем свет и запускаем таймер на 15(7,5) сек
ltulstate = 1;
valT = 0;
while(tul2 == 0){
Wire.beginTransmission(5); // transmit to device #5
Wire.write(13); // sends one byte
Wire.endTransmission();
if(lightV != 1){
for(int i=0; i<=150; i++){analogWrite(fadePin2, i);delay(10);}
Serial.println("ON - tual");
lightV = 1;
}
tul = 0;
tul2++;
}
}
if (ltulstate == 1 && dist_cm > 16)
{
previousMillis3 = millis();
valT++; // работает счет
}else{valT=0;}
if (valT >= 20) //кол-во секунд, при достижении этого значения lzal выключается
{
Wire.beginTransmission(5); // transmit to device #5
Wire.write(31); // sends one byte
Wire.endTransmission();
for(int k=150; k>=0; k--){analogWrite(fadePin2, k); delay(10);}
Serial.println("OFF - tual");
lightV = 0;
smv=1;
ltulstate = 0;
valT=0;
tul2=0;
}
if(smv >= 1){
delay(500);
digitalWrite(A3, HIGH);
smvon++;
}
if (smvon == 15){
smv=0;
smvon=0;
}
if (lzalstate == 1 && digitalRead(pirPin1) < HIGH)
{
previousMillis1 = millis();
valC++; // работает счет
}else{valC=0;}
if (valC >= 15) //кол-во секунд, при достижении этого значения lzal выключается
{
Wire.beginTransmission(5); // transmit to device #5
Wire.write(21); // sends one byte
Wire.endTransmission();
for(int k=150; k>=0; k--){analogWrite(fadePin, k); delay(10);}
Serial.println("OFF - zal");
lightG = 0;
lzalstate = 0;
valC=0;
zal11=0;
}
if (lkorstate == 1 && digitalRead(pirPin2) < HIGH)
{
previousMillis2 = millis();
valK++; // работает счет
}else{valK=0;}
if (valK >= 15) //кол-во секунд, при достижении этого значения lkor выключается
{
Wire.beginTransmission(5); // transmit to device #5
Wire.write(22); // sends one byte
Wire.endTransmission();
for(int k=150; k>=0; k--){analogWrite(fadePin3, k); delay(10);}
Serial.println("OFF - koridor");
lightK = 0;
lkorstate = 0;
valK=0;
kom22=0;
}
delay(500);
digitalWrite(A3, LOW);
}
/*********************************************************** СИГНАЛИЗАЦИЯ ************************************************************************************************/
void PIR(){
while(sig == 0)
{
digitalWrite(ledDoor, HIGH);
valK++; // работает счет
if (valK >= 7) //кол-во секунд, при достижении этого значения lkor выключается
{
AllLightOff();
digitalWrite(ledDoor, LOW);
sig = 1;
}
delay(1000);
}
ledDoorLap;
ledDoorLap++;
if (ledDoorLap >= 5){digitalWrite(ledDoor, HIGH); delay(200); ledDoorLap=0; }
int PIR1 = digitalRead(pirPin1); //считываем состояние датчика
int PIR2 = digitalRead(pirPin2);
float dist_cm = ultrasonic.Ranging(CM); // get distance
if (dist_cm <= 16){PIR3 = HIGH;}
valPIR = PIR1 + PIR2 + PIR3;
if (valPIR == HIGH) { //если есть движение
if (PIR1 == HIGH) {Serial.println("Motion is detected in the ZAL");} //то сказать где движение обнаружено
if (PIR2 == HIGH) {Serial.println("Motion is detected in the KORIDOR");}
if (PIR3 == HIGH) {Serial.println("Motion is detected in the TUALET");}
Serial.println("Alarm ON!"); //передать на компьютер "Motion!"
byte x = 109; //cообщение о сигнализации
Wire.beginTransmission(5); // transmit to device #5
Wire.write(x); // sends one byte
Wire.endTransmission();
delay(10);
sig = 0;
PIR3=LOW;
Serial.println("Press and hold any key...");
while (s1 == 0){
for(int i=0; i<=2; i++){
// tone(A0, 2093, 400);
analogWrite(fadePin1, 255); //периметр вкл
digitalWrite(ledDoor, HIGH);
delay(330);
analogWrite(fadePin1, 0); // периметр откл
digitalWrite(ledDoor, LOW);
delay(330);
}
if(val == 101){
nom=0; //обратное включения While в PIR, надпись (no motion)
s1++;
newinfo = 1; //обновление информации для вклчения автосвета
val = 3;
loop();
}
}
}
delay(300);
digitalWrite(ledDoor, LOW);
}
/***************************************************** ГЛАВНАЯ ЦИКЛИЧЕСКАЯ ФУНКЦИЯ ***********************************************************************************************/
void loop(){
float temph[2];
int clock[2];
if(newinfo == 1){
if(val == 1){
valpir = 0;
vallight = 0;
tul2=1; kom22=1; zal11=1;
lkorstate = 0;
valK=0;
kom22=0;
lzalstate = 0;
valC=0;
zal11=0;
ltulstate = 0;
valT=0;
tul2=0;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 3 || val == 101){
digitalWrite(ledDoor, HIGH); delay(100);
digitalWrite(ledDoor, LOW); delay(100);
digitalWrite(ledDoor, HIGH); delay(100);
digitalWrite(ledDoor, LOW); delay(100);
digitalWrite(ledDoor, HIGH); delay(100);
digitalWrite(ledDoor, LOW); delay(100);
digitalWrite(ledDoor, HIGH); delay(100);
digitalWrite(ledDoor, LOW); delay(100);
digitalWrite(ledDoor, HIGH); delay(100);
digitalWrite(ledDoor, LOW); delay(100);
Serial.println("light");
nom=0; //обратное включениe While в PIR, надпись (no motion)
sig=0; //обратное включение While в PIR, сигнал активации охраны
lig=0; //обратное включение While в lightin, сигнал активации автосвета
valpir = 0;
vallight = 1;
lightin();
}
if(val == 44){
Serial.println("secutity");
nom=0; //обратное включения While в PIR, надпись (no motion)
sig=0; //обратное включение While в PIR, сигнал активации охраны
lig=0; //обратное включение While в lightin, сигнал активации автосвета
vallight = 0;
valpir = 1;
s1 = 0;
tul2=1; kom22=1; zal11=1;
lkorstate = 0;
valK=0;
kom22=0;
lzalstate = 0;
valC=0;
zal11=0;
ltulstate = 0;
valT=0;
tul2=0;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(4); // sends one byte
Wire.endTransmission();
PIR();
}
if(val == 9){
analogWrite(fadePin1, 255);
delay(300);
analogWrite(fadePin1, 0);
for(int i = 90; i<=164; i++){
servo.write(i);
delay(17);
}
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 10){
for(int i = 164; i>=90; i--){
servo.write(i);
delay(17);
}
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 11){
//digitalWrite(relay2, LOW);
Serial.println(11);
for(int i=0; i<=150; i++){
analogWrite(fadePin3, i);//коридор
delay(10);
}
lightK = 1;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 22){
//digitalWrite(relay2, HIGH);
for(int k=150; k>=0; k--){
analogWrite(fadePin3, k);//коридор
delay(10);
}
lightK = 0;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 12){
//digitalWrite(relay3, LOW);
Serial.println(12);
for(int i=0; i<=150; i++){
analogWrite(fadePin, i);//гостиная
delay(10);
}
lightG = 1;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 21){
//digitalWrite(relay3, HIGH);
Serial.println(21);
for(int k=150; k>=0; k--){
analogWrite(fadePin, k);//гостиная
delay(10);
}
lightG = 0;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 13){
//digitalWrite(relay4, LOW);
Serial.println(13);
for(int i=0; i<=150; i++){
analogWrite(fadePin2, i);//ванная
delay(10);
}
lightV = 1;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 31){
// digitalWrite(relay4, HIGH);
Serial.println(31);
for(int k=150; k>=0; k--){
analogWrite(fadePin2, k);//ванная
delay(10);
}
lightV = 0;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 14){
// digitalWrite(relay1, LOW);
Serial.println(14);
analogWrite(fadePin1, 255);//периметр
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 41){
//digitalWrite(relay1, HIGH);
Serial.println(41);
analogWrite(fadePin1, 0);//периметр
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 15)
{
for(int i=0; i<=150; i++)
{
if(lightG == 0)analogWrite(fadePin, i);
if(lightV == 0)analogWrite(fadePin2, i);
if(lightK == 0)analogWrite(fadePin3, i);
delay(10);
}
lightG = 1;
lightV = 1;
lightK = 1;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(val); // sends one byte
Wire.endTransmission();
}
if(val == 51)
{
AllLightOff();
}
newinfo = 0;
}
if(vallight == 1){lightin();}
if(valpir == 1){PIR();}
delay(30);
}
void AllLightOff(){
for(int k=150; k>=0; k--)
{
if(lightG == 1)analogWrite(fadePin, k);//гостиная
if(lightV == 1) analogWrite(fadePin2, k); //ванная
if(lightK == 1) analogWrite(fadePin3, k);//коридор
delay(10);
}
lightG = 0;
lightV = 0;
lightK = 0;
Wire.beginTransmission(5); // transmit to device #5
Wire.write(51); // sends one byte
Wire.endTransmission();
}
void receiveEvent(int howMany)
{
while(1 < Wire.available()) // loop through all but the last
{
}
val = Wire.read(); // receive byte as an integer
Serial.println(val);
if(val != 99) newinfo = 1; //команда 99 относится только к Arduino Uno
}
| [
"viva-os@mail.ru"
] | viva-os@mail.ru |
892218156352f5b7775a711e756835433bf5604b | e8166fb5d946a9d9212107ea7ef576426d56924d | /src/CSchemaProvider.h | 23b6a835c17b4b42506719cb786f230171c72cb6 | [
"MIT"
] | permissive | tans2MA/jsontool | 3d8726ccf027c8311199365e2b72f614d23b1525 | 7b1211dfda08166e473c236cc486f145d984f0b2 | refs/heads/master | 2022-12-22T11:13:24.781089 | 2020-10-04T14:33:31 | 2020-10-04T14:33:31 | 301,051,214 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 753 | h | #ifndef CSCHEMAPROVIDER_H__
#define CSCHEMAPROVIDER_H__
#include <string>
#include <vector>
#include <map>
#include "JsonConfig.h"
#include "rapidjson/schema.h"
class CSchemaProvider : public rapidjson::IRemoteSchemaDocumentProvider
{
public:
virtual const rapidjson::SchemaDocument* GetRemoteDocument(const char* uri, size_t length);
void SetBaseDir(const std::string& baseDir)
{
m_baseDir = baseDir;
}
CSchemaProvider(){}
~CSchemaProvider()
{
for (auto& item : m_mapSchemas)
{
if (item.second != nullptr)
{
delete item.second;
item.second = nullptr;
}
}
}
private:
std::string m_baseDir;
std::map<std::string, rapidjson::SchemaDocument*>m_mapSchemas;
};
#endif /* end of include guard: CSCHEMAPROVIDER_H__ */
| [
"Shuilong.Tan@moodys.com"
] | Shuilong.Tan@moodys.com |
f301cdaeac1d7498d3d0c6f33fb96249b2936c92 | aff3ddbb03d28e005c9d7a0654bfe158ebad25c0 | /Vestigium.cpp | aced53f90ae75db3fe6c18c7148a1841bb139c1a | [] | no_license | pradeep-kumar-1705807/Mytest | 600a3b10a65c71a6957bc0ce6f884d4892847776 | 9eea333def183f651753bb4b33a05ba0a42d4c7a | refs/heads/master | 2021-05-18T13:15:21.230079 | 2020-05-06T09:22:44 | 2020-05-06T09:22:44 | 251,258,032 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,228 | cpp | #include<bits/stdc++.h>
using namespace std;
void solve(vector<vector<int>> & matrix, int t)
{
int n=matrix.size();
int k=0,r=0,c=0;
for(int i=0;i<n;i++)
{
k+=matrix[i][i];
}
for(int i=0;i<n;i++)
{
int hashRow[1001]={0};
int hashCol[1001]={0};
bool flagRow=false,flagCol=false;
for(int j=0;j<n;j++)
{
hashRow[matrix[i][j]]++;
hashCol[matrix[j][i]]++;
}
for(int j=0;j<101;j++)
{
if(hashRow[j]>1)
{
flagRow=true;
}
if(hashCol[j]>1)
{
flagCol=true;
}
}
if(flagRow)
{
r++;
}
if(flagCol)
{
c++;
}
}
printf("Case #%d: %d %d %d\n",t,k,r,c);
}
int main()
{
int t;
cin>>t;
for( int k=1;k<=t;k++)
{
int n,val,target;
cin>>n;
vector<vector<int>> matrix(n);
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cin>>val;
matrix[i].push_back(val);
}
}
solve(matrix,k);
}
return 0;
} | [
"1705807@kiit.ac.in"
] | 1705807@kiit.ac.in |
90f81163fd9352b499251b1749e700ead53193e8 | 0015191a758eaff526ceee730a53d535f1a292c5 | /include/pdk/base/time/internal/DateTimePrivate.h | 6ce8639aaba7aa4fd1f96319017f36decfde054e | [
"Apache-2.0"
] | permissive | wzugang/libpdk | 820097e564ea2024654dbceb009bd54b4b322711 | 72dd499328c5017f02ccb02389c14f50831481c6 | refs/heads/master | 2021-05-02T12:01:26.573947 | 2018-02-08T07:17:08 | 2018-02-08T07:17:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,827 | h | // @copyright 2017-2018 zzu_softboy <zzu_softboy@163.com>
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Created by softboy on 2018/02/05.
#ifndef PDK_M_BASE_TIME_INTERNAL_DATETIME_PRIVATE_H
#define PDK_M_BASE_TIME_INTERNAL_DATETIME_PRIVATE_H
#include "pdk/global/PlatformDefs.h"
#include "pdk/global/Global.h"
#include "pdk/base/os/thread/Atomic.h"
#include "pdk/base/time/Time.h"
#include "pdk/base/time/Date.h"
#include "pdk/base/time/DateTime.h"
#if PDK_CONFIG(TIMEZONE)
#include "pdk/base/time/TimeZone.h"
#endif
namespace pdk {
namespace time {
namespace internal {
using pdk::os::thread::AtomicInt;
class DateTimePrivate
{
public:
// forward the declarations from DateTime (this makes them public)
using DateTimeShortData = DateTime::ShortData;
using DateTimeData = DateTime::Data;
// Never change or delete this enum, it is required for backwards compatible
// serialization of DateTime before 5.2, so is essentially public API
enum class Spec : int
{
LocalUnknown = -1,
LocalStandard = 0,
LocalDST = 1,
UTC = 2,
OffsetFromUTC = 3,
TimeZone = 4
};
// Daylight Time Status
enum class DaylightStatus : int
{
UnknownDaylightTime = -1,
StandardTime = 0,
DaylightTime = 1
};
// Status of date/time
enum class StatusFlag : uint
{
ShortData = 0x01,
ValidDate = 0x02,
ValidTime = 0x04,
ValidDateTime = 0x08,
TimeSpecMask = 0x30,
SetToStandardTime = 0x40,
SetToDaylightTime = 0x80
};
PDK_DECLARE_FLAGS(StatusFlags, StatusFlag);
enum : uint
{
TimeSpecShift = 4,
ValidityMask = uint(StatusFlag::ValidDate) | uint(StatusFlag::ValidTime) | uint(StatusFlag::ValidDateTime),
DaylightMask = uint(StatusFlag::SetToStandardTime) | uint(StatusFlag::SetToDaylightTime)
};
DateTimePrivate() : m_msecs(0),
m_status(StatusFlag(pdk::as_integer<pdk::TimeSpec>(pdk::TimeSpec::LocalTime) << TimeSpecShift)),
m_offsetFromUtc(0),
ref(0)
{
}
static DateTime::Data create(const Date &toDate, const Time &toTime, pdk::TimeSpec toSpec,
int offsetSeconds);
#if PDK_CONFIG(TIMEZONE)
static DateTime::Data create(const Date &toDate, const Time &toTime, const TimeZone & timeZone);
#endif // timezone
pdk::pint64 m_msecs;
StatusFlags m_status;
int m_offsetFromUtc;
mutable AtomicInt ref;
#if PDK_CONFIG(TIMEZONE)
TimeZone m_timeZone;
#endif // timezone
#if PDK_CONFIG(TIMEZONE)
static pdk::pint64 zoneMSecsToEpochMSecs(pdk::pint64 msecs, const TimeZone &zone,
DaylightStatus hint = DaylightStatus::UnknownDaylightTime,
Date *localDate = 0, Time *localTime = 0);
// Inlined for its one caller in DateTime.cpp
inline void setUtcOffsetByTZ(pdk::pint64 atMSecsSinceEpoch);
#endif // timezone
};
} // internal
} // time
} // pdk
#endif // PDK_M_BASE_TIME_INTERNAL_DATETIME_PRIVATE_H
| [
"zzu_softboy@163.com"
] | zzu_softboy@163.com |
5b4d92c9fb26c4955f974c1c265dcc8d6aec0747 | d82942a903492663abd49dfed711fe10b21c7225 | /Box2D_v2.2.1/Testbed/Tests/Tutorial/Ball2.h | bd5538ab125393555010b14d4eaa30644ae977d1 | [] | no_license | dnunez02/sfml-project | da9438a238c2996d59b0c801f4c7f85740fe86e0 | f2340f2823da644ff4e3e212f7a2784f327afceb | refs/heads/master | 2016-09-03T06:34:30.286905 | 2013-08-08T19:08:02 | 2013-08-08T19:08:02 | 11,318,144 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,680 | h | #ifndef __BALL2_H__
#define __BALL2_H__
class Ball2 {
#define DEGTORAD 0.0174532925f
#define RADTODEG 57.2957795f
public:
float m_radius, m_angle;
b2Vec2 m_position, m_linearVelocity;
public:
Ball2(b2World *world, float radius){
m_radius = radius;
b2BodyDef myBodyDef;
myBodyDef.type = b2_dynamicBody;
myBodyDef.position.Set(0, 20);
b2Body *body = world->CreateBody(&myBodyDef);
//Can add any item (void*) into a b2Body, b2Fixture, or b2Joint
body->SetUserData(this);
b2CircleShape circleShape;
circleShape.m_p.Set(0, 0);
circleShape.m_radius = m_radius;
b2FixtureDef myFixtureDef;
myFixtureDef.shape = &circleShape;
myFixtureDef.density = 1;
body->CreateFixture(&myFixtureDef);
}
~Ball2() {}
void render(){
//Use velocity to change color
float red = m_linearVelocity.Length() / 20.0f;
red = min(1.0f, red);
glColor3f(red, 0.5, 0.5);
glPointSize(4);
glBegin(GL_POINTS);
{
glVertex2f(0, 0);
glVertex2f(-0.5, 0.5);
glVertex2f(0.5, 0.5);
}
glEnd();
glBegin(GL_LINES);
{
glVertex2f(-0.5, -0.5);
glVertex2f(-0.16, -0.6);
glVertex2f(0.16, -0.6);
glVertex2f(0.5, -0.5);
}
glEnd();
glBegin(GL_LINE_LOOP);
{
for(float a = 0; a < 360 * DEGTORAD; a += 30 * DEGTORAD){
glVertex2f(sinf(a), cosf(a));
}
}
glEnd();
}
void renderAtBodyPosition(){
glPushMatrix();
{
glTranslatef(m_position.x, m_position.y, 0);
glRotatef(m_angle * RADTODEG, 0, 0, 1);
glScalef(m_radius, m_radius, 1); //x, y, z
render();
}
glPopMatrix();
}
};
#endif
| [
"dan@cs.tufts.edu"
] | dan@cs.tufts.edu |
55f115c8ed1769f5f285512c448539b1f5525760 | 269e5ea9b2a845cef8026b61789fa50a31b6dca9 | /src/test/test_join_node_msg_key_matching.cpp | 25ed3597d00b118e0628e40798215893f5b6adcd | [
"Apache-2.0"
] | permissive | Formlabs/tbb | 79fc3524bfe5215486beb5a0ae363d84c5ef74ee | 2098cac88056b2e5b2c081c9fc13746f6735c270 | refs/heads/formlabs | 2021-07-09T10:08:16.547300 | 2021-04-26T16:39:08 | 2021-04-27T12:19:16 | 61,002,993 | 0 | 3 | Apache-2.0 | 2020-09-28T15:49:48 | 2016-06-13T03:01:06 | C++ | UTF-8 | C++ | false | false | 4,023 | cpp | /*
Copyright (c) 2005-2019 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Message based key matching is a preview feature
#define TBB_PREVIEW_FLOW_GRAPH_FEATURES 1
// This preview feature depends on
// TBB_PREVIEW_FLOW_GRAPH_FEATURES macro, and should not accidentaly be dependent on
// this deprecated feature
#define TBB_DEPRECATED_FLOW_NODE_EXTRACTION 0
#include "test_join_node.h"
int TestMain() {
#if __TBB_USE_TBB_TUPLE
REMARK(" Using TBB tuple\n");
#else
REMARK(" Using platform tuple\n");
#endif
#if !__TBB_MIC_OFFLOAD_TEST_COMPILATION_BROKEN
generate_test<serial_test, tbb::flow::tuple<MyMessageKeyWithBrokenKey<int, double>, MyMessageKeyWithoutKey<int, float> >, message_based_key_matching<int> >::do_test();
generate_test<serial_test, tbb::flow::tuple<MyMessageKeyWithoutKeyMethod<std::string, double>, MyMessageKeyWithBrokenKey<std::string, float> >, message_based_key_matching<std::string> >::do_test();
#if MAX_TUPLE_TEST_SIZE >= 3
generate_test<serial_test, tbb::flow::tuple<MyMessageKeyWithoutKey<std::string, double>, MyMessageKeyWithoutKeyMethod<std::string, float>, MyMessageKeyWithBrokenKey<std::string, int> >, message_based_key_matching<std::string&> >::do_test();
#endif
#if MAX_TUPLE_TEST_SIZE >= 7
generate_test<serial_test, tbb::flow::tuple<
MyMessageKeyWithoutKey<std::string, double>,
MyMessageKeyWithoutKeyMethod<std::string, int>,
MyMessageKeyWithBrokenKey<std::string, int>,
MyMessageKeyWithoutKey<std::string, size_t>,
MyMessageKeyWithoutKeyMethod<std::string, int>,
MyMessageKeyWithBrokenKey<std::string, short>,
MyMessageKeyWithoutKey<std::string, threebyte>
>, message_based_key_matching<std::string&> >::do_test();
#endif
generate_test<parallel_test, tbb::flow::tuple<MyMessageKeyWithBrokenKey<int, double>, MyMessageKeyWithoutKey<int, float> >, message_based_key_matching<int> >::do_test();
generate_test<parallel_test, tbb::flow::tuple<MyMessageKeyWithoutKeyMethod<int, double>, MyMessageKeyWithBrokenKey<int, float> >, message_based_key_matching<int&> >::do_test();
generate_test<parallel_test, tbb::flow::tuple<MyMessageKeyWithoutKey<std::string, double>, MyMessageKeyWithoutKeyMethod<std::string, float> >, message_based_key_matching<std::string&> >::do_test();
#if MAX_TUPLE_TEST_SIZE >= 10
generate_test<parallel_test, tbb::flow::tuple<
MyMessageKeyWithoutKeyMethod<std::string, double>,
MyMessageKeyWithBrokenKey<std::string, int>,
MyMessageKeyWithoutKey<std::string, int>,
MyMessageKeyWithoutKeyMethod<std::string, size_t>,
MyMessageKeyWithBrokenKey<std::string, int>,
MyMessageKeyWithoutKeyMethod<std::string, short>,
MyMessageKeyWithoutKeyMethod<std::string, threebyte>,
MyMessageKeyWithBrokenKey<std::string, int>,
MyMessageKeyWithoutKeyMethod<std::string, threebyte>,
MyMessageKeyWithBrokenKey<std::string, size_t>
>, message_based_key_matching<std::string&> >::do_test();
#endif
#endif /* __TBB_MIC_OFFLOAD_TEST_COMPILATION_BROKEN */
generate_test<serial_test, tbb::flow::tuple<MyMessageKeyWithBrokenKey<int, double>, MyMessageKeyWithoutKey<int, float> >, message_based_key_matching<int> >::do_test();
generate_test<serial_test, tbb::flow::tuple<MyMessageKeyWithoutKeyMethod<std::string, double>, MyMessageKeyWithBrokenKey<std::string, float> >, message_based_key_matching<std::string> >::do_test();
return Harness::Done;
}
| [
"wenzel.jakob@epfl.ch"
] | wenzel.jakob@epfl.ch |
23aa208f8eb0f072c616ddcb765d0b3238ebc737 | 39930ecb367eefdef836b264a980b9d966cfe071 | /programme_9/src/main.cpp | 6cbbcc6438a91763e4c5709e5d4474de62e9e20c | [] | no_license | florian-devin/TP_openGL | b1129f5d437e36afecb3e4e7cfab809309bfd72b | 6643e8005cd4f06b3862bce5c69a3dacded48efb | refs/heads/master | 2023-01-19T20:30:17.582650 | 2020-12-02T10:41:41 | 2020-12-02T10:41:41 | 317,813,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,921 | cpp | /*****************************************************************************\
* TP CPE, 4ETI, TP synthese d'images
* --------------
*
* Programme principal des appels OpenGL
\*****************************************************************************/
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#define GLEW_STATIC 1
#include <GL/glew.h>
#if defined(__APPLE__)
#include <OpenGL/gl3.h>
#define __gl_h_
#include <GLUT/glut.h>
#define MACOSX_COMPATIBILITY GLUT_3_2_CORE_PROFILE
#else
#include <GL/glut.h>
#define MACOSX_COMPATIBILITY 0
#endif
#include "glhelper.hpp"
#include "mat4.hpp"
#include "vec3.hpp"
#include "vec2.hpp"
#include "triangle_index.hpp"
#include "vertex_opengl.hpp"
#include "image.hpp"
/*****************************************************************************\
* Variables globales
*
*
\*****************************************************************************/
//identifiant du shader
GLuint shader_program_id;
//l'identifiant de l'objet 3D
GLuint vao=0;
GLuint vbo=0;
GLuint vboi=0;
GLuint texture_id=0;
//les parametres de translations
float translation_x=0.0f;
float translation_y=0.0f;
float translation_z=-3.0f;
float angle_x=0.0f;
float angle_y=0.0f;
//Matrice de rotation
mat4 rotation;
//Matrice de projection
mat4 projection;
/*****************************************************************************\
* init *
\*****************************************************************************/
static void init()
{
//coordonnees geometriques des sommets
vec3 p0=vec3(0.0f,0.0f,0.0f);
vec3 p1=vec3(1.0f,0.0f,0.0f);
vec3 p2=vec3(0.0f,1.0f,0.0f);
vec3 p3=vec3(0.8f,0.8f,0.5f);
//normales pour chaque sommet
vec3 n0=vec3(0.0f,0.0f,1.0f);
vec3 n1=vec3(-0.25f,-0.25f,0.8535f);
vec3 n2=vec3(-0.25f,-0.25f,0.8535f);
vec3 n3=vec3(-0.5f,-0.5f,0.707);
//couleur pour chaque sommet
vec3 c0=vec3(0.0f,0.0f,0.0f);
vec3 c1=vec3(1.0f,0.0f,0.0f);
vec3 c2=vec3(0.0f,1.0f,0.0f);
vec3 c3=vec3(1.0f,1.0f,0.0f);
//texture du sommet
vec2 t0=vec2(0.0f,0.0f);
vec2 t1=vec2(1.0f,0.0f);
vec2 t2=vec2(0.0f,1.0f);
vec2 t3=vec2(1.0f,1.0f);
vertex_opengl v0=vertex_opengl(p0,n0,c0,t0);
vertex_opengl v1=vertex_opengl(p1,n1,c1,t1);
vertex_opengl v2=vertex_opengl(p2,n2,c2,t2);
vertex_opengl v3=vertex_opengl(p3,n3,c3,t3);
//tableau entrelacant coordonnees-normales-couleurs-textures
vertex_opengl geometrie[]={v0,v1,v2,v3};
//indice des triangles
triangle_index tri0=triangle_index(0,1,2);
triangle_index tri1=triangle_index(1,3,2);
triangle_index index[]={tri0,tri1};
//attribution d'une liste d'état (1 indique la création d'une seule liste)
glGenVertexArrays(1, &vao);
glBindVertexArray(vao);
//attribution d'un buffer de donnees (1 indique la création d'un seul buffer)
glGenBuffers(1,&vbo); CHECK_GL_ERROR();
//affectation du buffer courant
glBindBuffer(GL_ARRAY_BUFFER,vbo); CHECK_GL_ERROR();
//copie des donnees des sommets sur la carte graphique
glBufferData(GL_ARRAY_BUFFER,sizeof(geometrie),geometrie,GL_STATIC_DRAW); CHECK_GL_ERROR();
// Active l'utilisation des données de positions (le 0 correspond à la location dans le vertex shader)
glEnableVertexAttribArray(0); CHECK_GL_ERROR();
// Indique comment le buffer courant (dernier vbo "bindé") est utilisé pour les positions des sommets
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(vertex_opengl), 0); CHECK_GL_ERROR();
// Active l'utilisation des données de normales (le 1 correspond à la location dans le vertex shader)
glEnableVertexAttribArray(1); CHECK_GL_ERROR();
// Indique comment le buffer courant (dernier vbo "bindé") est utilisé pour les normales des sommets
glVertexAttribPointer(1, 3, GL_FLOAT, GL_TRUE, sizeof(vertex_opengl), (void*)sizeof(vec3)); CHECK_GL_ERROR();
// Active l'utilisation des données de couleurs (le 2 correspond à la location dans le vertex shader)
glEnableVertexAttribArray(2); CHECK_GL_ERROR();
// Indique comment le buffer courant (dernier vbo "bindé") est utilisé pour les couleurs des sommets
glVertexAttribPointer(2, 3, GL_FLOAT, GL_FALSE, sizeof(vertex_opengl), (void*)(2*sizeof(vec3))); CHECK_GL_ERROR();
// Active l'utilisation des données de textures (le 3 correspond à la location dans le vertex shader)
glEnableVertexAttribArray(3); CHECK_GL_ERROR();
// Indique comment le buffer courant (dernier vbo "bindé") est utilisé pour les textures des sommets
glVertexAttribPointer(3, 2, GL_FLOAT, GL_FALSE, sizeof(vertex_opengl), (void*)(3*sizeof(vec3))); CHECK_GL_ERROR();
//attribution d'un autre buffer de donnees
glGenBuffers(1,&vboi); CHECK_GL_ERROR();
//affectation du buffer courant (buffer d'indice)
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER,vboi); CHECK_GL_ERROR();
//copie des indices sur la carte graphique
glBufferData(GL_ELEMENT_ARRAY_BUFFER,sizeof(index),index,GL_STATIC_DRAW); CHECK_GL_ERROR();
// Chargement du shader
shader_program_id = glhelper::create_program_from_file(
"programme_9/src/shader.vert",
"programme_9/src/shader.frag"); CHECK_GL_ERROR();
glUseProgram(shader_program_id);
//matrice de projection
projection=matrice_projection(50.0f*M_PI/180.0f,1.0f,0.5f,10.0f);
GLint loc_projection = glGetUniformLocation(shader_program_id, "projection"); CHECK_GL_ERROR();
if (loc_projection == -1) std::cerr << "Pas de variable uniforme : projection" << std::endl;
glUniformMatrix4fv(loc_projection,1,false,pointeur(projection)); CHECK_GL_ERROR();
// Chargement d'une texture (seules les textures
// tga sont supportes)
Image *image = image_load_tga("data/unicorn.tga");
if (image) //verification que l'image est bien chargee
{
//Creation d'un identifiant pour la texture
glPixelStorei(GL_UNPACK_ALIGNMENT, 1); CHECK_GL_ERROR();
glGenTextures(1, &texture_id); CHECK_GL_ERROR();
//Selection de la texture courante a partir de son identifiant
glBindTexture(GL_TEXTURE_2D, texture_id); CHECK_GL_ERROR();
//Parametres de la texture
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); CHECK_GL_ERROR();
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); CHECK_GL_ERROR();
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); CHECK_GL_ERROR();
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); CHECK_GL_ERROR();
//Envoie de l'image en memoire video
if(image->type==IMAGE_TYPE_RGB){ //image RGB
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, image->width, image->height, 0, GL_RGB, GL_UNSIGNED_BYTE, image->data); CHECK_GL_ERROR();}
else if(image->type==IMAGE_TYPE_RGBA){ //image RGBA
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, image->width, image->height, 0, GL_RGBA, GL_UNSIGNED_BYTE, image->data); CHECK_GL_ERROR();}
else{
std::cout<<"Image type not handled"<<std::endl;}
delete image;
}
else
{
std::cerr<<"Erreur chargement de l'image, etes-vous dans le bon repertoire?"<<std::endl;
abort();
}
GLint loc_texture = glGetUniformLocation(shader_program_id, "texture"); CHECK_GL_ERROR();
if (loc_texture == -1) std::cerr << "Pas de variable uniforme : texture" << std::endl;
glUniform1i (loc_texture, 0); CHECK_GL_ERROR();
//activation de la gestion de la profondeur
glEnable(GL_DEPTH_TEST); CHECK_GL_ERROR();
}
//Fonction d'affichage
static void display_callback()
{
//effacement des couleurs du fond d'ecran
glClearColor(0.5f, 0.6f, 0.9f, 1.0f); CHECK_GL_ERROR();
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); CHECK_GL_ERROR();
// recoit la location de la rotation et de la translation
GLint loc_rotation = glGetUniformLocation(shader_program_id, "rotation"); CHECK_GL_ERROR();
if (loc_rotation == -1) std::cerr << "Pas de variable uniforme : rotation" << std::endl;
GLint loc_translation = glGetUniformLocation(shader_program_id, "translation"); CHECK_GL_ERROR();
if (loc_translation == -1) std::cerr << "Pas de variable uniforme : translation" << std::endl;
//************************************************************//
//OBJET 1//
//************************************************************//
//envoie des parametres (rotation,translation) sur la carte graphique pour l'objet 1
glUniformMatrix4fv(loc_rotation,1,false,pointeur(rotation)); CHECK_GL_ERROR();
glUniform4f(loc_translation,translation_x,translation_y,translation_z,0.0f); CHECK_GL_ERROR();
glDrawElements(GL_TRIANGLES, 3*2, GL_UNSIGNED_INT, 0); CHECK_GL_ERROR();
//************************************************************//
//OBJET 2//
//************************************************************//
//envoie des parametres (rotation,translation) sur la carte graphique pour l'objet 2
mat4 identity;
// l'objet 2 ne bouge pas: la rotation est donnee par la matrice identitee
glUniformMatrix4fv(loc_rotation,1,false,pointeur(identity)); CHECK_GL_ERROR();
// l'objet 2 ne bouge pas: la translation une valeur fixe
glUniform4f(loc_translation, -1.0f, 0.0f, -3.0f, 0.0f); CHECK_GL_ERROR();
//affichage
glDrawElements(GL_TRIANGLES, 3*2, GL_UNSIGNED_INT,0); CHECK_GL_ERROR();
//Changement de buffer d'affichage pour eviter un effet de scintillement
glutSwapBuffers();
}
/*****************************************************************************\
* keyboard_callback *
\*****************************************************************************/
static void keyboard_callback(unsigned char key, int, int)
{
float d_angle=0.1f;
float dz=0.5f;
//quitte le programme si on appuie sur les touches 'q', 'Q', ou 'echap'
//enregistre l'image si on appuie sur la touche 'p'
switch (key)
{
case 'p':
glhelper::print_screen();
break;
case 'q':
case 'Q':
case 27:
exit(0);
break;
case 'i':
angle_x+=d_angle;
break;
case 'k':
angle_x-=d_angle;
break;
case 'j':
angle_y+=d_angle;
break;
case 'l':
angle_y-=d_angle;
break;
case 'y':
translation_z+=dz;
break;
case 'h':
translation_z-=dz;
break;
}
mat4 rotation_x=matrice_rotation(angle_x,1.0f,0.0f,0.0f);
mat4 rotation_y=matrice_rotation(angle_y,0.0f,1.0f,0.0f);
rotation=rotation_x*rotation_y;
}
/*****************************************************************************\
* special_callback *
\*****************************************************************************/
static void special_callback(int key, int,int)
{
float dL=0.03f;
switch (key)
{
case GLUT_KEY_UP:
translation_y+=dL; //rotation avec la touche du haut
break;
case GLUT_KEY_DOWN:
translation_y-=dL; //rotation avec la touche du bas
break;
case GLUT_KEY_LEFT:
translation_x-=dL; //rotation avec la touche de gauche
break;
case GLUT_KEY_RIGHT:
translation_x+=dL; //rotation avec la touche de droite
break;
}
}
/*****************************************************************************\
* timer_callback *
\*****************************************************************************/
static void timer_callback(int)
{
//demande de rappel de cette fonction dans 25ms
glutTimerFunc(25, timer_callback, 0);
//reactualisation de l'affichage
glutPostRedisplay();
}
int main(int argc, char** argv)
{
//**********************************************//
//Lancement des fonctions principales de GLUT
//**********************************************//
//initialisation
glutInit(&argc, argv);
//Mode d'affichage (couleur, gestion de profondeur, ...)
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH | MACOSX_COMPATIBILITY);
//Taille de la fenetre a l'ouverture
glutInitWindowSize(600, 600);
//Titre de la fenetre
glutCreateWindow("OpenGL");
//Fonction de la boucle d'affichage
glutDisplayFunc(display_callback);
//Fonction de gestion du clavier
glutKeyboardFunc(keyboard_callback);
//Fonction des touches speciales du clavier (fleches directionnelles)
glutSpecialFunc(special_callback);
//Fonction d'appel d'affichage en chaine
glutTimerFunc(25, timer_callback, 0);
//Option de compatibilité
glewExperimental = true;
//Initialisation des fonctions OpenGL
glewInit();
//Affiche la version openGL utilisée
std::cout << "OpenGL: " << (GLchar *)(glGetString(GL_VERSION)) << std::endl;
//Notre fonction d'initialisation des donnees et chargement des shaders
init();
//Lancement de la boucle (infinie) d'affichage de la fenetre
glutMainLoop();
//Plus rien n'est execute apres cela
return 0;
}
| [
"florian@PC_FIX_FLO"
] | florian@PC_FIX_FLO |
349cfdd5a57a1136eb31ea2a30ab9a886f33d323 | 00fea9459f8ed3955910a0e770af61278c93234b | /349Intersection_Two_Arrays.cpp | 58d00fa45fb098627443ffb602259d8c9de1e54f | [] | no_license | caomincan/leectcode | eff934db566d74e2b0e95b7d462c33dea06c1ee2 | 582e8ac8f37b9f62e90a94b860d4d99c0e530fe0 | refs/heads/master | 2022-12-01T23:32:56.505801 | 2020-08-12T00:51:20 | 2020-08-12T00:51:20 | 271,587,997 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | cpp | class Solution {
public:
vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
unordered_set<int> total;
vector<int> ans;
for(auto n: nums1){
total.insert(n);
}
// find result
for(auto n: nums2){
if(total.find(n) != total.end()){
ans.push_back(n);
total.erase(n);
}
}
return ans;
}
}; | [
"micao@vt.edu"
] | micao@vt.edu |
48c69a884ecacab920c330275628192d971a894c | 9da42e04bdaebdf0193a78749a80c4e7bf76a6cc | /third_party/gecko-15/win32/include/nsIDOMCSS2Properties.h | 8ed3bea494b185c1f55ce26f2394b2b89f71fb1b | [
"Apache-2.0"
] | permissive | bwp/SeleniumWebDriver | 9d49e6069881845e9c23fb5211a7e1b8959e2dcf | 58221fbe59fcbbde9d9a033a95d45d576b422747 | refs/heads/master | 2021-01-22T21:32:50.541163 | 2012-11-09T16:19:48 | 2012-11-09T16:19:48 | 6,602,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 293,594 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-m-rel-xr-w32-bld/build/dom/interfaces/css/nsIDOMCSS2Properties.idl
*/
#ifndef __gen_nsIDOMCSS2Properties_h__
#define __gen_nsIDOMCSS2Properties_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMCSS2Properties */
#define NS_IDOMCSS2PROPERTIES_IID_STR "35b2c7f0-b56c-11e1-afa6-0800200c9a66"
#define NS_IDOMCSS2PROPERTIES_IID \
{0x35b2c7f0, 0xb56c, 0x11e1, \
{ 0xaf, 0xa6, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMCSS2Properties : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCSS2PROPERTIES_IID)
/* attribute DOMString background; */
NS_SCRIPTABLE NS_IMETHOD GetBackground(nsAString & aBackground) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackground(const nsAString & aBackground) = 0;
/* attribute DOMString backgroundAttachment; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundAttachment(nsAString & aBackgroundAttachment) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundAttachment(const nsAString & aBackgroundAttachment) = 0;
/* attribute DOMString backgroundColor; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundColor(nsAString & aBackgroundColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundColor(const nsAString & aBackgroundColor) = 0;
/* attribute DOMString backgroundImage; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundImage(nsAString & aBackgroundImage) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundImage(const nsAString & aBackgroundImage) = 0;
/* attribute DOMString backgroundPosition; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundPosition(nsAString & aBackgroundPosition) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundPosition(const nsAString & aBackgroundPosition) = 0;
/* attribute DOMString backgroundRepeat; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundRepeat(nsAString & aBackgroundRepeat) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundRepeat(const nsAString & aBackgroundRepeat) = 0;
/* attribute DOMString border; */
NS_SCRIPTABLE NS_IMETHOD GetBorder(nsAString & aBorder) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorder(const nsAString & aBorder) = 0;
/* attribute DOMString borderCollapse; */
NS_SCRIPTABLE NS_IMETHOD GetBorderCollapse(nsAString & aBorderCollapse) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderCollapse(const nsAString & aBorderCollapse) = 0;
/* attribute DOMString borderColor; */
NS_SCRIPTABLE NS_IMETHOD GetBorderColor(nsAString & aBorderColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderColor(const nsAString & aBorderColor) = 0;
/* attribute DOMString borderSpacing; */
NS_SCRIPTABLE NS_IMETHOD GetBorderSpacing(nsAString & aBorderSpacing) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderSpacing(const nsAString & aBorderSpacing) = 0;
/* attribute DOMString borderStyle; */
NS_SCRIPTABLE NS_IMETHOD GetBorderStyle(nsAString & aBorderStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderStyle(const nsAString & aBorderStyle) = 0;
/* attribute DOMString borderTop; */
NS_SCRIPTABLE NS_IMETHOD GetBorderTop(nsAString & aBorderTop) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderTop(const nsAString & aBorderTop) = 0;
/* attribute DOMString borderRight; */
NS_SCRIPTABLE NS_IMETHOD GetBorderRight(nsAString & aBorderRight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderRight(const nsAString & aBorderRight) = 0;
/* attribute DOMString borderBottom; */
NS_SCRIPTABLE NS_IMETHOD GetBorderBottom(nsAString & aBorderBottom) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderBottom(const nsAString & aBorderBottom) = 0;
/* attribute DOMString borderLeft; */
NS_SCRIPTABLE NS_IMETHOD GetBorderLeft(nsAString & aBorderLeft) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderLeft(const nsAString & aBorderLeft) = 0;
/* attribute DOMString borderTopColor; */
NS_SCRIPTABLE NS_IMETHOD GetBorderTopColor(nsAString & aBorderTopColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderTopColor(const nsAString & aBorderTopColor) = 0;
/* attribute DOMString borderRightColor; */
NS_SCRIPTABLE NS_IMETHOD GetBorderRightColor(nsAString & aBorderRightColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderRightColor(const nsAString & aBorderRightColor) = 0;
/* attribute DOMString borderBottomColor; */
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomColor(nsAString & aBorderBottomColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomColor(const nsAString & aBorderBottomColor) = 0;
/* attribute DOMString borderLeftColor; */
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftColor(nsAString & aBorderLeftColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftColor(const nsAString & aBorderLeftColor) = 0;
/* attribute DOMString borderTopStyle; */
NS_SCRIPTABLE NS_IMETHOD GetBorderTopStyle(nsAString & aBorderTopStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderTopStyle(const nsAString & aBorderTopStyle) = 0;
/* attribute DOMString borderRightStyle; */
NS_SCRIPTABLE NS_IMETHOD GetBorderRightStyle(nsAString & aBorderRightStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderRightStyle(const nsAString & aBorderRightStyle) = 0;
/* attribute DOMString borderBottomStyle; */
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomStyle(nsAString & aBorderBottomStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomStyle(const nsAString & aBorderBottomStyle) = 0;
/* attribute DOMString borderLeftStyle; */
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftStyle(nsAString & aBorderLeftStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftStyle(const nsAString & aBorderLeftStyle) = 0;
/* attribute DOMString borderTopWidth; */
NS_SCRIPTABLE NS_IMETHOD GetBorderTopWidth(nsAString & aBorderTopWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderTopWidth(const nsAString & aBorderTopWidth) = 0;
/* attribute DOMString borderRightWidth; */
NS_SCRIPTABLE NS_IMETHOD GetBorderRightWidth(nsAString & aBorderRightWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderRightWidth(const nsAString & aBorderRightWidth) = 0;
/* attribute DOMString borderBottomWidth; */
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomWidth(nsAString & aBorderBottomWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomWidth(const nsAString & aBorderBottomWidth) = 0;
/* attribute DOMString borderLeftWidth; */
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftWidth(nsAString & aBorderLeftWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftWidth(const nsAString & aBorderLeftWidth) = 0;
/* attribute DOMString borderWidth; */
NS_SCRIPTABLE NS_IMETHOD GetBorderWidth(nsAString & aBorderWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderWidth(const nsAString & aBorderWidth) = 0;
/* attribute DOMString borderRadius; */
NS_SCRIPTABLE NS_IMETHOD GetBorderRadius(nsAString & aBorderRadius) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderRadius(const nsAString & aBorderRadius) = 0;
/* attribute DOMString borderTopLeftRadius; */
NS_SCRIPTABLE NS_IMETHOD GetBorderTopLeftRadius(nsAString & aBorderTopLeftRadius) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderTopLeftRadius(const nsAString & aBorderTopLeftRadius) = 0;
/* attribute DOMString borderTopRightRadius; */
NS_SCRIPTABLE NS_IMETHOD GetBorderTopRightRadius(nsAString & aBorderTopRightRadius) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderTopRightRadius(const nsAString & aBorderTopRightRadius) = 0;
/* attribute DOMString borderBottomLeftRadius; */
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomLeftRadius(nsAString & aBorderBottomLeftRadius) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomLeftRadius(const nsAString & aBorderBottomLeftRadius) = 0;
/* attribute DOMString borderBottomRightRadius; */
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomRightRadius(nsAString & aBorderBottomRightRadius) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomRightRadius(const nsAString & aBorderBottomRightRadius) = 0;
/* attribute DOMString bottom; */
NS_SCRIPTABLE NS_IMETHOD GetBottom(nsAString & aBottom) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBottom(const nsAString & aBottom) = 0;
/* attribute DOMString boxShadow; */
NS_SCRIPTABLE NS_IMETHOD GetBoxShadow(nsAString & aBoxShadow) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBoxShadow(const nsAString & aBoxShadow) = 0;
/* attribute DOMString captionSide; */
NS_SCRIPTABLE NS_IMETHOD GetCaptionSide(nsAString & aCaptionSide) = 0;
NS_SCRIPTABLE NS_IMETHOD SetCaptionSide(const nsAString & aCaptionSide) = 0;
/* attribute DOMString clear; */
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) = 0;
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) = 0;
/* attribute DOMString clip; */
NS_SCRIPTABLE NS_IMETHOD GetClip(nsAString & aClip) = 0;
NS_SCRIPTABLE NS_IMETHOD SetClip(const nsAString & aClip) = 0;
/* attribute DOMString color; */
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) = 0;
/* attribute DOMString content; */
NS_SCRIPTABLE NS_IMETHOD GetContent(nsAString & aContent) = 0;
NS_SCRIPTABLE NS_IMETHOD SetContent(const nsAString & aContent) = 0;
/* attribute DOMString counterIncrement; */
NS_SCRIPTABLE NS_IMETHOD GetCounterIncrement(nsAString & aCounterIncrement) = 0;
NS_SCRIPTABLE NS_IMETHOD SetCounterIncrement(const nsAString & aCounterIncrement) = 0;
/* attribute DOMString counterReset; */
NS_SCRIPTABLE NS_IMETHOD GetCounterReset(nsAString & aCounterReset) = 0;
NS_SCRIPTABLE NS_IMETHOD SetCounterReset(const nsAString & aCounterReset) = 0;
/* attribute DOMString cursor; */
NS_SCRIPTABLE NS_IMETHOD GetCursor(nsAString & aCursor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetCursor(const nsAString & aCursor) = 0;
/* attribute DOMString direction; */
NS_SCRIPTABLE NS_IMETHOD GetDirection(nsAString & aDirection) = 0;
NS_SCRIPTABLE NS_IMETHOD SetDirection(const nsAString & aDirection) = 0;
/* attribute DOMString display; */
NS_SCRIPTABLE NS_IMETHOD GetDisplay(nsAString & aDisplay) = 0;
NS_SCRIPTABLE NS_IMETHOD SetDisplay(const nsAString & aDisplay) = 0;
/* attribute DOMString emptyCells; */
NS_SCRIPTABLE NS_IMETHOD GetEmptyCells(nsAString & aEmptyCells) = 0;
NS_SCRIPTABLE NS_IMETHOD SetEmptyCells(const nsAString & aEmptyCells) = 0;
/* attribute DOMString cssFloat; */
NS_SCRIPTABLE NS_IMETHOD GetCssFloat(nsAString & aCssFloat) = 0;
NS_SCRIPTABLE NS_IMETHOD SetCssFloat(const nsAString & aCssFloat) = 0;
/* attribute DOMString font; */
NS_SCRIPTABLE NS_IMETHOD GetFont(nsAString & aFont) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFont(const nsAString & aFont) = 0;
/* attribute DOMString fontFamily; */
NS_SCRIPTABLE NS_IMETHOD GetFontFamily(nsAString & aFontFamily) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontFamily(const nsAString & aFontFamily) = 0;
/* attribute DOMString fontSize; */
NS_SCRIPTABLE NS_IMETHOD GetFontSize(nsAString & aFontSize) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontSize(const nsAString & aFontSize) = 0;
/* attribute DOMString fontSizeAdjust; */
NS_SCRIPTABLE NS_IMETHOD GetFontSizeAdjust(nsAString & aFontSizeAdjust) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontSizeAdjust(const nsAString & aFontSizeAdjust) = 0;
/* attribute DOMString fontStretch; */
NS_SCRIPTABLE NS_IMETHOD GetFontStretch(nsAString & aFontStretch) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontStretch(const nsAString & aFontStretch) = 0;
/* attribute DOMString fontStyle; */
NS_SCRIPTABLE NS_IMETHOD GetFontStyle(nsAString & aFontStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontStyle(const nsAString & aFontStyle) = 0;
/* attribute DOMString fontVariant; */
NS_SCRIPTABLE NS_IMETHOD GetFontVariant(nsAString & aFontVariant) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontVariant(const nsAString & aFontVariant) = 0;
/* attribute DOMString fontWeight; */
NS_SCRIPTABLE NS_IMETHOD GetFontWeight(nsAString & aFontWeight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFontWeight(const nsAString & aFontWeight) = 0;
/* attribute DOMString height; */
NS_SCRIPTABLE NS_IMETHOD GetHeight(nsAString & aHeight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetHeight(const nsAString & aHeight) = 0;
/* attribute DOMString left; */
NS_SCRIPTABLE NS_IMETHOD GetLeft(nsAString & aLeft) = 0;
NS_SCRIPTABLE NS_IMETHOD SetLeft(const nsAString & aLeft) = 0;
/* attribute DOMString letterSpacing; */
NS_SCRIPTABLE NS_IMETHOD GetLetterSpacing(nsAString & aLetterSpacing) = 0;
NS_SCRIPTABLE NS_IMETHOD SetLetterSpacing(const nsAString & aLetterSpacing) = 0;
/* attribute DOMString lineHeight; */
NS_SCRIPTABLE NS_IMETHOD GetLineHeight(nsAString & aLineHeight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetLineHeight(const nsAString & aLineHeight) = 0;
/* attribute DOMString listStyle; */
NS_SCRIPTABLE NS_IMETHOD GetListStyle(nsAString & aListStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetListStyle(const nsAString & aListStyle) = 0;
/* attribute DOMString listStyleImage; */
NS_SCRIPTABLE NS_IMETHOD GetListStyleImage(nsAString & aListStyleImage) = 0;
NS_SCRIPTABLE NS_IMETHOD SetListStyleImage(const nsAString & aListStyleImage) = 0;
/* attribute DOMString listStylePosition; */
NS_SCRIPTABLE NS_IMETHOD GetListStylePosition(nsAString & aListStylePosition) = 0;
NS_SCRIPTABLE NS_IMETHOD SetListStylePosition(const nsAString & aListStylePosition) = 0;
/* attribute DOMString listStyleType; */
NS_SCRIPTABLE NS_IMETHOD GetListStyleType(nsAString & aListStyleType) = 0;
NS_SCRIPTABLE NS_IMETHOD SetListStyleType(const nsAString & aListStyleType) = 0;
/* attribute DOMString margin; */
NS_SCRIPTABLE NS_IMETHOD GetMargin(nsAString & aMargin) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMargin(const nsAString & aMargin) = 0;
/* attribute DOMString marginTop; */
NS_SCRIPTABLE NS_IMETHOD GetMarginTop(nsAString & aMarginTop) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarginTop(const nsAString & aMarginTop) = 0;
/* attribute DOMString marginRight; */
NS_SCRIPTABLE NS_IMETHOD GetMarginRight(nsAString & aMarginRight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarginRight(const nsAString & aMarginRight) = 0;
/* attribute DOMString marginBottom; */
NS_SCRIPTABLE NS_IMETHOD GetMarginBottom(nsAString & aMarginBottom) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarginBottom(const nsAString & aMarginBottom) = 0;
/* attribute DOMString marginLeft; */
NS_SCRIPTABLE NS_IMETHOD GetMarginLeft(nsAString & aMarginLeft) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarginLeft(const nsAString & aMarginLeft) = 0;
/* attribute DOMString markerOffset; */
NS_SCRIPTABLE NS_IMETHOD GetMarkerOffset(nsAString & aMarkerOffset) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarkerOffset(const nsAString & aMarkerOffset) = 0;
/* attribute DOMString marks; */
NS_SCRIPTABLE NS_IMETHOD GetMarks(nsAString & aMarks) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarks(const nsAString & aMarks) = 0;
/* attribute DOMString maxHeight; */
NS_SCRIPTABLE NS_IMETHOD GetMaxHeight(nsAString & aMaxHeight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMaxHeight(const nsAString & aMaxHeight) = 0;
/* attribute DOMString maxWidth; */
NS_SCRIPTABLE NS_IMETHOD GetMaxWidth(nsAString & aMaxWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMaxWidth(const nsAString & aMaxWidth) = 0;
/* attribute DOMString minHeight; */
NS_SCRIPTABLE NS_IMETHOD GetMinHeight(nsAString & aMinHeight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMinHeight(const nsAString & aMinHeight) = 0;
/* attribute DOMString minWidth; */
NS_SCRIPTABLE NS_IMETHOD GetMinWidth(nsAString & aMinWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMinWidth(const nsAString & aMinWidth) = 0;
/* attribute DOMString orphans; */
NS_SCRIPTABLE NS_IMETHOD GetOrphans(nsAString & aOrphans) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOrphans(const nsAString & aOrphans) = 0;
/* attribute DOMString outline; */
NS_SCRIPTABLE NS_IMETHOD GetOutline(nsAString & aOutline) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOutline(const nsAString & aOutline) = 0;
/* attribute DOMString outlineColor; */
NS_SCRIPTABLE NS_IMETHOD GetOutlineColor(nsAString & aOutlineColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOutlineColor(const nsAString & aOutlineColor) = 0;
/* attribute DOMString outlineStyle; */
NS_SCRIPTABLE NS_IMETHOD GetOutlineStyle(nsAString & aOutlineStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOutlineStyle(const nsAString & aOutlineStyle) = 0;
/* attribute DOMString outlineWidth; */
NS_SCRIPTABLE NS_IMETHOD GetOutlineWidth(nsAString & aOutlineWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOutlineWidth(const nsAString & aOutlineWidth) = 0;
/* attribute DOMString overflow; */
NS_SCRIPTABLE NS_IMETHOD GetOverflow(nsAString & aOverflow) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOverflow(const nsAString & aOverflow) = 0;
/* attribute DOMString padding; */
NS_SCRIPTABLE NS_IMETHOD GetPadding(nsAString & aPadding) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPadding(const nsAString & aPadding) = 0;
/* attribute DOMString paddingTop; */
NS_SCRIPTABLE NS_IMETHOD GetPaddingTop(nsAString & aPaddingTop) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPaddingTop(const nsAString & aPaddingTop) = 0;
/* attribute DOMString paddingRight; */
NS_SCRIPTABLE NS_IMETHOD GetPaddingRight(nsAString & aPaddingRight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPaddingRight(const nsAString & aPaddingRight) = 0;
/* attribute DOMString paddingBottom; */
NS_SCRIPTABLE NS_IMETHOD GetPaddingBottom(nsAString & aPaddingBottom) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPaddingBottom(const nsAString & aPaddingBottom) = 0;
/* attribute DOMString paddingLeft; */
NS_SCRIPTABLE NS_IMETHOD GetPaddingLeft(nsAString & aPaddingLeft) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPaddingLeft(const nsAString & aPaddingLeft) = 0;
/* attribute DOMString page; */
NS_SCRIPTABLE NS_IMETHOD GetPage(nsAString & aPage) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPage(const nsAString & aPage) = 0;
/* attribute DOMString pageBreakAfter; */
NS_SCRIPTABLE NS_IMETHOD GetPageBreakAfter(nsAString & aPageBreakAfter) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPageBreakAfter(const nsAString & aPageBreakAfter) = 0;
/* attribute DOMString pageBreakBefore; */
NS_SCRIPTABLE NS_IMETHOD GetPageBreakBefore(nsAString & aPageBreakBefore) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPageBreakBefore(const nsAString & aPageBreakBefore) = 0;
/* attribute DOMString pageBreakInside; */
NS_SCRIPTABLE NS_IMETHOD GetPageBreakInside(nsAString & aPageBreakInside) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPageBreakInside(const nsAString & aPageBreakInside) = 0;
/* attribute DOMString position; */
NS_SCRIPTABLE NS_IMETHOD GetPosition(nsAString & aPosition) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPosition(const nsAString & aPosition) = 0;
/* attribute DOMString quotes; */
NS_SCRIPTABLE NS_IMETHOD GetQuotes(nsAString & aQuotes) = 0;
NS_SCRIPTABLE NS_IMETHOD SetQuotes(const nsAString & aQuotes) = 0;
/* attribute DOMString right; */
NS_SCRIPTABLE NS_IMETHOD GetRight(nsAString & aRight) = 0;
NS_SCRIPTABLE NS_IMETHOD SetRight(const nsAString & aRight) = 0;
/* attribute DOMString size; */
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) = 0;
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) = 0;
/* attribute DOMString tableLayout; */
NS_SCRIPTABLE NS_IMETHOD GetTableLayout(nsAString & aTableLayout) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTableLayout(const nsAString & aTableLayout) = 0;
/* attribute DOMString textAlign; */
NS_SCRIPTABLE NS_IMETHOD GetTextAlign(nsAString & aTextAlign) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextAlign(const nsAString & aTextAlign) = 0;
/* attribute DOMString textDecoration; */
NS_SCRIPTABLE NS_IMETHOD GetTextDecoration(nsAString & aTextDecoration) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextDecoration(const nsAString & aTextDecoration) = 0;
/* attribute DOMString textIndent; */
NS_SCRIPTABLE NS_IMETHOD GetTextIndent(nsAString & aTextIndent) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextIndent(const nsAString & aTextIndent) = 0;
/* attribute DOMString textOverflow; */
NS_SCRIPTABLE NS_IMETHOD GetTextOverflow(nsAString & aTextOverflow) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextOverflow(const nsAString & aTextOverflow) = 0;
/* attribute DOMString textShadow; */
NS_SCRIPTABLE NS_IMETHOD GetTextShadow(nsAString & aTextShadow) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextShadow(const nsAString & aTextShadow) = 0;
/* attribute DOMString textTransform; */
NS_SCRIPTABLE NS_IMETHOD GetTextTransform(nsAString & aTextTransform) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextTransform(const nsAString & aTextTransform) = 0;
/* attribute DOMString top; */
NS_SCRIPTABLE NS_IMETHOD GetTop(nsAString & aTop) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTop(const nsAString & aTop) = 0;
/* attribute DOMString unicodeBidi; */
NS_SCRIPTABLE NS_IMETHOD GetUnicodeBidi(nsAString & aUnicodeBidi) = 0;
NS_SCRIPTABLE NS_IMETHOD SetUnicodeBidi(const nsAString & aUnicodeBidi) = 0;
/* attribute DOMString verticalAlign; */
NS_SCRIPTABLE NS_IMETHOD GetVerticalAlign(nsAString & aVerticalAlign) = 0;
NS_SCRIPTABLE NS_IMETHOD SetVerticalAlign(const nsAString & aVerticalAlign) = 0;
/* attribute DOMString visibility; */
NS_SCRIPTABLE NS_IMETHOD GetVisibility(nsAString & aVisibility) = 0;
NS_SCRIPTABLE NS_IMETHOD SetVisibility(const nsAString & aVisibility) = 0;
/* attribute DOMString whiteSpace; */
NS_SCRIPTABLE NS_IMETHOD GetWhiteSpace(nsAString & aWhiteSpace) = 0;
NS_SCRIPTABLE NS_IMETHOD SetWhiteSpace(const nsAString & aWhiteSpace) = 0;
/* attribute DOMString widows; */
NS_SCRIPTABLE NS_IMETHOD GetWidows(nsAString & aWidows) = 0;
NS_SCRIPTABLE NS_IMETHOD SetWidows(const nsAString & aWidows) = 0;
/* attribute DOMString width; */
NS_SCRIPTABLE NS_IMETHOD GetWidth(nsAString & aWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetWidth(const nsAString & aWidth) = 0;
/* attribute DOMString wordSpacing; */
NS_SCRIPTABLE NS_IMETHOD GetWordSpacing(nsAString & aWordSpacing) = 0;
NS_SCRIPTABLE NS_IMETHOD SetWordSpacing(const nsAString & aWordSpacing) = 0;
/* attribute DOMString zIndex; */
NS_SCRIPTABLE NS_IMETHOD GetZIndex(nsAString & aZIndex) = 0;
NS_SCRIPTABLE NS_IMETHOD SetZIndex(const nsAString & aZIndex) = 0;
/* attribute DOMString clipPath; */
NS_SCRIPTABLE NS_IMETHOD GetClipPath(nsAString & aClipPath) = 0;
NS_SCRIPTABLE NS_IMETHOD SetClipPath(const nsAString & aClipPath) = 0;
/* attribute DOMString clipRule; */
NS_SCRIPTABLE NS_IMETHOD GetClipRule(nsAString & aClipRule) = 0;
NS_SCRIPTABLE NS_IMETHOD SetClipRule(const nsAString & aClipRule) = 0;
/* attribute DOMString colorInterpolation; */
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolation(nsAString & aColorInterpolation) = 0;
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolation(const nsAString & aColorInterpolation) = 0;
/* attribute DOMString colorInterpolationFilters; */
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolationFilters(nsAString & aColorInterpolationFilters) = 0;
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolationFilters(const nsAString & aColorInterpolationFilters) = 0;
/* attribute DOMString dominantBaseline; */
NS_SCRIPTABLE NS_IMETHOD GetDominantBaseline(nsAString & aDominantBaseline) = 0;
NS_SCRIPTABLE NS_IMETHOD SetDominantBaseline(const nsAString & aDominantBaseline) = 0;
/* attribute DOMString fill; */
NS_SCRIPTABLE NS_IMETHOD GetFill(nsAString & aFill) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFill(const nsAString & aFill) = 0;
/* attribute DOMString fillOpacity; */
NS_SCRIPTABLE NS_IMETHOD GetFillOpacity(nsAString & aFillOpacity) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFillOpacity(const nsAString & aFillOpacity) = 0;
/* attribute DOMString fillRule; */
NS_SCRIPTABLE NS_IMETHOD GetFillRule(nsAString & aFillRule) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFillRule(const nsAString & aFillRule) = 0;
/* attribute DOMString filter; */
NS_SCRIPTABLE NS_IMETHOD GetFilter(nsAString & aFilter) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFilter(const nsAString & aFilter) = 0;
/* attribute DOMString floodColor; */
NS_SCRIPTABLE NS_IMETHOD GetFloodColor(nsAString & aFloodColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFloodColor(const nsAString & aFloodColor) = 0;
/* attribute DOMString floodOpacity; */
NS_SCRIPTABLE NS_IMETHOD GetFloodOpacity(nsAString & aFloodOpacity) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFloodOpacity(const nsAString & aFloodOpacity) = 0;
/* attribute DOMString imageRendering; */
NS_SCRIPTABLE NS_IMETHOD GetImageRendering(nsAString & aImageRendering) = 0;
NS_SCRIPTABLE NS_IMETHOD SetImageRendering(const nsAString & aImageRendering) = 0;
/* attribute DOMString lightingColor; */
NS_SCRIPTABLE NS_IMETHOD GetLightingColor(nsAString & aLightingColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetLightingColor(const nsAString & aLightingColor) = 0;
/* attribute DOMString marker; */
NS_SCRIPTABLE NS_IMETHOD GetMarker(nsAString & aMarker) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarker(const nsAString & aMarker) = 0;
/* attribute DOMString markerEnd; */
NS_SCRIPTABLE NS_IMETHOD GetMarkerEnd(nsAString & aMarkerEnd) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarkerEnd(const nsAString & aMarkerEnd) = 0;
/* attribute DOMString markerMid; */
NS_SCRIPTABLE NS_IMETHOD GetMarkerMid(nsAString & aMarkerMid) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarkerMid(const nsAString & aMarkerMid) = 0;
/* attribute DOMString markerStart; */
NS_SCRIPTABLE NS_IMETHOD GetMarkerStart(nsAString & aMarkerStart) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMarkerStart(const nsAString & aMarkerStart) = 0;
/* attribute DOMString mask; */
NS_SCRIPTABLE NS_IMETHOD GetMask(nsAString & aMask) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMask(const nsAString & aMask) = 0;
/* attribute DOMString shapeRendering; */
NS_SCRIPTABLE NS_IMETHOD GetShapeRendering(nsAString & aShapeRendering) = 0;
NS_SCRIPTABLE NS_IMETHOD SetShapeRendering(const nsAString & aShapeRendering) = 0;
/* attribute DOMString stopColor; */
NS_SCRIPTABLE NS_IMETHOD GetStopColor(nsAString & aStopColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStopColor(const nsAString & aStopColor) = 0;
/* attribute DOMString stopOpacity; */
NS_SCRIPTABLE NS_IMETHOD GetStopOpacity(nsAString & aStopOpacity) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStopOpacity(const nsAString & aStopOpacity) = 0;
/* attribute DOMString stroke; */
NS_SCRIPTABLE NS_IMETHOD GetStroke(nsAString & aStroke) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStroke(const nsAString & aStroke) = 0;
/* attribute DOMString strokeDasharray; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeDasharray(nsAString & aStrokeDasharray) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeDasharray(const nsAString & aStrokeDasharray) = 0;
/* attribute DOMString strokeDashoffset; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeDashoffset(nsAString & aStrokeDashoffset) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeDashoffset(const nsAString & aStrokeDashoffset) = 0;
/* attribute DOMString strokeLinecap; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinecap(nsAString & aStrokeLinecap) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinecap(const nsAString & aStrokeLinecap) = 0;
/* attribute DOMString strokeLinejoin; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinejoin(nsAString & aStrokeLinejoin) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinejoin(const nsAString & aStrokeLinejoin) = 0;
/* attribute DOMString strokeMiterlimit; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeMiterlimit(nsAString & aStrokeMiterlimit) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeMiterlimit(const nsAString & aStrokeMiterlimit) = 0;
/* attribute DOMString strokeOpacity; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeOpacity(nsAString & aStrokeOpacity) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeOpacity(const nsAString & aStrokeOpacity) = 0;
/* attribute DOMString strokeWidth; */
NS_SCRIPTABLE NS_IMETHOD GetStrokeWidth(nsAString & aStrokeWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetStrokeWidth(const nsAString & aStrokeWidth) = 0;
/* attribute DOMString textAnchor; */
NS_SCRIPTABLE NS_IMETHOD GetTextAnchor(nsAString & aTextAnchor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextAnchor(const nsAString & aTextAnchor) = 0;
/* attribute DOMString textRendering; */
NS_SCRIPTABLE NS_IMETHOD GetTextRendering(nsAString & aTextRendering) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTextRendering(const nsAString & aTextRendering) = 0;
/* attribute DOMString vectorEffect; */
NS_SCRIPTABLE NS_IMETHOD GetVectorEffect(nsAString & aVectorEffect) = 0;
NS_SCRIPTABLE NS_IMETHOD SetVectorEffect(const nsAString & aVectorEffect) = 0;
/* attribute DOMString MozAppearance; */
NS_SCRIPTABLE NS_IMETHOD GetMozAppearance(nsAString & aMozAppearance) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAppearance(const nsAString & aMozAppearance) = 0;
/* attribute DOMString backgroundClip; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundClip(nsAString & aBackgroundClip) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundClip(const nsAString & aBackgroundClip) = 0;
/* attribute DOMString MozBackgroundInlinePolicy; */
NS_SCRIPTABLE NS_IMETHOD GetMozBackgroundInlinePolicy(nsAString & aMozBackgroundInlinePolicy) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBackgroundInlinePolicy(const nsAString & aMozBackgroundInlinePolicy) = 0;
/* attribute DOMString backgroundOrigin; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundOrigin(nsAString & aBackgroundOrigin) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundOrigin(const nsAString & aBackgroundOrigin) = 0;
/* attribute DOMString MozBinding; */
NS_SCRIPTABLE NS_IMETHOD GetMozBinding(nsAString & aMozBinding) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBinding(const nsAString & aMozBinding) = 0;
/* attribute DOMString MozBorderBottomColors; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderBottomColors(nsAString & aMozBorderBottomColors) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderBottomColors(const nsAString & aMozBorderBottomColors) = 0;
/* attribute DOMString MozBorderLeftColors; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderLeftColors(nsAString & aMozBorderLeftColors) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderLeftColors(const nsAString & aMozBorderLeftColors) = 0;
/* attribute DOMString MozBorderRightColors; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderRightColors(nsAString & aMozBorderRightColors) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderRightColors(const nsAString & aMozBorderRightColors) = 0;
/* attribute DOMString MozBorderTopColors; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderTopColors(nsAString & aMozBorderTopColors) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderTopColors(const nsAString & aMozBorderTopColors) = 0;
/* attribute DOMString MozBoxAlign; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxAlign(nsAString & aMozBoxAlign) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxAlign(const nsAString & aMozBoxAlign) = 0;
/* attribute DOMString MozBoxDirection; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxDirection(nsAString & aMozBoxDirection) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxDirection(const nsAString & aMozBoxDirection) = 0;
/* attribute DOMString MozBoxFlex; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxFlex(nsAString & aMozBoxFlex) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxFlex(const nsAString & aMozBoxFlex) = 0;
/* attribute DOMString MozBoxOrient; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrient(nsAString & aMozBoxOrient) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrient(const nsAString & aMozBoxOrient) = 0;
/* attribute DOMString MozBoxOrdinalGroup; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrdinalGroup(nsAString & aMozBoxOrdinalGroup) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrdinalGroup(const nsAString & aMozBoxOrdinalGroup) = 0;
/* attribute DOMString MozBoxPack; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxPack(nsAString & aMozBoxPack) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxPack(const nsAString & aMozBoxPack) = 0;
/* attribute DOMString MozBoxSizing; */
NS_SCRIPTABLE NS_IMETHOD GetMozBoxSizing(nsAString & aMozBoxSizing) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBoxSizing(const nsAString & aMozBoxSizing) = 0;
/* attribute DOMString MozColumnCount; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnCount(nsAString & aMozColumnCount) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnCount(const nsAString & aMozColumnCount) = 0;
/* attribute DOMString MozColumnWidth; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnWidth(nsAString & aMozColumnWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnWidth(const nsAString & aMozColumnWidth) = 0;
/* attribute DOMString MozColumnGap; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnGap(nsAString & aMozColumnGap) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnGap(const nsAString & aMozColumnGap) = 0;
/* attribute DOMString MozFloatEdge; */
NS_SCRIPTABLE NS_IMETHOD GetMozFloatEdge(nsAString & aMozFloatEdge) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozFloatEdge(const nsAString & aMozFloatEdge) = 0;
/* attribute DOMString MozFontFeatureSettings; */
NS_SCRIPTABLE NS_IMETHOD GetMozFontFeatureSettings(nsAString & aMozFontFeatureSettings) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozFontFeatureSettings(const nsAString & aMozFontFeatureSettings) = 0;
/* attribute DOMString MozFontLanguageOverride; */
NS_SCRIPTABLE NS_IMETHOD GetMozFontLanguageOverride(nsAString & aMozFontLanguageOverride) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozFontLanguageOverride(const nsAString & aMozFontLanguageOverride) = 0;
/* attribute DOMString MozForceBrokenImageIcon; */
NS_SCRIPTABLE NS_IMETHOD GetMozForceBrokenImageIcon(nsAString & aMozForceBrokenImageIcon) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozForceBrokenImageIcon(const nsAString & aMozForceBrokenImageIcon) = 0;
/* attribute DOMString MozImageRegion; */
NS_SCRIPTABLE NS_IMETHOD GetMozImageRegion(nsAString & aMozImageRegion) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozImageRegion(const nsAString & aMozImageRegion) = 0;
/* attribute DOMString MozMarginEnd; */
NS_SCRIPTABLE NS_IMETHOD GetMozMarginEnd(nsAString & aMozMarginEnd) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozMarginEnd(const nsAString & aMozMarginEnd) = 0;
/* attribute DOMString MozMarginStart; */
NS_SCRIPTABLE NS_IMETHOD GetMozMarginStart(nsAString & aMozMarginStart) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozMarginStart(const nsAString & aMozMarginStart) = 0;
/* attribute DOMString MozOrient; */
NS_SCRIPTABLE NS_IMETHOD GetMozOrient(nsAString & aMozOrient) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozOrient(const nsAString & aMozOrient) = 0;
/* attribute DOMString MozOutlineRadius; */
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadius(nsAString & aMozOutlineRadius) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadius(const nsAString & aMozOutlineRadius) = 0;
/* attribute DOMString MozOutlineRadiusTopleft; */
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopleft(nsAString & aMozOutlineRadiusTopleft) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopleft(const nsAString & aMozOutlineRadiusTopleft) = 0;
/* attribute DOMString MozOutlineRadiusTopright; */
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopright(nsAString & aMozOutlineRadiusTopright) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopright(const nsAString & aMozOutlineRadiusTopright) = 0;
/* attribute DOMString MozOutlineRadiusBottomleft; */
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomleft(nsAString & aMozOutlineRadiusBottomleft) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomleft(const nsAString & aMozOutlineRadiusBottomleft) = 0;
/* attribute DOMString MozOutlineRadiusBottomright; */
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomright(nsAString & aMozOutlineRadiusBottomright) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomright(const nsAString & aMozOutlineRadiusBottomright) = 0;
/* attribute DOMString MozPaddingEnd; */
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingEnd(nsAString & aMozPaddingEnd) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingEnd(const nsAString & aMozPaddingEnd) = 0;
/* attribute DOMString MozPaddingStart; */
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingStart(nsAString & aMozPaddingStart) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingStart(const nsAString & aMozPaddingStart) = 0;
/* attribute DOMString MozUserFocus; */
NS_SCRIPTABLE NS_IMETHOD GetMozUserFocus(nsAString & aMozUserFocus) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozUserFocus(const nsAString & aMozUserFocus) = 0;
/* attribute DOMString MozUserInput; */
NS_SCRIPTABLE NS_IMETHOD GetMozUserInput(nsAString & aMozUserInput) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozUserInput(const nsAString & aMozUserInput) = 0;
/* attribute DOMString MozUserModify; */
NS_SCRIPTABLE NS_IMETHOD GetMozUserModify(nsAString & aMozUserModify) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozUserModify(const nsAString & aMozUserModify) = 0;
/* attribute DOMString MozUserSelect; */
NS_SCRIPTABLE NS_IMETHOD GetMozUserSelect(nsAString & aMozUserSelect) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozUserSelect(const nsAString & aMozUserSelect) = 0;
/* attribute DOMString opacity; */
NS_SCRIPTABLE NS_IMETHOD GetOpacity(nsAString & aOpacity) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOpacity(const nsAString & aOpacity) = 0;
/* attribute DOMString outlineOffset; */
NS_SCRIPTABLE NS_IMETHOD GetOutlineOffset(nsAString & aOutlineOffset) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOutlineOffset(const nsAString & aOutlineOffset) = 0;
/* attribute DOMString MozTextAlignLast; */
NS_SCRIPTABLE NS_IMETHOD GetMozTextAlignLast(nsAString & aMozTextAlignLast) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTextAlignLast(const nsAString & aMozTextAlignLast) = 0;
/* attribute DOMString overflowX; */
NS_SCRIPTABLE NS_IMETHOD GetOverflowX(nsAString & aOverflowX) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOverflowX(const nsAString & aOverflowX) = 0;
/* attribute DOMString overflowY; */
NS_SCRIPTABLE NS_IMETHOD GetOverflowY(nsAString & aOverflowY) = 0;
NS_SCRIPTABLE NS_IMETHOD SetOverflowY(const nsAString & aOverflowY) = 0;
/* attribute DOMString imeMode; */
NS_SCRIPTABLE NS_IMETHOD GetImeMode(nsAString & aImeMode) = 0;
NS_SCRIPTABLE NS_IMETHOD SetImeMode(const nsAString & aImeMode) = 0;
/* attribute DOMString MozBorderEnd; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEnd(nsAString & aMozBorderEnd) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEnd(const nsAString & aMozBorderEnd) = 0;
/* attribute DOMString MozBorderEndColor; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndColor(nsAString & aMozBorderEndColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndColor(const nsAString & aMozBorderEndColor) = 0;
/* attribute DOMString MozBorderEndStyle; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndStyle(nsAString & aMozBorderEndStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndStyle(const nsAString & aMozBorderEndStyle) = 0;
/* attribute DOMString MozBorderEndWidth; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndWidth(nsAString & aMozBorderEndWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndWidth(const nsAString & aMozBorderEndWidth) = 0;
/* attribute DOMString MozBorderStart; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStart(nsAString & aMozBorderStart) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStart(const nsAString & aMozBorderStart) = 0;
/* attribute DOMString MozBorderStartColor; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartColor(nsAString & aMozBorderStartColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartColor(const nsAString & aMozBorderStartColor) = 0;
/* attribute DOMString MozBorderStartStyle; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartStyle(nsAString & aMozBorderStartStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartStyle(const nsAString & aMozBorderStartStyle) = 0;
/* attribute DOMString MozBorderStartWidth; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartWidth(nsAString & aMozBorderStartWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartWidth(const nsAString & aMozBorderStartWidth) = 0;
/* attribute DOMString MozStackSizing; */
NS_SCRIPTABLE NS_IMETHOD GetMozStackSizing(nsAString & aMozStackSizing) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozStackSizing(const nsAString & aMozStackSizing) = 0;
/* attribute DOMString borderImage; */
NS_SCRIPTABLE NS_IMETHOD GetBorderImage(nsAString & aBorderImage) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderImage(const nsAString & aBorderImage) = 0;
/* attribute DOMString MozColumns; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumns(nsAString & aMozColumns) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumns(const nsAString & aMozColumns) = 0;
/* attribute DOMString MozColumnRule; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRule(nsAString & aMozColumnRule) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRule(const nsAString & aMozColumnRule) = 0;
/* attribute DOMString MozColumnRuleWidth; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleWidth(nsAString & aMozColumnRuleWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleWidth(const nsAString & aMozColumnRuleWidth) = 0;
/* attribute DOMString MozColumnRuleStyle; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleStyle(nsAString & aMozColumnRuleStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleStyle(const nsAString & aMozColumnRuleStyle) = 0;
/* attribute DOMString MozColumnRuleColor; */
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleColor(nsAString & aMozColumnRuleColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleColor(const nsAString & aMozColumnRuleColor) = 0;
/* attribute DOMString wordBreak; */
NS_SCRIPTABLE NS_IMETHOD GetWordBreak(nsAString & aWordBreak) = 0;
NS_SCRIPTABLE NS_IMETHOD SetWordBreak(const nsAString & aWordBreak) = 0;
/* attribute DOMString wordWrap; */
NS_SCRIPTABLE NS_IMETHOD GetWordWrap(nsAString & aWordWrap) = 0;
NS_SCRIPTABLE NS_IMETHOD SetWordWrap(const nsAString & aWordWrap) = 0;
/* attribute DOMString MozHyphens; */
NS_SCRIPTABLE NS_IMETHOD GetMozHyphens(nsAString & aMozHyphens) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozHyphens(const nsAString & aMozHyphens) = 0;
/* attribute DOMString MozTransform; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransform(nsAString & aMozTransform) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransform(const nsAString & aMozTransform) = 0;
/* attribute DOMString MozTransformOrigin; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransformOrigin(nsAString & aMozTransformOrigin) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransformOrigin(const nsAString & aMozTransformOrigin) = 0;
/* attribute DOMString MozPerspective; */
NS_SCRIPTABLE NS_IMETHOD GetMozPerspective(nsAString & aMozPerspective) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozPerspective(const nsAString & aMozPerspective) = 0;
/* attribute DOMString MozPerspectiveOrigin; */
NS_SCRIPTABLE NS_IMETHOD GetMozPerspectiveOrigin(nsAString & aMozPerspectiveOrigin) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozPerspectiveOrigin(const nsAString & aMozPerspectiveOrigin) = 0;
/* attribute DOMString MozBackfaceVisibility; */
NS_SCRIPTABLE NS_IMETHOD GetMozBackfaceVisibility(nsAString & aMozBackfaceVisibility) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBackfaceVisibility(const nsAString & aMozBackfaceVisibility) = 0;
/* attribute DOMString MozTransformStyle; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransformStyle(nsAString & aMozTransformStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransformStyle(const nsAString & aMozTransformStyle) = 0;
/* attribute DOMString MozWindowShadow; */
NS_SCRIPTABLE NS_IMETHOD GetMozWindowShadow(nsAString & aMozWindowShadow) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozWindowShadow(const nsAString & aMozWindowShadow) = 0;
/* attribute DOMString backgroundSize; */
NS_SCRIPTABLE NS_IMETHOD GetBackgroundSize(nsAString & aBackgroundSize) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBackgroundSize(const nsAString & aBackgroundSize) = 0;
/* attribute DOMString MozTextBlink; */
NS_SCRIPTABLE NS_IMETHOD GetMozTextBlink(nsAString & aMozTextBlink) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTextBlink(const nsAString & aMozTextBlink) = 0;
/* attribute DOMString MozTextDecorationColor; */
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationColor(nsAString & aMozTextDecorationColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationColor(const nsAString & aMozTextDecorationColor) = 0;
/* attribute DOMString MozTextDecorationLine; */
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationLine(nsAString & aMozTextDecorationLine) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationLine(const nsAString & aMozTextDecorationLine) = 0;
/* attribute DOMString MozTextDecorationStyle; */
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationStyle(nsAString & aMozTextDecorationStyle) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationStyle(const nsAString & aMozTextDecorationStyle) = 0;
/* attribute DOMString MozTransitionProperty; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionProperty(nsAString & aMozTransitionProperty) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionProperty(const nsAString & aMozTransitionProperty) = 0;
/* attribute DOMString MozTransitionDuration; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDuration(nsAString & aMozTransitionDuration) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDuration(const nsAString & aMozTransitionDuration) = 0;
/* attribute DOMString MozTransitionDelay; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDelay(nsAString & aMozTransitionDelay) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDelay(const nsAString & aMozTransitionDelay) = 0;
/* attribute DOMString MozTransitionTimingFunction; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionTimingFunction(nsAString & aMozTransitionTimingFunction) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionTimingFunction(const nsAString & aMozTransitionTimingFunction) = 0;
/* attribute DOMString MozTransition; */
NS_SCRIPTABLE NS_IMETHOD GetMozTransition(nsAString & aMozTransition) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTransition(const nsAString & aMozTransition) = 0;
/* attribute DOMString pointerEvents; */
NS_SCRIPTABLE NS_IMETHOD GetPointerEvents(nsAString & aPointerEvents) = 0;
NS_SCRIPTABLE NS_IMETHOD SetPointerEvents(const nsAString & aPointerEvents) = 0;
/* attribute DOMString MozTabSize; */
NS_SCRIPTABLE NS_IMETHOD GetMozTabSize(nsAString & aMozTabSize) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTabSize(const nsAString & aMozTabSize) = 0;
/* attribute DOMString resize; */
NS_SCRIPTABLE NS_IMETHOD GetResize(nsAString & aResize) = 0;
NS_SCRIPTABLE NS_IMETHOD SetResize(const nsAString & aResize) = 0;
/* attribute DOMString MozAnimationName; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationName(nsAString & aMozAnimationName) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationName(const nsAString & aMozAnimationName) = 0;
/* attribute DOMString MozAnimationDuration; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDuration(nsAString & aMozAnimationDuration) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDuration(const nsAString & aMozAnimationDuration) = 0;
/* attribute DOMString MozAnimationDelay; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDelay(nsAString & aMozAnimationDelay) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDelay(const nsAString & aMozAnimationDelay) = 0;
/* attribute DOMString MozAnimationTimingFunction; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationTimingFunction(nsAString & aMozAnimationTimingFunction) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationTimingFunction(const nsAString & aMozAnimationTimingFunction) = 0;
/* attribute DOMString MozAnimationDirection; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDirection(nsAString & aMozAnimationDirection) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDirection(const nsAString & aMozAnimationDirection) = 0;
/* attribute DOMString MozAnimationFillMode; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationFillMode(nsAString & aMozAnimationFillMode) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationFillMode(const nsAString & aMozAnimationFillMode) = 0;
/* attribute DOMString MozAnimationIterationCount; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationIterationCount(nsAString & aMozAnimationIterationCount) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationIterationCount(const nsAString & aMozAnimationIterationCount) = 0;
/* attribute DOMString MozAnimationPlayState; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationPlayState(nsAString & aMozAnimationPlayState) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationPlayState(const nsAString & aMozAnimationPlayState) = 0;
/* attribute DOMString MozAnimation; */
NS_SCRIPTABLE NS_IMETHOD GetMozAnimation(nsAString & aMozAnimation) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozAnimation(const nsAString & aMozAnimation) = 0;
/* attribute DOMString MozTextSizeAdjust; */
NS_SCRIPTABLE NS_IMETHOD GetMozTextSizeAdjust(nsAString & aMozTextSizeAdjust) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozTextSizeAdjust(const nsAString & aMozTextSizeAdjust) = 0;
/* attribute DOMString borderImageSource; */
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSource(nsAString & aBorderImageSource) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSource(const nsAString & aBorderImageSource) = 0;
/* attribute DOMString borderImageSlice; */
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSlice(nsAString & aBorderImageSlice) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSlice(const nsAString & aBorderImageSlice) = 0;
/* attribute DOMString borderImageWidth; */
NS_SCRIPTABLE NS_IMETHOD GetBorderImageWidth(nsAString & aBorderImageWidth) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderImageWidth(const nsAString & aBorderImageWidth) = 0;
/* attribute DOMString borderImageOutset; */
NS_SCRIPTABLE NS_IMETHOD GetBorderImageOutset(nsAString & aBorderImageOutset) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderImageOutset(const nsAString & aBorderImageOutset) = 0;
/* attribute DOMString borderImageRepeat; */
NS_SCRIPTABLE NS_IMETHOD GetBorderImageRepeat(nsAString & aBorderImageRepeat) = 0;
NS_SCRIPTABLE NS_IMETHOD SetBorderImageRepeat(const nsAString & aBorderImageRepeat) = 0;
/* attribute DOMString MozBorderImage; */
NS_SCRIPTABLE NS_IMETHOD GetMozBorderImage(nsAString & aMozBorderImage) = 0;
NS_SCRIPTABLE NS_IMETHOD SetMozBorderImage(const nsAString & aMozBorderImage) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCSS2Properties, NS_IDOMCSS2PROPERTIES_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCSS2PROPERTIES \
NS_SCRIPTABLE NS_IMETHOD GetBackground(nsAString & aBackground); \
NS_SCRIPTABLE NS_IMETHOD SetBackground(const nsAString & aBackground); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundAttachment(nsAString & aBackgroundAttachment); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundAttachment(const nsAString & aBackgroundAttachment); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundColor(nsAString & aBackgroundColor); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundColor(const nsAString & aBackgroundColor); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundImage(nsAString & aBackgroundImage); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundImage(const nsAString & aBackgroundImage); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundPosition(nsAString & aBackgroundPosition); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundPosition(const nsAString & aBackgroundPosition); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundRepeat(nsAString & aBackgroundRepeat); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundRepeat(const nsAString & aBackgroundRepeat); \
NS_SCRIPTABLE NS_IMETHOD GetBorder(nsAString & aBorder); \
NS_SCRIPTABLE NS_IMETHOD SetBorder(const nsAString & aBorder); \
NS_SCRIPTABLE NS_IMETHOD GetBorderCollapse(nsAString & aBorderCollapse); \
NS_SCRIPTABLE NS_IMETHOD SetBorderCollapse(const nsAString & aBorderCollapse); \
NS_SCRIPTABLE NS_IMETHOD GetBorderColor(nsAString & aBorderColor); \
NS_SCRIPTABLE NS_IMETHOD SetBorderColor(const nsAString & aBorderColor); \
NS_SCRIPTABLE NS_IMETHOD GetBorderSpacing(nsAString & aBorderSpacing); \
NS_SCRIPTABLE NS_IMETHOD SetBorderSpacing(const nsAString & aBorderSpacing); \
NS_SCRIPTABLE NS_IMETHOD GetBorderStyle(nsAString & aBorderStyle); \
NS_SCRIPTABLE NS_IMETHOD SetBorderStyle(const nsAString & aBorderStyle); \
NS_SCRIPTABLE NS_IMETHOD GetBorderTop(nsAString & aBorderTop); \
NS_SCRIPTABLE NS_IMETHOD SetBorderTop(const nsAString & aBorderTop); \
NS_SCRIPTABLE NS_IMETHOD GetBorderRight(nsAString & aBorderRight); \
NS_SCRIPTABLE NS_IMETHOD SetBorderRight(const nsAString & aBorderRight); \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottom(nsAString & aBorderBottom); \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottom(const nsAString & aBorderBottom); \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeft(nsAString & aBorderLeft); \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeft(const nsAString & aBorderLeft); \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopColor(nsAString & aBorderTopColor); \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopColor(const nsAString & aBorderTopColor); \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightColor(nsAString & aBorderRightColor); \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightColor(const nsAString & aBorderRightColor); \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomColor(nsAString & aBorderBottomColor); \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomColor(const nsAString & aBorderBottomColor); \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftColor(nsAString & aBorderLeftColor); \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftColor(const nsAString & aBorderLeftColor); \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopStyle(nsAString & aBorderTopStyle); \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopStyle(const nsAString & aBorderTopStyle); \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightStyle(nsAString & aBorderRightStyle); \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightStyle(const nsAString & aBorderRightStyle); \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomStyle(nsAString & aBorderBottomStyle); \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomStyle(const nsAString & aBorderBottomStyle); \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftStyle(nsAString & aBorderLeftStyle); \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftStyle(const nsAString & aBorderLeftStyle); \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopWidth(nsAString & aBorderTopWidth); \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopWidth(const nsAString & aBorderTopWidth); \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightWidth(nsAString & aBorderRightWidth); \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightWidth(const nsAString & aBorderRightWidth); \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomWidth(nsAString & aBorderBottomWidth); \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomWidth(const nsAString & aBorderBottomWidth); \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftWidth(nsAString & aBorderLeftWidth); \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftWidth(const nsAString & aBorderLeftWidth); \
NS_SCRIPTABLE NS_IMETHOD GetBorderWidth(nsAString & aBorderWidth); \
NS_SCRIPTABLE NS_IMETHOD SetBorderWidth(const nsAString & aBorderWidth); \
NS_SCRIPTABLE NS_IMETHOD GetBorderRadius(nsAString & aBorderRadius); \
NS_SCRIPTABLE NS_IMETHOD SetBorderRadius(const nsAString & aBorderRadius); \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopLeftRadius(nsAString & aBorderTopLeftRadius); \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopLeftRadius(const nsAString & aBorderTopLeftRadius); \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopRightRadius(nsAString & aBorderTopRightRadius); \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopRightRadius(const nsAString & aBorderTopRightRadius); \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomLeftRadius(nsAString & aBorderBottomLeftRadius); \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomLeftRadius(const nsAString & aBorderBottomLeftRadius); \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomRightRadius(nsAString & aBorderBottomRightRadius); \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomRightRadius(const nsAString & aBorderBottomRightRadius); \
NS_SCRIPTABLE NS_IMETHOD GetBottom(nsAString & aBottom); \
NS_SCRIPTABLE NS_IMETHOD SetBottom(const nsAString & aBottom); \
NS_SCRIPTABLE NS_IMETHOD GetBoxShadow(nsAString & aBoxShadow); \
NS_SCRIPTABLE NS_IMETHOD SetBoxShadow(const nsAString & aBoxShadow); \
NS_SCRIPTABLE NS_IMETHOD GetCaptionSide(nsAString & aCaptionSide); \
NS_SCRIPTABLE NS_IMETHOD SetCaptionSide(const nsAString & aCaptionSide); \
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear); \
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear); \
NS_SCRIPTABLE NS_IMETHOD GetClip(nsAString & aClip); \
NS_SCRIPTABLE NS_IMETHOD SetClip(const nsAString & aClip); \
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor); \
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor); \
NS_SCRIPTABLE NS_IMETHOD GetContent(nsAString & aContent); \
NS_SCRIPTABLE NS_IMETHOD SetContent(const nsAString & aContent); \
NS_SCRIPTABLE NS_IMETHOD GetCounterIncrement(nsAString & aCounterIncrement); \
NS_SCRIPTABLE NS_IMETHOD SetCounterIncrement(const nsAString & aCounterIncrement); \
NS_SCRIPTABLE NS_IMETHOD GetCounterReset(nsAString & aCounterReset); \
NS_SCRIPTABLE NS_IMETHOD SetCounterReset(const nsAString & aCounterReset); \
NS_SCRIPTABLE NS_IMETHOD GetCursor(nsAString & aCursor); \
NS_SCRIPTABLE NS_IMETHOD SetCursor(const nsAString & aCursor); \
NS_SCRIPTABLE NS_IMETHOD GetDirection(nsAString & aDirection); \
NS_SCRIPTABLE NS_IMETHOD SetDirection(const nsAString & aDirection); \
NS_SCRIPTABLE NS_IMETHOD GetDisplay(nsAString & aDisplay); \
NS_SCRIPTABLE NS_IMETHOD SetDisplay(const nsAString & aDisplay); \
NS_SCRIPTABLE NS_IMETHOD GetEmptyCells(nsAString & aEmptyCells); \
NS_SCRIPTABLE NS_IMETHOD SetEmptyCells(const nsAString & aEmptyCells); \
NS_SCRIPTABLE NS_IMETHOD GetCssFloat(nsAString & aCssFloat); \
NS_SCRIPTABLE NS_IMETHOD SetCssFloat(const nsAString & aCssFloat); \
NS_SCRIPTABLE NS_IMETHOD GetFont(nsAString & aFont); \
NS_SCRIPTABLE NS_IMETHOD SetFont(const nsAString & aFont); \
NS_SCRIPTABLE NS_IMETHOD GetFontFamily(nsAString & aFontFamily); \
NS_SCRIPTABLE NS_IMETHOD SetFontFamily(const nsAString & aFontFamily); \
NS_SCRIPTABLE NS_IMETHOD GetFontSize(nsAString & aFontSize); \
NS_SCRIPTABLE NS_IMETHOD SetFontSize(const nsAString & aFontSize); \
NS_SCRIPTABLE NS_IMETHOD GetFontSizeAdjust(nsAString & aFontSizeAdjust); \
NS_SCRIPTABLE NS_IMETHOD SetFontSizeAdjust(const nsAString & aFontSizeAdjust); \
NS_SCRIPTABLE NS_IMETHOD GetFontStretch(nsAString & aFontStretch); \
NS_SCRIPTABLE NS_IMETHOD SetFontStretch(const nsAString & aFontStretch); \
NS_SCRIPTABLE NS_IMETHOD GetFontStyle(nsAString & aFontStyle); \
NS_SCRIPTABLE NS_IMETHOD SetFontStyle(const nsAString & aFontStyle); \
NS_SCRIPTABLE NS_IMETHOD GetFontVariant(nsAString & aFontVariant); \
NS_SCRIPTABLE NS_IMETHOD SetFontVariant(const nsAString & aFontVariant); \
NS_SCRIPTABLE NS_IMETHOD GetFontWeight(nsAString & aFontWeight); \
NS_SCRIPTABLE NS_IMETHOD SetFontWeight(const nsAString & aFontWeight); \
NS_SCRIPTABLE NS_IMETHOD GetHeight(nsAString & aHeight); \
NS_SCRIPTABLE NS_IMETHOD SetHeight(const nsAString & aHeight); \
NS_SCRIPTABLE NS_IMETHOD GetLeft(nsAString & aLeft); \
NS_SCRIPTABLE NS_IMETHOD SetLeft(const nsAString & aLeft); \
NS_SCRIPTABLE NS_IMETHOD GetLetterSpacing(nsAString & aLetterSpacing); \
NS_SCRIPTABLE NS_IMETHOD SetLetterSpacing(const nsAString & aLetterSpacing); \
NS_SCRIPTABLE NS_IMETHOD GetLineHeight(nsAString & aLineHeight); \
NS_SCRIPTABLE NS_IMETHOD SetLineHeight(const nsAString & aLineHeight); \
NS_SCRIPTABLE NS_IMETHOD GetListStyle(nsAString & aListStyle); \
NS_SCRIPTABLE NS_IMETHOD SetListStyle(const nsAString & aListStyle); \
NS_SCRIPTABLE NS_IMETHOD GetListStyleImage(nsAString & aListStyleImage); \
NS_SCRIPTABLE NS_IMETHOD SetListStyleImage(const nsAString & aListStyleImage); \
NS_SCRIPTABLE NS_IMETHOD GetListStylePosition(nsAString & aListStylePosition); \
NS_SCRIPTABLE NS_IMETHOD SetListStylePosition(const nsAString & aListStylePosition); \
NS_SCRIPTABLE NS_IMETHOD GetListStyleType(nsAString & aListStyleType); \
NS_SCRIPTABLE NS_IMETHOD SetListStyleType(const nsAString & aListStyleType); \
NS_SCRIPTABLE NS_IMETHOD GetMargin(nsAString & aMargin); \
NS_SCRIPTABLE NS_IMETHOD SetMargin(const nsAString & aMargin); \
NS_SCRIPTABLE NS_IMETHOD GetMarginTop(nsAString & aMarginTop); \
NS_SCRIPTABLE NS_IMETHOD SetMarginTop(const nsAString & aMarginTop); \
NS_SCRIPTABLE NS_IMETHOD GetMarginRight(nsAString & aMarginRight); \
NS_SCRIPTABLE NS_IMETHOD SetMarginRight(const nsAString & aMarginRight); \
NS_SCRIPTABLE NS_IMETHOD GetMarginBottom(nsAString & aMarginBottom); \
NS_SCRIPTABLE NS_IMETHOD SetMarginBottom(const nsAString & aMarginBottom); \
NS_SCRIPTABLE NS_IMETHOD GetMarginLeft(nsAString & aMarginLeft); \
NS_SCRIPTABLE NS_IMETHOD SetMarginLeft(const nsAString & aMarginLeft); \
NS_SCRIPTABLE NS_IMETHOD GetMarkerOffset(nsAString & aMarkerOffset); \
NS_SCRIPTABLE NS_IMETHOD SetMarkerOffset(const nsAString & aMarkerOffset); \
NS_SCRIPTABLE NS_IMETHOD GetMarks(nsAString & aMarks); \
NS_SCRIPTABLE NS_IMETHOD SetMarks(const nsAString & aMarks); \
NS_SCRIPTABLE NS_IMETHOD GetMaxHeight(nsAString & aMaxHeight); \
NS_SCRIPTABLE NS_IMETHOD SetMaxHeight(const nsAString & aMaxHeight); \
NS_SCRIPTABLE NS_IMETHOD GetMaxWidth(nsAString & aMaxWidth); \
NS_SCRIPTABLE NS_IMETHOD SetMaxWidth(const nsAString & aMaxWidth); \
NS_SCRIPTABLE NS_IMETHOD GetMinHeight(nsAString & aMinHeight); \
NS_SCRIPTABLE NS_IMETHOD SetMinHeight(const nsAString & aMinHeight); \
NS_SCRIPTABLE NS_IMETHOD GetMinWidth(nsAString & aMinWidth); \
NS_SCRIPTABLE NS_IMETHOD SetMinWidth(const nsAString & aMinWidth); \
NS_SCRIPTABLE NS_IMETHOD GetOrphans(nsAString & aOrphans); \
NS_SCRIPTABLE NS_IMETHOD SetOrphans(const nsAString & aOrphans); \
NS_SCRIPTABLE NS_IMETHOD GetOutline(nsAString & aOutline); \
NS_SCRIPTABLE NS_IMETHOD SetOutline(const nsAString & aOutline); \
NS_SCRIPTABLE NS_IMETHOD GetOutlineColor(nsAString & aOutlineColor); \
NS_SCRIPTABLE NS_IMETHOD SetOutlineColor(const nsAString & aOutlineColor); \
NS_SCRIPTABLE NS_IMETHOD GetOutlineStyle(nsAString & aOutlineStyle); \
NS_SCRIPTABLE NS_IMETHOD SetOutlineStyle(const nsAString & aOutlineStyle); \
NS_SCRIPTABLE NS_IMETHOD GetOutlineWidth(nsAString & aOutlineWidth); \
NS_SCRIPTABLE NS_IMETHOD SetOutlineWidth(const nsAString & aOutlineWidth); \
NS_SCRIPTABLE NS_IMETHOD GetOverflow(nsAString & aOverflow); \
NS_SCRIPTABLE NS_IMETHOD SetOverflow(const nsAString & aOverflow); \
NS_SCRIPTABLE NS_IMETHOD GetPadding(nsAString & aPadding); \
NS_SCRIPTABLE NS_IMETHOD SetPadding(const nsAString & aPadding); \
NS_SCRIPTABLE NS_IMETHOD GetPaddingTop(nsAString & aPaddingTop); \
NS_SCRIPTABLE NS_IMETHOD SetPaddingTop(const nsAString & aPaddingTop); \
NS_SCRIPTABLE NS_IMETHOD GetPaddingRight(nsAString & aPaddingRight); \
NS_SCRIPTABLE NS_IMETHOD SetPaddingRight(const nsAString & aPaddingRight); \
NS_SCRIPTABLE NS_IMETHOD GetPaddingBottom(nsAString & aPaddingBottom); \
NS_SCRIPTABLE NS_IMETHOD SetPaddingBottom(const nsAString & aPaddingBottom); \
NS_SCRIPTABLE NS_IMETHOD GetPaddingLeft(nsAString & aPaddingLeft); \
NS_SCRIPTABLE NS_IMETHOD SetPaddingLeft(const nsAString & aPaddingLeft); \
NS_SCRIPTABLE NS_IMETHOD GetPage(nsAString & aPage); \
NS_SCRIPTABLE NS_IMETHOD SetPage(const nsAString & aPage); \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakAfter(nsAString & aPageBreakAfter); \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakAfter(const nsAString & aPageBreakAfter); \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakBefore(nsAString & aPageBreakBefore); \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakBefore(const nsAString & aPageBreakBefore); \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakInside(nsAString & aPageBreakInside); \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakInside(const nsAString & aPageBreakInside); \
NS_SCRIPTABLE NS_IMETHOD GetPosition(nsAString & aPosition); \
NS_SCRIPTABLE NS_IMETHOD SetPosition(const nsAString & aPosition); \
NS_SCRIPTABLE NS_IMETHOD GetQuotes(nsAString & aQuotes); \
NS_SCRIPTABLE NS_IMETHOD SetQuotes(const nsAString & aQuotes); \
NS_SCRIPTABLE NS_IMETHOD GetRight(nsAString & aRight); \
NS_SCRIPTABLE NS_IMETHOD SetRight(const nsAString & aRight); \
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize); \
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize); \
NS_SCRIPTABLE NS_IMETHOD GetTableLayout(nsAString & aTableLayout); \
NS_SCRIPTABLE NS_IMETHOD SetTableLayout(const nsAString & aTableLayout); \
NS_SCRIPTABLE NS_IMETHOD GetTextAlign(nsAString & aTextAlign); \
NS_SCRIPTABLE NS_IMETHOD SetTextAlign(const nsAString & aTextAlign); \
NS_SCRIPTABLE NS_IMETHOD GetTextDecoration(nsAString & aTextDecoration); \
NS_SCRIPTABLE NS_IMETHOD SetTextDecoration(const nsAString & aTextDecoration); \
NS_SCRIPTABLE NS_IMETHOD GetTextIndent(nsAString & aTextIndent); \
NS_SCRIPTABLE NS_IMETHOD SetTextIndent(const nsAString & aTextIndent); \
NS_SCRIPTABLE NS_IMETHOD GetTextOverflow(nsAString & aTextOverflow); \
NS_SCRIPTABLE NS_IMETHOD SetTextOverflow(const nsAString & aTextOverflow); \
NS_SCRIPTABLE NS_IMETHOD GetTextShadow(nsAString & aTextShadow); \
NS_SCRIPTABLE NS_IMETHOD SetTextShadow(const nsAString & aTextShadow); \
NS_SCRIPTABLE NS_IMETHOD GetTextTransform(nsAString & aTextTransform); \
NS_SCRIPTABLE NS_IMETHOD SetTextTransform(const nsAString & aTextTransform); \
NS_SCRIPTABLE NS_IMETHOD GetTop(nsAString & aTop); \
NS_SCRIPTABLE NS_IMETHOD SetTop(const nsAString & aTop); \
NS_SCRIPTABLE NS_IMETHOD GetUnicodeBidi(nsAString & aUnicodeBidi); \
NS_SCRIPTABLE NS_IMETHOD SetUnicodeBidi(const nsAString & aUnicodeBidi); \
NS_SCRIPTABLE NS_IMETHOD GetVerticalAlign(nsAString & aVerticalAlign); \
NS_SCRIPTABLE NS_IMETHOD SetVerticalAlign(const nsAString & aVerticalAlign); \
NS_SCRIPTABLE NS_IMETHOD GetVisibility(nsAString & aVisibility); \
NS_SCRIPTABLE NS_IMETHOD SetVisibility(const nsAString & aVisibility); \
NS_SCRIPTABLE NS_IMETHOD GetWhiteSpace(nsAString & aWhiteSpace); \
NS_SCRIPTABLE NS_IMETHOD SetWhiteSpace(const nsAString & aWhiteSpace); \
NS_SCRIPTABLE NS_IMETHOD GetWidows(nsAString & aWidows); \
NS_SCRIPTABLE NS_IMETHOD SetWidows(const nsAString & aWidows); \
NS_SCRIPTABLE NS_IMETHOD GetWidth(nsAString & aWidth); \
NS_SCRIPTABLE NS_IMETHOD SetWidth(const nsAString & aWidth); \
NS_SCRIPTABLE NS_IMETHOD GetWordSpacing(nsAString & aWordSpacing); \
NS_SCRIPTABLE NS_IMETHOD SetWordSpacing(const nsAString & aWordSpacing); \
NS_SCRIPTABLE NS_IMETHOD GetZIndex(nsAString & aZIndex); \
NS_SCRIPTABLE NS_IMETHOD SetZIndex(const nsAString & aZIndex); \
NS_SCRIPTABLE NS_IMETHOD GetClipPath(nsAString & aClipPath); \
NS_SCRIPTABLE NS_IMETHOD SetClipPath(const nsAString & aClipPath); \
NS_SCRIPTABLE NS_IMETHOD GetClipRule(nsAString & aClipRule); \
NS_SCRIPTABLE NS_IMETHOD SetClipRule(const nsAString & aClipRule); \
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolation(nsAString & aColorInterpolation); \
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolation(const nsAString & aColorInterpolation); \
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolationFilters(nsAString & aColorInterpolationFilters); \
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolationFilters(const nsAString & aColorInterpolationFilters); \
NS_SCRIPTABLE NS_IMETHOD GetDominantBaseline(nsAString & aDominantBaseline); \
NS_SCRIPTABLE NS_IMETHOD SetDominantBaseline(const nsAString & aDominantBaseline); \
NS_SCRIPTABLE NS_IMETHOD GetFill(nsAString & aFill); \
NS_SCRIPTABLE NS_IMETHOD SetFill(const nsAString & aFill); \
NS_SCRIPTABLE NS_IMETHOD GetFillOpacity(nsAString & aFillOpacity); \
NS_SCRIPTABLE NS_IMETHOD SetFillOpacity(const nsAString & aFillOpacity); \
NS_SCRIPTABLE NS_IMETHOD GetFillRule(nsAString & aFillRule); \
NS_SCRIPTABLE NS_IMETHOD SetFillRule(const nsAString & aFillRule); \
NS_SCRIPTABLE NS_IMETHOD GetFilter(nsAString & aFilter); \
NS_SCRIPTABLE NS_IMETHOD SetFilter(const nsAString & aFilter); \
NS_SCRIPTABLE NS_IMETHOD GetFloodColor(nsAString & aFloodColor); \
NS_SCRIPTABLE NS_IMETHOD SetFloodColor(const nsAString & aFloodColor); \
NS_SCRIPTABLE NS_IMETHOD GetFloodOpacity(nsAString & aFloodOpacity); \
NS_SCRIPTABLE NS_IMETHOD SetFloodOpacity(const nsAString & aFloodOpacity); \
NS_SCRIPTABLE NS_IMETHOD GetImageRendering(nsAString & aImageRendering); \
NS_SCRIPTABLE NS_IMETHOD SetImageRendering(const nsAString & aImageRendering); \
NS_SCRIPTABLE NS_IMETHOD GetLightingColor(nsAString & aLightingColor); \
NS_SCRIPTABLE NS_IMETHOD SetLightingColor(const nsAString & aLightingColor); \
NS_SCRIPTABLE NS_IMETHOD GetMarker(nsAString & aMarker); \
NS_SCRIPTABLE NS_IMETHOD SetMarker(const nsAString & aMarker); \
NS_SCRIPTABLE NS_IMETHOD GetMarkerEnd(nsAString & aMarkerEnd); \
NS_SCRIPTABLE NS_IMETHOD SetMarkerEnd(const nsAString & aMarkerEnd); \
NS_SCRIPTABLE NS_IMETHOD GetMarkerMid(nsAString & aMarkerMid); \
NS_SCRIPTABLE NS_IMETHOD SetMarkerMid(const nsAString & aMarkerMid); \
NS_SCRIPTABLE NS_IMETHOD GetMarkerStart(nsAString & aMarkerStart); \
NS_SCRIPTABLE NS_IMETHOD SetMarkerStart(const nsAString & aMarkerStart); \
NS_SCRIPTABLE NS_IMETHOD GetMask(nsAString & aMask); \
NS_SCRIPTABLE NS_IMETHOD SetMask(const nsAString & aMask); \
NS_SCRIPTABLE NS_IMETHOD GetShapeRendering(nsAString & aShapeRendering); \
NS_SCRIPTABLE NS_IMETHOD SetShapeRendering(const nsAString & aShapeRendering); \
NS_SCRIPTABLE NS_IMETHOD GetStopColor(nsAString & aStopColor); \
NS_SCRIPTABLE NS_IMETHOD SetStopColor(const nsAString & aStopColor); \
NS_SCRIPTABLE NS_IMETHOD GetStopOpacity(nsAString & aStopOpacity); \
NS_SCRIPTABLE NS_IMETHOD SetStopOpacity(const nsAString & aStopOpacity); \
NS_SCRIPTABLE NS_IMETHOD GetStroke(nsAString & aStroke); \
NS_SCRIPTABLE NS_IMETHOD SetStroke(const nsAString & aStroke); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeDasharray(nsAString & aStrokeDasharray); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeDasharray(const nsAString & aStrokeDasharray); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeDashoffset(nsAString & aStrokeDashoffset); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeDashoffset(const nsAString & aStrokeDashoffset); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinecap(nsAString & aStrokeLinecap); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinecap(const nsAString & aStrokeLinecap); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinejoin(nsAString & aStrokeLinejoin); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinejoin(const nsAString & aStrokeLinejoin); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeMiterlimit(nsAString & aStrokeMiterlimit); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeMiterlimit(const nsAString & aStrokeMiterlimit); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeOpacity(nsAString & aStrokeOpacity); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeOpacity(const nsAString & aStrokeOpacity); \
NS_SCRIPTABLE NS_IMETHOD GetStrokeWidth(nsAString & aStrokeWidth); \
NS_SCRIPTABLE NS_IMETHOD SetStrokeWidth(const nsAString & aStrokeWidth); \
NS_SCRIPTABLE NS_IMETHOD GetTextAnchor(nsAString & aTextAnchor); \
NS_SCRIPTABLE NS_IMETHOD SetTextAnchor(const nsAString & aTextAnchor); \
NS_SCRIPTABLE NS_IMETHOD GetTextRendering(nsAString & aTextRendering); \
NS_SCRIPTABLE NS_IMETHOD SetTextRendering(const nsAString & aTextRendering); \
NS_SCRIPTABLE NS_IMETHOD GetVectorEffect(nsAString & aVectorEffect); \
NS_SCRIPTABLE NS_IMETHOD SetVectorEffect(const nsAString & aVectorEffect); \
NS_SCRIPTABLE NS_IMETHOD GetMozAppearance(nsAString & aMozAppearance); \
NS_SCRIPTABLE NS_IMETHOD SetMozAppearance(const nsAString & aMozAppearance); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundClip(nsAString & aBackgroundClip); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundClip(const nsAString & aBackgroundClip); \
NS_SCRIPTABLE NS_IMETHOD GetMozBackgroundInlinePolicy(nsAString & aMozBackgroundInlinePolicy); \
NS_SCRIPTABLE NS_IMETHOD SetMozBackgroundInlinePolicy(const nsAString & aMozBackgroundInlinePolicy); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundOrigin(nsAString & aBackgroundOrigin); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundOrigin(const nsAString & aBackgroundOrigin); \
NS_SCRIPTABLE NS_IMETHOD GetMozBinding(nsAString & aMozBinding); \
NS_SCRIPTABLE NS_IMETHOD SetMozBinding(const nsAString & aMozBinding); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderBottomColors(nsAString & aMozBorderBottomColors); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderBottomColors(const nsAString & aMozBorderBottomColors); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderLeftColors(nsAString & aMozBorderLeftColors); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderLeftColors(const nsAString & aMozBorderLeftColors); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderRightColors(nsAString & aMozBorderRightColors); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderRightColors(const nsAString & aMozBorderRightColors); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderTopColors(nsAString & aMozBorderTopColors); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderTopColors(const nsAString & aMozBorderTopColors); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxAlign(nsAString & aMozBoxAlign); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxAlign(const nsAString & aMozBoxAlign); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxDirection(nsAString & aMozBoxDirection); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxDirection(const nsAString & aMozBoxDirection); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxFlex(nsAString & aMozBoxFlex); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxFlex(const nsAString & aMozBoxFlex); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrient(nsAString & aMozBoxOrient); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrient(const nsAString & aMozBoxOrient); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrdinalGroup(nsAString & aMozBoxOrdinalGroup); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrdinalGroup(const nsAString & aMozBoxOrdinalGroup); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxPack(nsAString & aMozBoxPack); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxPack(const nsAString & aMozBoxPack); \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxSizing(nsAString & aMozBoxSizing); \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxSizing(const nsAString & aMozBoxSizing); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnCount(nsAString & aMozColumnCount); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnCount(const nsAString & aMozColumnCount); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnWidth(nsAString & aMozColumnWidth); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnWidth(const nsAString & aMozColumnWidth); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnGap(nsAString & aMozColumnGap); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnGap(const nsAString & aMozColumnGap); \
NS_SCRIPTABLE NS_IMETHOD GetMozFloatEdge(nsAString & aMozFloatEdge); \
NS_SCRIPTABLE NS_IMETHOD SetMozFloatEdge(const nsAString & aMozFloatEdge); \
NS_SCRIPTABLE NS_IMETHOD GetMozFontFeatureSettings(nsAString & aMozFontFeatureSettings); \
NS_SCRIPTABLE NS_IMETHOD SetMozFontFeatureSettings(const nsAString & aMozFontFeatureSettings); \
NS_SCRIPTABLE NS_IMETHOD GetMozFontLanguageOverride(nsAString & aMozFontLanguageOverride); \
NS_SCRIPTABLE NS_IMETHOD SetMozFontLanguageOverride(const nsAString & aMozFontLanguageOverride); \
NS_SCRIPTABLE NS_IMETHOD GetMozForceBrokenImageIcon(nsAString & aMozForceBrokenImageIcon); \
NS_SCRIPTABLE NS_IMETHOD SetMozForceBrokenImageIcon(const nsAString & aMozForceBrokenImageIcon); \
NS_SCRIPTABLE NS_IMETHOD GetMozImageRegion(nsAString & aMozImageRegion); \
NS_SCRIPTABLE NS_IMETHOD SetMozImageRegion(const nsAString & aMozImageRegion); \
NS_SCRIPTABLE NS_IMETHOD GetMozMarginEnd(nsAString & aMozMarginEnd); \
NS_SCRIPTABLE NS_IMETHOD SetMozMarginEnd(const nsAString & aMozMarginEnd); \
NS_SCRIPTABLE NS_IMETHOD GetMozMarginStart(nsAString & aMozMarginStart); \
NS_SCRIPTABLE NS_IMETHOD SetMozMarginStart(const nsAString & aMozMarginStart); \
NS_SCRIPTABLE NS_IMETHOD GetMozOrient(nsAString & aMozOrient); \
NS_SCRIPTABLE NS_IMETHOD SetMozOrient(const nsAString & aMozOrient); \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadius(nsAString & aMozOutlineRadius); \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadius(const nsAString & aMozOutlineRadius); \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopleft(nsAString & aMozOutlineRadiusTopleft); \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopleft(const nsAString & aMozOutlineRadiusTopleft); \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopright(nsAString & aMozOutlineRadiusTopright); \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopright(const nsAString & aMozOutlineRadiusTopright); \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomleft(nsAString & aMozOutlineRadiusBottomleft); \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomleft(const nsAString & aMozOutlineRadiusBottomleft); \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomright(nsAString & aMozOutlineRadiusBottomright); \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomright(const nsAString & aMozOutlineRadiusBottomright); \
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingEnd(nsAString & aMozPaddingEnd); \
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingEnd(const nsAString & aMozPaddingEnd); \
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingStart(nsAString & aMozPaddingStart); \
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingStart(const nsAString & aMozPaddingStart); \
NS_SCRIPTABLE NS_IMETHOD GetMozUserFocus(nsAString & aMozUserFocus); \
NS_SCRIPTABLE NS_IMETHOD SetMozUserFocus(const nsAString & aMozUserFocus); \
NS_SCRIPTABLE NS_IMETHOD GetMozUserInput(nsAString & aMozUserInput); \
NS_SCRIPTABLE NS_IMETHOD SetMozUserInput(const nsAString & aMozUserInput); \
NS_SCRIPTABLE NS_IMETHOD GetMozUserModify(nsAString & aMozUserModify); \
NS_SCRIPTABLE NS_IMETHOD SetMozUserModify(const nsAString & aMozUserModify); \
NS_SCRIPTABLE NS_IMETHOD GetMozUserSelect(nsAString & aMozUserSelect); \
NS_SCRIPTABLE NS_IMETHOD SetMozUserSelect(const nsAString & aMozUserSelect); \
NS_SCRIPTABLE NS_IMETHOD GetOpacity(nsAString & aOpacity); \
NS_SCRIPTABLE NS_IMETHOD SetOpacity(const nsAString & aOpacity); \
NS_SCRIPTABLE NS_IMETHOD GetOutlineOffset(nsAString & aOutlineOffset); \
NS_SCRIPTABLE NS_IMETHOD SetOutlineOffset(const nsAString & aOutlineOffset); \
NS_SCRIPTABLE NS_IMETHOD GetMozTextAlignLast(nsAString & aMozTextAlignLast); \
NS_SCRIPTABLE NS_IMETHOD SetMozTextAlignLast(const nsAString & aMozTextAlignLast); \
NS_SCRIPTABLE NS_IMETHOD GetOverflowX(nsAString & aOverflowX); \
NS_SCRIPTABLE NS_IMETHOD SetOverflowX(const nsAString & aOverflowX); \
NS_SCRIPTABLE NS_IMETHOD GetOverflowY(nsAString & aOverflowY); \
NS_SCRIPTABLE NS_IMETHOD SetOverflowY(const nsAString & aOverflowY); \
NS_SCRIPTABLE NS_IMETHOD GetImeMode(nsAString & aImeMode); \
NS_SCRIPTABLE NS_IMETHOD SetImeMode(const nsAString & aImeMode); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEnd(nsAString & aMozBorderEnd); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEnd(const nsAString & aMozBorderEnd); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndColor(nsAString & aMozBorderEndColor); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndColor(const nsAString & aMozBorderEndColor); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndStyle(nsAString & aMozBorderEndStyle); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndStyle(const nsAString & aMozBorderEndStyle); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndWidth(nsAString & aMozBorderEndWidth); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndWidth(const nsAString & aMozBorderEndWidth); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStart(nsAString & aMozBorderStart); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStart(const nsAString & aMozBorderStart); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartColor(nsAString & aMozBorderStartColor); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartColor(const nsAString & aMozBorderStartColor); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartStyle(nsAString & aMozBorderStartStyle); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartStyle(const nsAString & aMozBorderStartStyle); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartWidth(nsAString & aMozBorderStartWidth); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartWidth(const nsAString & aMozBorderStartWidth); \
NS_SCRIPTABLE NS_IMETHOD GetMozStackSizing(nsAString & aMozStackSizing); \
NS_SCRIPTABLE NS_IMETHOD SetMozStackSizing(const nsAString & aMozStackSizing); \
NS_SCRIPTABLE NS_IMETHOD GetBorderImage(nsAString & aBorderImage); \
NS_SCRIPTABLE NS_IMETHOD SetBorderImage(const nsAString & aBorderImage); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumns(nsAString & aMozColumns); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumns(const nsAString & aMozColumns); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRule(nsAString & aMozColumnRule); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRule(const nsAString & aMozColumnRule); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleWidth(nsAString & aMozColumnRuleWidth); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleWidth(const nsAString & aMozColumnRuleWidth); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleStyle(nsAString & aMozColumnRuleStyle); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleStyle(const nsAString & aMozColumnRuleStyle); \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleColor(nsAString & aMozColumnRuleColor); \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleColor(const nsAString & aMozColumnRuleColor); \
NS_SCRIPTABLE NS_IMETHOD GetWordBreak(nsAString & aWordBreak); \
NS_SCRIPTABLE NS_IMETHOD SetWordBreak(const nsAString & aWordBreak); \
NS_SCRIPTABLE NS_IMETHOD GetWordWrap(nsAString & aWordWrap); \
NS_SCRIPTABLE NS_IMETHOD SetWordWrap(const nsAString & aWordWrap); \
NS_SCRIPTABLE NS_IMETHOD GetMozHyphens(nsAString & aMozHyphens); \
NS_SCRIPTABLE NS_IMETHOD SetMozHyphens(const nsAString & aMozHyphens); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransform(nsAString & aMozTransform); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransform(const nsAString & aMozTransform); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransformOrigin(nsAString & aMozTransformOrigin); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransformOrigin(const nsAString & aMozTransformOrigin); \
NS_SCRIPTABLE NS_IMETHOD GetMozPerspective(nsAString & aMozPerspective); \
NS_SCRIPTABLE NS_IMETHOD SetMozPerspective(const nsAString & aMozPerspective); \
NS_SCRIPTABLE NS_IMETHOD GetMozPerspectiveOrigin(nsAString & aMozPerspectiveOrigin); \
NS_SCRIPTABLE NS_IMETHOD SetMozPerspectiveOrigin(const nsAString & aMozPerspectiveOrigin); \
NS_SCRIPTABLE NS_IMETHOD GetMozBackfaceVisibility(nsAString & aMozBackfaceVisibility); \
NS_SCRIPTABLE NS_IMETHOD SetMozBackfaceVisibility(const nsAString & aMozBackfaceVisibility); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransformStyle(nsAString & aMozTransformStyle); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransformStyle(const nsAString & aMozTransformStyle); \
NS_SCRIPTABLE NS_IMETHOD GetMozWindowShadow(nsAString & aMozWindowShadow); \
NS_SCRIPTABLE NS_IMETHOD SetMozWindowShadow(const nsAString & aMozWindowShadow); \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundSize(nsAString & aBackgroundSize); \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundSize(const nsAString & aBackgroundSize); \
NS_SCRIPTABLE NS_IMETHOD GetMozTextBlink(nsAString & aMozTextBlink); \
NS_SCRIPTABLE NS_IMETHOD SetMozTextBlink(const nsAString & aMozTextBlink); \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationColor(nsAString & aMozTextDecorationColor); \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationColor(const nsAString & aMozTextDecorationColor); \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationLine(nsAString & aMozTextDecorationLine); \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationLine(const nsAString & aMozTextDecorationLine); \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationStyle(nsAString & aMozTextDecorationStyle); \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationStyle(const nsAString & aMozTextDecorationStyle); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionProperty(nsAString & aMozTransitionProperty); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionProperty(const nsAString & aMozTransitionProperty); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDuration(nsAString & aMozTransitionDuration); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDuration(const nsAString & aMozTransitionDuration); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDelay(nsAString & aMozTransitionDelay); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDelay(const nsAString & aMozTransitionDelay); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionTimingFunction(nsAString & aMozTransitionTimingFunction); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionTimingFunction(const nsAString & aMozTransitionTimingFunction); \
NS_SCRIPTABLE NS_IMETHOD GetMozTransition(nsAString & aMozTransition); \
NS_SCRIPTABLE NS_IMETHOD SetMozTransition(const nsAString & aMozTransition); \
NS_SCRIPTABLE NS_IMETHOD GetPointerEvents(nsAString & aPointerEvents); \
NS_SCRIPTABLE NS_IMETHOD SetPointerEvents(const nsAString & aPointerEvents); \
NS_SCRIPTABLE NS_IMETHOD GetMozTabSize(nsAString & aMozTabSize); \
NS_SCRIPTABLE NS_IMETHOD SetMozTabSize(const nsAString & aMozTabSize); \
NS_SCRIPTABLE NS_IMETHOD GetResize(nsAString & aResize); \
NS_SCRIPTABLE NS_IMETHOD SetResize(const nsAString & aResize); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationName(nsAString & aMozAnimationName); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationName(const nsAString & aMozAnimationName); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDuration(nsAString & aMozAnimationDuration); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDuration(const nsAString & aMozAnimationDuration); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDelay(nsAString & aMozAnimationDelay); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDelay(const nsAString & aMozAnimationDelay); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationTimingFunction(nsAString & aMozAnimationTimingFunction); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationTimingFunction(const nsAString & aMozAnimationTimingFunction); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDirection(nsAString & aMozAnimationDirection); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDirection(const nsAString & aMozAnimationDirection); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationFillMode(nsAString & aMozAnimationFillMode); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationFillMode(const nsAString & aMozAnimationFillMode); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationIterationCount(nsAString & aMozAnimationIterationCount); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationIterationCount(const nsAString & aMozAnimationIterationCount); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationPlayState(nsAString & aMozAnimationPlayState); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationPlayState(const nsAString & aMozAnimationPlayState); \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimation(nsAString & aMozAnimation); \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimation(const nsAString & aMozAnimation); \
NS_SCRIPTABLE NS_IMETHOD GetMozTextSizeAdjust(nsAString & aMozTextSizeAdjust); \
NS_SCRIPTABLE NS_IMETHOD SetMozTextSizeAdjust(const nsAString & aMozTextSizeAdjust); \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSource(nsAString & aBorderImageSource); \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSource(const nsAString & aBorderImageSource); \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSlice(nsAString & aBorderImageSlice); \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSlice(const nsAString & aBorderImageSlice); \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageWidth(nsAString & aBorderImageWidth); \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageWidth(const nsAString & aBorderImageWidth); \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageOutset(nsAString & aBorderImageOutset); \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageOutset(const nsAString & aBorderImageOutset); \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageRepeat(nsAString & aBorderImageRepeat); \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageRepeat(const nsAString & aBorderImageRepeat); \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderImage(nsAString & aMozBorderImage); \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderImage(const nsAString & aMozBorderImage);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCSS2PROPERTIES(_to) \
NS_SCRIPTABLE NS_IMETHOD GetBackground(nsAString & aBackground) { return _to GetBackground(aBackground); } \
NS_SCRIPTABLE NS_IMETHOD SetBackground(const nsAString & aBackground) { return _to SetBackground(aBackground); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundAttachment(nsAString & aBackgroundAttachment) { return _to GetBackgroundAttachment(aBackgroundAttachment); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundAttachment(const nsAString & aBackgroundAttachment) { return _to SetBackgroundAttachment(aBackgroundAttachment); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundColor(nsAString & aBackgroundColor) { return _to GetBackgroundColor(aBackgroundColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundColor(const nsAString & aBackgroundColor) { return _to SetBackgroundColor(aBackgroundColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundImage(nsAString & aBackgroundImage) { return _to GetBackgroundImage(aBackgroundImage); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundImage(const nsAString & aBackgroundImage) { return _to SetBackgroundImage(aBackgroundImage); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundPosition(nsAString & aBackgroundPosition) { return _to GetBackgroundPosition(aBackgroundPosition); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundPosition(const nsAString & aBackgroundPosition) { return _to SetBackgroundPosition(aBackgroundPosition); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundRepeat(nsAString & aBackgroundRepeat) { return _to GetBackgroundRepeat(aBackgroundRepeat); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundRepeat(const nsAString & aBackgroundRepeat) { return _to SetBackgroundRepeat(aBackgroundRepeat); } \
NS_SCRIPTABLE NS_IMETHOD GetBorder(nsAString & aBorder) { return _to GetBorder(aBorder); } \
NS_SCRIPTABLE NS_IMETHOD SetBorder(const nsAString & aBorder) { return _to SetBorder(aBorder); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderCollapse(nsAString & aBorderCollapse) { return _to GetBorderCollapse(aBorderCollapse); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderCollapse(const nsAString & aBorderCollapse) { return _to SetBorderCollapse(aBorderCollapse); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderColor(nsAString & aBorderColor) { return _to GetBorderColor(aBorderColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderColor(const nsAString & aBorderColor) { return _to SetBorderColor(aBorderColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderSpacing(nsAString & aBorderSpacing) { return _to GetBorderSpacing(aBorderSpacing); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderSpacing(const nsAString & aBorderSpacing) { return _to SetBorderSpacing(aBorderSpacing); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderStyle(nsAString & aBorderStyle) { return _to GetBorderStyle(aBorderStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderStyle(const nsAString & aBorderStyle) { return _to SetBorderStyle(aBorderStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTop(nsAString & aBorderTop) { return _to GetBorderTop(aBorderTop); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTop(const nsAString & aBorderTop) { return _to SetBorderTop(aBorderTop); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRight(nsAString & aBorderRight) { return _to GetBorderRight(aBorderRight); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRight(const nsAString & aBorderRight) { return _to SetBorderRight(aBorderRight); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottom(nsAString & aBorderBottom) { return _to GetBorderBottom(aBorderBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottom(const nsAString & aBorderBottom) { return _to SetBorderBottom(aBorderBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeft(nsAString & aBorderLeft) { return _to GetBorderLeft(aBorderLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeft(const nsAString & aBorderLeft) { return _to SetBorderLeft(aBorderLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopColor(nsAString & aBorderTopColor) { return _to GetBorderTopColor(aBorderTopColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopColor(const nsAString & aBorderTopColor) { return _to SetBorderTopColor(aBorderTopColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightColor(nsAString & aBorderRightColor) { return _to GetBorderRightColor(aBorderRightColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightColor(const nsAString & aBorderRightColor) { return _to SetBorderRightColor(aBorderRightColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomColor(nsAString & aBorderBottomColor) { return _to GetBorderBottomColor(aBorderBottomColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomColor(const nsAString & aBorderBottomColor) { return _to SetBorderBottomColor(aBorderBottomColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftColor(nsAString & aBorderLeftColor) { return _to GetBorderLeftColor(aBorderLeftColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftColor(const nsAString & aBorderLeftColor) { return _to SetBorderLeftColor(aBorderLeftColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopStyle(nsAString & aBorderTopStyle) { return _to GetBorderTopStyle(aBorderTopStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopStyle(const nsAString & aBorderTopStyle) { return _to SetBorderTopStyle(aBorderTopStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightStyle(nsAString & aBorderRightStyle) { return _to GetBorderRightStyle(aBorderRightStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightStyle(const nsAString & aBorderRightStyle) { return _to SetBorderRightStyle(aBorderRightStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomStyle(nsAString & aBorderBottomStyle) { return _to GetBorderBottomStyle(aBorderBottomStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomStyle(const nsAString & aBorderBottomStyle) { return _to SetBorderBottomStyle(aBorderBottomStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftStyle(nsAString & aBorderLeftStyle) { return _to GetBorderLeftStyle(aBorderLeftStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftStyle(const nsAString & aBorderLeftStyle) { return _to SetBorderLeftStyle(aBorderLeftStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopWidth(nsAString & aBorderTopWidth) { return _to GetBorderTopWidth(aBorderTopWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopWidth(const nsAString & aBorderTopWidth) { return _to SetBorderTopWidth(aBorderTopWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightWidth(nsAString & aBorderRightWidth) { return _to GetBorderRightWidth(aBorderRightWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightWidth(const nsAString & aBorderRightWidth) { return _to SetBorderRightWidth(aBorderRightWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomWidth(nsAString & aBorderBottomWidth) { return _to GetBorderBottomWidth(aBorderBottomWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomWidth(const nsAString & aBorderBottomWidth) { return _to SetBorderBottomWidth(aBorderBottomWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftWidth(nsAString & aBorderLeftWidth) { return _to GetBorderLeftWidth(aBorderLeftWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftWidth(const nsAString & aBorderLeftWidth) { return _to SetBorderLeftWidth(aBorderLeftWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderWidth(nsAString & aBorderWidth) { return _to GetBorderWidth(aBorderWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderWidth(const nsAString & aBorderWidth) { return _to SetBorderWidth(aBorderWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRadius(nsAString & aBorderRadius) { return _to GetBorderRadius(aBorderRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRadius(const nsAString & aBorderRadius) { return _to SetBorderRadius(aBorderRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopLeftRadius(nsAString & aBorderTopLeftRadius) { return _to GetBorderTopLeftRadius(aBorderTopLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopLeftRadius(const nsAString & aBorderTopLeftRadius) { return _to SetBorderTopLeftRadius(aBorderTopLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopRightRadius(nsAString & aBorderTopRightRadius) { return _to GetBorderTopRightRadius(aBorderTopRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopRightRadius(const nsAString & aBorderTopRightRadius) { return _to SetBorderTopRightRadius(aBorderTopRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomLeftRadius(nsAString & aBorderBottomLeftRadius) { return _to GetBorderBottomLeftRadius(aBorderBottomLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomLeftRadius(const nsAString & aBorderBottomLeftRadius) { return _to SetBorderBottomLeftRadius(aBorderBottomLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomRightRadius(nsAString & aBorderBottomRightRadius) { return _to GetBorderBottomRightRadius(aBorderBottomRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomRightRadius(const nsAString & aBorderBottomRightRadius) { return _to SetBorderBottomRightRadius(aBorderBottomRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBottom(nsAString & aBottom) { return _to GetBottom(aBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetBottom(const nsAString & aBottom) { return _to SetBottom(aBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetBoxShadow(nsAString & aBoxShadow) { return _to GetBoxShadow(aBoxShadow); } \
NS_SCRIPTABLE NS_IMETHOD SetBoxShadow(const nsAString & aBoxShadow) { return _to SetBoxShadow(aBoxShadow); } \
NS_SCRIPTABLE NS_IMETHOD GetCaptionSide(nsAString & aCaptionSide) { return _to GetCaptionSide(aCaptionSide); } \
NS_SCRIPTABLE NS_IMETHOD SetCaptionSide(const nsAString & aCaptionSide) { return _to SetCaptionSide(aCaptionSide); } \
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) { return _to GetClear(aClear); } \
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) { return _to SetClear(aClear); } \
NS_SCRIPTABLE NS_IMETHOD GetClip(nsAString & aClip) { return _to GetClip(aClip); } \
NS_SCRIPTABLE NS_IMETHOD SetClip(const nsAString & aClip) { return _to SetClip(aClip); } \
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) { return _to GetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) { return _to SetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD GetContent(nsAString & aContent) { return _to GetContent(aContent); } \
NS_SCRIPTABLE NS_IMETHOD SetContent(const nsAString & aContent) { return _to SetContent(aContent); } \
NS_SCRIPTABLE NS_IMETHOD GetCounterIncrement(nsAString & aCounterIncrement) { return _to GetCounterIncrement(aCounterIncrement); } \
NS_SCRIPTABLE NS_IMETHOD SetCounterIncrement(const nsAString & aCounterIncrement) { return _to SetCounterIncrement(aCounterIncrement); } \
NS_SCRIPTABLE NS_IMETHOD GetCounterReset(nsAString & aCounterReset) { return _to GetCounterReset(aCounterReset); } \
NS_SCRIPTABLE NS_IMETHOD SetCounterReset(const nsAString & aCounterReset) { return _to SetCounterReset(aCounterReset); } \
NS_SCRIPTABLE NS_IMETHOD GetCursor(nsAString & aCursor) { return _to GetCursor(aCursor); } \
NS_SCRIPTABLE NS_IMETHOD SetCursor(const nsAString & aCursor) { return _to SetCursor(aCursor); } \
NS_SCRIPTABLE NS_IMETHOD GetDirection(nsAString & aDirection) { return _to GetDirection(aDirection); } \
NS_SCRIPTABLE NS_IMETHOD SetDirection(const nsAString & aDirection) { return _to SetDirection(aDirection); } \
NS_SCRIPTABLE NS_IMETHOD GetDisplay(nsAString & aDisplay) { return _to GetDisplay(aDisplay); } \
NS_SCRIPTABLE NS_IMETHOD SetDisplay(const nsAString & aDisplay) { return _to SetDisplay(aDisplay); } \
NS_SCRIPTABLE NS_IMETHOD GetEmptyCells(nsAString & aEmptyCells) { return _to GetEmptyCells(aEmptyCells); } \
NS_SCRIPTABLE NS_IMETHOD SetEmptyCells(const nsAString & aEmptyCells) { return _to SetEmptyCells(aEmptyCells); } \
NS_SCRIPTABLE NS_IMETHOD GetCssFloat(nsAString & aCssFloat) { return _to GetCssFloat(aCssFloat); } \
NS_SCRIPTABLE NS_IMETHOD SetCssFloat(const nsAString & aCssFloat) { return _to SetCssFloat(aCssFloat); } \
NS_SCRIPTABLE NS_IMETHOD GetFont(nsAString & aFont) { return _to GetFont(aFont); } \
NS_SCRIPTABLE NS_IMETHOD SetFont(const nsAString & aFont) { return _to SetFont(aFont); } \
NS_SCRIPTABLE NS_IMETHOD GetFontFamily(nsAString & aFontFamily) { return _to GetFontFamily(aFontFamily); } \
NS_SCRIPTABLE NS_IMETHOD SetFontFamily(const nsAString & aFontFamily) { return _to SetFontFamily(aFontFamily); } \
NS_SCRIPTABLE NS_IMETHOD GetFontSize(nsAString & aFontSize) { return _to GetFontSize(aFontSize); } \
NS_SCRIPTABLE NS_IMETHOD SetFontSize(const nsAString & aFontSize) { return _to SetFontSize(aFontSize); } \
NS_SCRIPTABLE NS_IMETHOD GetFontSizeAdjust(nsAString & aFontSizeAdjust) { return _to GetFontSizeAdjust(aFontSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD SetFontSizeAdjust(const nsAString & aFontSizeAdjust) { return _to SetFontSizeAdjust(aFontSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD GetFontStretch(nsAString & aFontStretch) { return _to GetFontStretch(aFontStretch); } \
NS_SCRIPTABLE NS_IMETHOD SetFontStretch(const nsAString & aFontStretch) { return _to SetFontStretch(aFontStretch); } \
NS_SCRIPTABLE NS_IMETHOD GetFontStyle(nsAString & aFontStyle) { return _to GetFontStyle(aFontStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetFontStyle(const nsAString & aFontStyle) { return _to SetFontStyle(aFontStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetFontVariant(nsAString & aFontVariant) { return _to GetFontVariant(aFontVariant); } \
NS_SCRIPTABLE NS_IMETHOD SetFontVariant(const nsAString & aFontVariant) { return _to SetFontVariant(aFontVariant); } \
NS_SCRIPTABLE NS_IMETHOD GetFontWeight(nsAString & aFontWeight) { return _to GetFontWeight(aFontWeight); } \
NS_SCRIPTABLE NS_IMETHOD SetFontWeight(const nsAString & aFontWeight) { return _to SetFontWeight(aFontWeight); } \
NS_SCRIPTABLE NS_IMETHOD GetHeight(nsAString & aHeight) { return _to GetHeight(aHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetHeight(const nsAString & aHeight) { return _to SetHeight(aHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetLeft(nsAString & aLeft) { return _to GetLeft(aLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetLeft(const nsAString & aLeft) { return _to SetLeft(aLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetLetterSpacing(nsAString & aLetterSpacing) { return _to GetLetterSpacing(aLetterSpacing); } \
NS_SCRIPTABLE NS_IMETHOD SetLetterSpacing(const nsAString & aLetterSpacing) { return _to SetLetterSpacing(aLetterSpacing); } \
NS_SCRIPTABLE NS_IMETHOD GetLineHeight(nsAString & aLineHeight) { return _to GetLineHeight(aLineHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetLineHeight(const nsAString & aLineHeight) { return _to SetLineHeight(aLineHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetListStyle(nsAString & aListStyle) { return _to GetListStyle(aListStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetListStyle(const nsAString & aListStyle) { return _to SetListStyle(aListStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetListStyleImage(nsAString & aListStyleImage) { return _to GetListStyleImage(aListStyleImage); } \
NS_SCRIPTABLE NS_IMETHOD SetListStyleImage(const nsAString & aListStyleImage) { return _to SetListStyleImage(aListStyleImage); } \
NS_SCRIPTABLE NS_IMETHOD GetListStylePosition(nsAString & aListStylePosition) { return _to GetListStylePosition(aListStylePosition); } \
NS_SCRIPTABLE NS_IMETHOD SetListStylePosition(const nsAString & aListStylePosition) { return _to SetListStylePosition(aListStylePosition); } \
NS_SCRIPTABLE NS_IMETHOD GetListStyleType(nsAString & aListStyleType) { return _to GetListStyleType(aListStyleType); } \
NS_SCRIPTABLE NS_IMETHOD SetListStyleType(const nsAString & aListStyleType) { return _to SetListStyleType(aListStyleType); } \
NS_SCRIPTABLE NS_IMETHOD GetMargin(nsAString & aMargin) { return _to GetMargin(aMargin); } \
NS_SCRIPTABLE NS_IMETHOD SetMargin(const nsAString & aMargin) { return _to SetMargin(aMargin); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginTop(nsAString & aMarginTop) { return _to GetMarginTop(aMarginTop); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginTop(const nsAString & aMarginTop) { return _to SetMarginTop(aMarginTop); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginRight(nsAString & aMarginRight) { return _to GetMarginRight(aMarginRight); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginRight(const nsAString & aMarginRight) { return _to SetMarginRight(aMarginRight); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginBottom(nsAString & aMarginBottom) { return _to GetMarginBottom(aMarginBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginBottom(const nsAString & aMarginBottom) { return _to SetMarginBottom(aMarginBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginLeft(nsAString & aMarginLeft) { return _to GetMarginLeft(aMarginLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginLeft(const nsAString & aMarginLeft) { return _to SetMarginLeft(aMarginLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerOffset(nsAString & aMarkerOffset) { return _to GetMarkerOffset(aMarkerOffset); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerOffset(const nsAString & aMarkerOffset) { return _to SetMarkerOffset(aMarkerOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetMarks(nsAString & aMarks) { return _to GetMarks(aMarks); } \
NS_SCRIPTABLE NS_IMETHOD SetMarks(const nsAString & aMarks) { return _to SetMarks(aMarks); } \
NS_SCRIPTABLE NS_IMETHOD GetMaxHeight(nsAString & aMaxHeight) { return _to GetMaxHeight(aMaxHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetMaxHeight(const nsAString & aMaxHeight) { return _to SetMaxHeight(aMaxHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetMaxWidth(nsAString & aMaxWidth) { return _to GetMaxWidth(aMaxWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMaxWidth(const nsAString & aMaxWidth) { return _to SetMaxWidth(aMaxWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMinHeight(nsAString & aMinHeight) { return _to GetMinHeight(aMinHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetMinHeight(const nsAString & aMinHeight) { return _to SetMinHeight(aMinHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetMinWidth(nsAString & aMinWidth) { return _to GetMinWidth(aMinWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMinWidth(const nsAString & aMinWidth) { return _to SetMinWidth(aMinWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetOrphans(nsAString & aOrphans) { return _to GetOrphans(aOrphans); } \
NS_SCRIPTABLE NS_IMETHOD SetOrphans(const nsAString & aOrphans) { return _to SetOrphans(aOrphans); } \
NS_SCRIPTABLE NS_IMETHOD GetOutline(nsAString & aOutline) { return _to GetOutline(aOutline); } \
NS_SCRIPTABLE NS_IMETHOD SetOutline(const nsAString & aOutline) { return _to SetOutline(aOutline); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineColor(nsAString & aOutlineColor) { return _to GetOutlineColor(aOutlineColor); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineColor(const nsAString & aOutlineColor) { return _to SetOutlineColor(aOutlineColor); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineStyle(nsAString & aOutlineStyle) { return _to GetOutlineStyle(aOutlineStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineStyle(const nsAString & aOutlineStyle) { return _to SetOutlineStyle(aOutlineStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineWidth(nsAString & aOutlineWidth) { return _to GetOutlineWidth(aOutlineWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineWidth(const nsAString & aOutlineWidth) { return _to SetOutlineWidth(aOutlineWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetOverflow(nsAString & aOverflow) { return _to GetOverflow(aOverflow); } \
NS_SCRIPTABLE NS_IMETHOD SetOverflow(const nsAString & aOverflow) { return _to SetOverflow(aOverflow); } \
NS_SCRIPTABLE NS_IMETHOD GetPadding(nsAString & aPadding) { return _to GetPadding(aPadding); } \
NS_SCRIPTABLE NS_IMETHOD SetPadding(const nsAString & aPadding) { return _to SetPadding(aPadding); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingTop(nsAString & aPaddingTop) { return _to GetPaddingTop(aPaddingTop); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingTop(const nsAString & aPaddingTop) { return _to SetPaddingTop(aPaddingTop); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingRight(nsAString & aPaddingRight) { return _to GetPaddingRight(aPaddingRight); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingRight(const nsAString & aPaddingRight) { return _to SetPaddingRight(aPaddingRight); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingBottom(nsAString & aPaddingBottom) { return _to GetPaddingBottom(aPaddingBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingBottom(const nsAString & aPaddingBottom) { return _to SetPaddingBottom(aPaddingBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingLeft(nsAString & aPaddingLeft) { return _to GetPaddingLeft(aPaddingLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingLeft(const nsAString & aPaddingLeft) { return _to SetPaddingLeft(aPaddingLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetPage(nsAString & aPage) { return _to GetPage(aPage); } \
NS_SCRIPTABLE NS_IMETHOD SetPage(const nsAString & aPage) { return _to SetPage(aPage); } \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakAfter(nsAString & aPageBreakAfter) { return _to GetPageBreakAfter(aPageBreakAfter); } \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakAfter(const nsAString & aPageBreakAfter) { return _to SetPageBreakAfter(aPageBreakAfter); } \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakBefore(nsAString & aPageBreakBefore) { return _to GetPageBreakBefore(aPageBreakBefore); } \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakBefore(const nsAString & aPageBreakBefore) { return _to SetPageBreakBefore(aPageBreakBefore); } \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakInside(nsAString & aPageBreakInside) { return _to GetPageBreakInside(aPageBreakInside); } \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakInside(const nsAString & aPageBreakInside) { return _to SetPageBreakInside(aPageBreakInside); } \
NS_SCRIPTABLE NS_IMETHOD GetPosition(nsAString & aPosition) { return _to GetPosition(aPosition); } \
NS_SCRIPTABLE NS_IMETHOD SetPosition(const nsAString & aPosition) { return _to SetPosition(aPosition); } \
NS_SCRIPTABLE NS_IMETHOD GetQuotes(nsAString & aQuotes) { return _to GetQuotes(aQuotes); } \
NS_SCRIPTABLE NS_IMETHOD SetQuotes(const nsAString & aQuotes) { return _to SetQuotes(aQuotes); } \
NS_SCRIPTABLE NS_IMETHOD GetRight(nsAString & aRight) { return _to GetRight(aRight); } \
NS_SCRIPTABLE NS_IMETHOD SetRight(const nsAString & aRight) { return _to SetRight(aRight); } \
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) { return _to GetSize(aSize); } \
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) { return _to SetSize(aSize); } \
NS_SCRIPTABLE NS_IMETHOD GetTableLayout(nsAString & aTableLayout) { return _to GetTableLayout(aTableLayout); } \
NS_SCRIPTABLE NS_IMETHOD SetTableLayout(const nsAString & aTableLayout) { return _to SetTableLayout(aTableLayout); } \
NS_SCRIPTABLE NS_IMETHOD GetTextAlign(nsAString & aTextAlign) { return _to GetTextAlign(aTextAlign); } \
NS_SCRIPTABLE NS_IMETHOD SetTextAlign(const nsAString & aTextAlign) { return _to SetTextAlign(aTextAlign); } \
NS_SCRIPTABLE NS_IMETHOD GetTextDecoration(nsAString & aTextDecoration) { return _to GetTextDecoration(aTextDecoration); } \
NS_SCRIPTABLE NS_IMETHOD SetTextDecoration(const nsAString & aTextDecoration) { return _to SetTextDecoration(aTextDecoration); } \
NS_SCRIPTABLE NS_IMETHOD GetTextIndent(nsAString & aTextIndent) { return _to GetTextIndent(aTextIndent); } \
NS_SCRIPTABLE NS_IMETHOD SetTextIndent(const nsAString & aTextIndent) { return _to SetTextIndent(aTextIndent); } \
NS_SCRIPTABLE NS_IMETHOD GetTextOverflow(nsAString & aTextOverflow) { return _to GetTextOverflow(aTextOverflow); } \
NS_SCRIPTABLE NS_IMETHOD SetTextOverflow(const nsAString & aTextOverflow) { return _to SetTextOverflow(aTextOverflow); } \
NS_SCRIPTABLE NS_IMETHOD GetTextShadow(nsAString & aTextShadow) { return _to GetTextShadow(aTextShadow); } \
NS_SCRIPTABLE NS_IMETHOD SetTextShadow(const nsAString & aTextShadow) { return _to SetTextShadow(aTextShadow); } \
NS_SCRIPTABLE NS_IMETHOD GetTextTransform(nsAString & aTextTransform) { return _to GetTextTransform(aTextTransform); } \
NS_SCRIPTABLE NS_IMETHOD SetTextTransform(const nsAString & aTextTransform) { return _to SetTextTransform(aTextTransform); } \
NS_SCRIPTABLE NS_IMETHOD GetTop(nsAString & aTop) { return _to GetTop(aTop); } \
NS_SCRIPTABLE NS_IMETHOD SetTop(const nsAString & aTop) { return _to SetTop(aTop); } \
NS_SCRIPTABLE NS_IMETHOD GetUnicodeBidi(nsAString & aUnicodeBidi) { return _to GetUnicodeBidi(aUnicodeBidi); } \
NS_SCRIPTABLE NS_IMETHOD SetUnicodeBidi(const nsAString & aUnicodeBidi) { return _to SetUnicodeBidi(aUnicodeBidi); } \
NS_SCRIPTABLE NS_IMETHOD GetVerticalAlign(nsAString & aVerticalAlign) { return _to GetVerticalAlign(aVerticalAlign); } \
NS_SCRIPTABLE NS_IMETHOD SetVerticalAlign(const nsAString & aVerticalAlign) { return _to SetVerticalAlign(aVerticalAlign); } \
NS_SCRIPTABLE NS_IMETHOD GetVisibility(nsAString & aVisibility) { return _to GetVisibility(aVisibility); } \
NS_SCRIPTABLE NS_IMETHOD SetVisibility(const nsAString & aVisibility) { return _to SetVisibility(aVisibility); } \
NS_SCRIPTABLE NS_IMETHOD GetWhiteSpace(nsAString & aWhiteSpace) { return _to GetWhiteSpace(aWhiteSpace); } \
NS_SCRIPTABLE NS_IMETHOD SetWhiteSpace(const nsAString & aWhiteSpace) { return _to SetWhiteSpace(aWhiteSpace); } \
NS_SCRIPTABLE NS_IMETHOD GetWidows(nsAString & aWidows) { return _to GetWidows(aWidows); } \
NS_SCRIPTABLE NS_IMETHOD SetWidows(const nsAString & aWidows) { return _to SetWidows(aWidows); } \
NS_SCRIPTABLE NS_IMETHOD GetWidth(nsAString & aWidth) { return _to GetWidth(aWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetWidth(const nsAString & aWidth) { return _to SetWidth(aWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetWordSpacing(nsAString & aWordSpacing) { return _to GetWordSpacing(aWordSpacing); } \
NS_SCRIPTABLE NS_IMETHOD SetWordSpacing(const nsAString & aWordSpacing) { return _to SetWordSpacing(aWordSpacing); } \
NS_SCRIPTABLE NS_IMETHOD GetZIndex(nsAString & aZIndex) { return _to GetZIndex(aZIndex); } \
NS_SCRIPTABLE NS_IMETHOD SetZIndex(const nsAString & aZIndex) { return _to SetZIndex(aZIndex); } \
NS_SCRIPTABLE NS_IMETHOD GetClipPath(nsAString & aClipPath) { return _to GetClipPath(aClipPath); } \
NS_SCRIPTABLE NS_IMETHOD SetClipPath(const nsAString & aClipPath) { return _to SetClipPath(aClipPath); } \
NS_SCRIPTABLE NS_IMETHOD GetClipRule(nsAString & aClipRule) { return _to GetClipRule(aClipRule); } \
NS_SCRIPTABLE NS_IMETHOD SetClipRule(const nsAString & aClipRule) { return _to SetClipRule(aClipRule); } \
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolation(nsAString & aColorInterpolation) { return _to GetColorInterpolation(aColorInterpolation); } \
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolation(const nsAString & aColorInterpolation) { return _to SetColorInterpolation(aColorInterpolation); } \
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolationFilters(nsAString & aColorInterpolationFilters) { return _to GetColorInterpolationFilters(aColorInterpolationFilters); } \
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolationFilters(const nsAString & aColorInterpolationFilters) { return _to SetColorInterpolationFilters(aColorInterpolationFilters); } \
NS_SCRIPTABLE NS_IMETHOD GetDominantBaseline(nsAString & aDominantBaseline) { return _to GetDominantBaseline(aDominantBaseline); } \
NS_SCRIPTABLE NS_IMETHOD SetDominantBaseline(const nsAString & aDominantBaseline) { return _to SetDominantBaseline(aDominantBaseline); } \
NS_SCRIPTABLE NS_IMETHOD GetFill(nsAString & aFill) { return _to GetFill(aFill); } \
NS_SCRIPTABLE NS_IMETHOD SetFill(const nsAString & aFill) { return _to SetFill(aFill); } \
NS_SCRIPTABLE NS_IMETHOD GetFillOpacity(nsAString & aFillOpacity) { return _to GetFillOpacity(aFillOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetFillOpacity(const nsAString & aFillOpacity) { return _to SetFillOpacity(aFillOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetFillRule(nsAString & aFillRule) { return _to GetFillRule(aFillRule); } \
NS_SCRIPTABLE NS_IMETHOD SetFillRule(const nsAString & aFillRule) { return _to SetFillRule(aFillRule); } \
NS_SCRIPTABLE NS_IMETHOD GetFilter(nsAString & aFilter) { return _to GetFilter(aFilter); } \
NS_SCRIPTABLE NS_IMETHOD SetFilter(const nsAString & aFilter) { return _to SetFilter(aFilter); } \
NS_SCRIPTABLE NS_IMETHOD GetFloodColor(nsAString & aFloodColor) { return _to GetFloodColor(aFloodColor); } \
NS_SCRIPTABLE NS_IMETHOD SetFloodColor(const nsAString & aFloodColor) { return _to SetFloodColor(aFloodColor); } \
NS_SCRIPTABLE NS_IMETHOD GetFloodOpacity(nsAString & aFloodOpacity) { return _to GetFloodOpacity(aFloodOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetFloodOpacity(const nsAString & aFloodOpacity) { return _to SetFloodOpacity(aFloodOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetImageRendering(nsAString & aImageRendering) { return _to GetImageRendering(aImageRendering); } \
NS_SCRIPTABLE NS_IMETHOD SetImageRendering(const nsAString & aImageRendering) { return _to SetImageRendering(aImageRendering); } \
NS_SCRIPTABLE NS_IMETHOD GetLightingColor(nsAString & aLightingColor) { return _to GetLightingColor(aLightingColor); } \
NS_SCRIPTABLE NS_IMETHOD SetLightingColor(const nsAString & aLightingColor) { return _to SetLightingColor(aLightingColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMarker(nsAString & aMarker) { return _to GetMarker(aMarker); } \
NS_SCRIPTABLE NS_IMETHOD SetMarker(const nsAString & aMarker) { return _to SetMarker(aMarker); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerEnd(nsAString & aMarkerEnd) { return _to GetMarkerEnd(aMarkerEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerEnd(const nsAString & aMarkerEnd) { return _to SetMarkerEnd(aMarkerEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerMid(nsAString & aMarkerMid) { return _to GetMarkerMid(aMarkerMid); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerMid(const nsAString & aMarkerMid) { return _to SetMarkerMid(aMarkerMid); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerStart(nsAString & aMarkerStart) { return _to GetMarkerStart(aMarkerStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerStart(const nsAString & aMarkerStart) { return _to SetMarkerStart(aMarkerStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMask(nsAString & aMask) { return _to GetMask(aMask); } \
NS_SCRIPTABLE NS_IMETHOD SetMask(const nsAString & aMask) { return _to SetMask(aMask); } \
NS_SCRIPTABLE NS_IMETHOD GetShapeRendering(nsAString & aShapeRendering) { return _to GetShapeRendering(aShapeRendering); } \
NS_SCRIPTABLE NS_IMETHOD SetShapeRendering(const nsAString & aShapeRendering) { return _to SetShapeRendering(aShapeRendering); } \
NS_SCRIPTABLE NS_IMETHOD GetStopColor(nsAString & aStopColor) { return _to GetStopColor(aStopColor); } \
NS_SCRIPTABLE NS_IMETHOD SetStopColor(const nsAString & aStopColor) { return _to SetStopColor(aStopColor); } \
NS_SCRIPTABLE NS_IMETHOD GetStopOpacity(nsAString & aStopOpacity) { return _to GetStopOpacity(aStopOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetStopOpacity(const nsAString & aStopOpacity) { return _to SetStopOpacity(aStopOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetStroke(nsAString & aStroke) { return _to GetStroke(aStroke); } \
NS_SCRIPTABLE NS_IMETHOD SetStroke(const nsAString & aStroke) { return _to SetStroke(aStroke); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeDasharray(nsAString & aStrokeDasharray) { return _to GetStrokeDasharray(aStrokeDasharray); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeDasharray(const nsAString & aStrokeDasharray) { return _to SetStrokeDasharray(aStrokeDasharray); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeDashoffset(nsAString & aStrokeDashoffset) { return _to GetStrokeDashoffset(aStrokeDashoffset); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeDashoffset(const nsAString & aStrokeDashoffset) { return _to SetStrokeDashoffset(aStrokeDashoffset); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinecap(nsAString & aStrokeLinecap) { return _to GetStrokeLinecap(aStrokeLinecap); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinecap(const nsAString & aStrokeLinecap) { return _to SetStrokeLinecap(aStrokeLinecap); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinejoin(nsAString & aStrokeLinejoin) { return _to GetStrokeLinejoin(aStrokeLinejoin); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinejoin(const nsAString & aStrokeLinejoin) { return _to SetStrokeLinejoin(aStrokeLinejoin); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeMiterlimit(nsAString & aStrokeMiterlimit) { return _to GetStrokeMiterlimit(aStrokeMiterlimit); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeMiterlimit(const nsAString & aStrokeMiterlimit) { return _to SetStrokeMiterlimit(aStrokeMiterlimit); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeOpacity(nsAString & aStrokeOpacity) { return _to GetStrokeOpacity(aStrokeOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeOpacity(const nsAString & aStrokeOpacity) { return _to SetStrokeOpacity(aStrokeOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeWidth(nsAString & aStrokeWidth) { return _to GetStrokeWidth(aStrokeWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeWidth(const nsAString & aStrokeWidth) { return _to SetStrokeWidth(aStrokeWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetTextAnchor(nsAString & aTextAnchor) { return _to GetTextAnchor(aTextAnchor); } \
NS_SCRIPTABLE NS_IMETHOD SetTextAnchor(const nsAString & aTextAnchor) { return _to SetTextAnchor(aTextAnchor); } \
NS_SCRIPTABLE NS_IMETHOD GetTextRendering(nsAString & aTextRendering) { return _to GetTextRendering(aTextRendering); } \
NS_SCRIPTABLE NS_IMETHOD SetTextRendering(const nsAString & aTextRendering) { return _to SetTextRendering(aTextRendering); } \
NS_SCRIPTABLE NS_IMETHOD GetVectorEffect(nsAString & aVectorEffect) { return _to GetVectorEffect(aVectorEffect); } \
NS_SCRIPTABLE NS_IMETHOD SetVectorEffect(const nsAString & aVectorEffect) { return _to SetVectorEffect(aVectorEffect); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAppearance(nsAString & aMozAppearance) { return _to GetMozAppearance(aMozAppearance); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAppearance(const nsAString & aMozAppearance) { return _to SetMozAppearance(aMozAppearance); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundClip(nsAString & aBackgroundClip) { return _to GetBackgroundClip(aBackgroundClip); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundClip(const nsAString & aBackgroundClip) { return _to SetBackgroundClip(aBackgroundClip); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBackgroundInlinePolicy(nsAString & aMozBackgroundInlinePolicy) { return _to GetMozBackgroundInlinePolicy(aMozBackgroundInlinePolicy); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBackgroundInlinePolicy(const nsAString & aMozBackgroundInlinePolicy) { return _to SetMozBackgroundInlinePolicy(aMozBackgroundInlinePolicy); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundOrigin(nsAString & aBackgroundOrigin) { return _to GetBackgroundOrigin(aBackgroundOrigin); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundOrigin(const nsAString & aBackgroundOrigin) { return _to SetBackgroundOrigin(aBackgroundOrigin); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBinding(nsAString & aMozBinding) { return _to GetMozBinding(aMozBinding); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBinding(const nsAString & aMozBinding) { return _to SetMozBinding(aMozBinding); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderBottomColors(nsAString & aMozBorderBottomColors) { return _to GetMozBorderBottomColors(aMozBorderBottomColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderBottomColors(const nsAString & aMozBorderBottomColors) { return _to SetMozBorderBottomColors(aMozBorderBottomColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderLeftColors(nsAString & aMozBorderLeftColors) { return _to GetMozBorderLeftColors(aMozBorderLeftColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderLeftColors(const nsAString & aMozBorderLeftColors) { return _to SetMozBorderLeftColors(aMozBorderLeftColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderRightColors(nsAString & aMozBorderRightColors) { return _to GetMozBorderRightColors(aMozBorderRightColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderRightColors(const nsAString & aMozBorderRightColors) { return _to SetMozBorderRightColors(aMozBorderRightColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderTopColors(nsAString & aMozBorderTopColors) { return _to GetMozBorderTopColors(aMozBorderTopColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderTopColors(const nsAString & aMozBorderTopColors) { return _to SetMozBorderTopColors(aMozBorderTopColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxAlign(nsAString & aMozBoxAlign) { return _to GetMozBoxAlign(aMozBoxAlign); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxAlign(const nsAString & aMozBoxAlign) { return _to SetMozBoxAlign(aMozBoxAlign); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxDirection(nsAString & aMozBoxDirection) { return _to GetMozBoxDirection(aMozBoxDirection); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxDirection(const nsAString & aMozBoxDirection) { return _to SetMozBoxDirection(aMozBoxDirection); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxFlex(nsAString & aMozBoxFlex) { return _to GetMozBoxFlex(aMozBoxFlex); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxFlex(const nsAString & aMozBoxFlex) { return _to SetMozBoxFlex(aMozBoxFlex); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrient(nsAString & aMozBoxOrient) { return _to GetMozBoxOrient(aMozBoxOrient); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrient(const nsAString & aMozBoxOrient) { return _to SetMozBoxOrient(aMozBoxOrient); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrdinalGroup(nsAString & aMozBoxOrdinalGroup) { return _to GetMozBoxOrdinalGroup(aMozBoxOrdinalGroup); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrdinalGroup(const nsAString & aMozBoxOrdinalGroup) { return _to SetMozBoxOrdinalGroup(aMozBoxOrdinalGroup); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxPack(nsAString & aMozBoxPack) { return _to GetMozBoxPack(aMozBoxPack); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxPack(const nsAString & aMozBoxPack) { return _to SetMozBoxPack(aMozBoxPack); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxSizing(nsAString & aMozBoxSizing) { return _to GetMozBoxSizing(aMozBoxSizing); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxSizing(const nsAString & aMozBoxSizing) { return _to SetMozBoxSizing(aMozBoxSizing); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnCount(nsAString & aMozColumnCount) { return _to GetMozColumnCount(aMozColumnCount); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnCount(const nsAString & aMozColumnCount) { return _to SetMozColumnCount(aMozColumnCount); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnWidth(nsAString & aMozColumnWidth) { return _to GetMozColumnWidth(aMozColumnWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnWidth(const nsAString & aMozColumnWidth) { return _to SetMozColumnWidth(aMozColumnWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnGap(nsAString & aMozColumnGap) { return _to GetMozColumnGap(aMozColumnGap); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnGap(const nsAString & aMozColumnGap) { return _to SetMozColumnGap(aMozColumnGap); } \
NS_SCRIPTABLE NS_IMETHOD GetMozFloatEdge(nsAString & aMozFloatEdge) { return _to GetMozFloatEdge(aMozFloatEdge); } \
NS_SCRIPTABLE NS_IMETHOD SetMozFloatEdge(const nsAString & aMozFloatEdge) { return _to SetMozFloatEdge(aMozFloatEdge); } \
NS_SCRIPTABLE NS_IMETHOD GetMozFontFeatureSettings(nsAString & aMozFontFeatureSettings) { return _to GetMozFontFeatureSettings(aMozFontFeatureSettings); } \
NS_SCRIPTABLE NS_IMETHOD SetMozFontFeatureSettings(const nsAString & aMozFontFeatureSettings) { return _to SetMozFontFeatureSettings(aMozFontFeatureSettings); } \
NS_SCRIPTABLE NS_IMETHOD GetMozFontLanguageOverride(nsAString & aMozFontLanguageOverride) { return _to GetMozFontLanguageOverride(aMozFontLanguageOverride); } \
NS_SCRIPTABLE NS_IMETHOD SetMozFontLanguageOverride(const nsAString & aMozFontLanguageOverride) { return _to SetMozFontLanguageOverride(aMozFontLanguageOverride); } \
NS_SCRIPTABLE NS_IMETHOD GetMozForceBrokenImageIcon(nsAString & aMozForceBrokenImageIcon) { return _to GetMozForceBrokenImageIcon(aMozForceBrokenImageIcon); } \
NS_SCRIPTABLE NS_IMETHOD SetMozForceBrokenImageIcon(const nsAString & aMozForceBrokenImageIcon) { return _to SetMozForceBrokenImageIcon(aMozForceBrokenImageIcon); } \
NS_SCRIPTABLE NS_IMETHOD GetMozImageRegion(nsAString & aMozImageRegion) { return _to GetMozImageRegion(aMozImageRegion); } \
NS_SCRIPTABLE NS_IMETHOD SetMozImageRegion(const nsAString & aMozImageRegion) { return _to SetMozImageRegion(aMozImageRegion); } \
NS_SCRIPTABLE NS_IMETHOD GetMozMarginEnd(nsAString & aMozMarginEnd) { return _to GetMozMarginEnd(aMozMarginEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMozMarginEnd(const nsAString & aMozMarginEnd) { return _to SetMozMarginEnd(aMozMarginEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMozMarginStart(nsAString & aMozMarginStart) { return _to GetMozMarginStart(aMozMarginStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMozMarginStart(const nsAString & aMozMarginStart) { return _to SetMozMarginStart(aMozMarginStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOrient(nsAString & aMozOrient) { return _to GetMozOrient(aMozOrient); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOrient(const nsAString & aMozOrient) { return _to SetMozOrient(aMozOrient); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadius(nsAString & aMozOutlineRadius) { return _to GetMozOutlineRadius(aMozOutlineRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadius(const nsAString & aMozOutlineRadius) { return _to SetMozOutlineRadius(aMozOutlineRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopleft(nsAString & aMozOutlineRadiusTopleft) { return _to GetMozOutlineRadiusTopleft(aMozOutlineRadiusTopleft); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopleft(const nsAString & aMozOutlineRadiusTopleft) { return _to SetMozOutlineRadiusTopleft(aMozOutlineRadiusTopleft); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopright(nsAString & aMozOutlineRadiusTopright) { return _to GetMozOutlineRadiusTopright(aMozOutlineRadiusTopright); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopright(const nsAString & aMozOutlineRadiusTopright) { return _to SetMozOutlineRadiusTopright(aMozOutlineRadiusTopright); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomleft(nsAString & aMozOutlineRadiusBottomleft) { return _to GetMozOutlineRadiusBottomleft(aMozOutlineRadiusBottomleft); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomleft(const nsAString & aMozOutlineRadiusBottomleft) { return _to SetMozOutlineRadiusBottomleft(aMozOutlineRadiusBottomleft); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomright(nsAString & aMozOutlineRadiusBottomright) { return _to GetMozOutlineRadiusBottomright(aMozOutlineRadiusBottomright); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomright(const nsAString & aMozOutlineRadiusBottomright) { return _to SetMozOutlineRadiusBottomright(aMozOutlineRadiusBottomright); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingEnd(nsAString & aMozPaddingEnd) { return _to GetMozPaddingEnd(aMozPaddingEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingEnd(const nsAString & aMozPaddingEnd) { return _to SetMozPaddingEnd(aMozPaddingEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingStart(nsAString & aMozPaddingStart) { return _to GetMozPaddingStart(aMozPaddingStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingStart(const nsAString & aMozPaddingStart) { return _to SetMozPaddingStart(aMozPaddingStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserFocus(nsAString & aMozUserFocus) { return _to GetMozUserFocus(aMozUserFocus); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserFocus(const nsAString & aMozUserFocus) { return _to SetMozUserFocus(aMozUserFocus); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserInput(nsAString & aMozUserInput) { return _to GetMozUserInput(aMozUserInput); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserInput(const nsAString & aMozUserInput) { return _to SetMozUserInput(aMozUserInput); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserModify(nsAString & aMozUserModify) { return _to GetMozUserModify(aMozUserModify); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserModify(const nsAString & aMozUserModify) { return _to SetMozUserModify(aMozUserModify); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserSelect(nsAString & aMozUserSelect) { return _to GetMozUserSelect(aMozUserSelect); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserSelect(const nsAString & aMozUserSelect) { return _to SetMozUserSelect(aMozUserSelect); } \
NS_SCRIPTABLE NS_IMETHOD GetOpacity(nsAString & aOpacity) { return _to GetOpacity(aOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetOpacity(const nsAString & aOpacity) { return _to SetOpacity(aOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineOffset(nsAString & aOutlineOffset) { return _to GetOutlineOffset(aOutlineOffset); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineOffset(const nsAString & aOutlineOffset) { return _to SetOutlineOffset(aOutlineOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextAlignLast(nsAString & aMozTextAlignLast) { return _to GetMozTextAlignLast(aMozTextAlignLast); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextAlignLast(const nsAString & aMozTextAlignLast) { return _to SetMozTextAlignLast(aMozTextAlignLast); } \
NS_SCRIPTABLE NS_IMETHOD GetOverflowX(nsAString & aOverflowX) { return _to GetOverflowX(aOverflowX); } \
NS_SCRIPTABLE NS_IMETHOD SetOverflowX(const nsAString & aOverflowX) { return _to SetOverflowX(aOverflowX); } \
NS_SCRIPTABLE NS_IMETHOD GetOverflowY(nsAString & aOverflowY) { return _to GetOverflowY(aOverflowY); } \
NS_SCRIPTABLE NS_IMETHOD SetOverflowY(const nsAString & aOverflowY) { return _to SetOverflowY(aOverflowY); } \
NS_SCRIPTABLE NS_IMETHOD GetImeMode(nsAString & aImeMode) { return _to GetImeMode(aImeMode); } \
NS_SCRIPTABLE NS_IMETHOD SetImeMode(const nsAString & aImeMode) { return _to SetImeMode(aImeMode); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEnd(nsAString & aMozBorderEnd) { return _to GetMozBorderEnd(aMozBorderEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEnd(const nsAString & aMozBorderEnd) { return _to SetMozBorderEnd(aMozBorderEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndColor(nsAString & aMozBorderEndColor) { return _to GetMozBorderEndColor(aMozBorderEndColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndColor(const nsAString & aMozBorderEndColor) { return _to SetMozBorderEndColor(aMozBorderEndColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndStyle(nsAString & aMozBorderEndStyle) { return _to GetMozBorderEndStyle(aMozBorderEndStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndStyle(const nsAString & aMozBorderEndStyle) { return _to SetMozBorderEndStyle(aMozBorderEndStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndWidth(nsAString & aMozBorderEndWidth) { return _to GetMozBorderEndWidth(aMozBorderEndWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndWidth(const nsAString & aMozBorderEndWidth) { return _to SetMozBorderEndWidth(aMozBorderEndWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStart(nsAString & aMozBorderStart) { return _to GetMozBorderStart(aMozBorderStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStart(const nsAString & aMozBorderStart) { return _to SetMozBorderStart(aMozBorderStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartColor(nsAString & aMozBorderStartColor) { return _to GetMozBorderStartColor(aMozBorderStartColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartColor(const nsAString & aMozBorderStartColor) { return _to SetMozBorderStartColor(aMozBorderStartColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartStyle(nsAString & aMozBorderStartStyle) { return _to GetMozBorderStartStyle(aMozBorderStartStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartStyle(const nsAString & aMozBorderStartStyle) { return _to SetMozBorderStartStyle(aMozBorderStartStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartWidth(nsAString & aMozBorderStartWidth) { return _to GetMozBorderStartWidth(aMozBorderStartWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartWidth(const nsAString & aMozBorderStartWidth) { return _to SetMozBorderStartWidth(aMozBorderStartWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozStackSizing(nsAString & aMozStackSizing) { return _to GetMozStackSizing(aMozStackSizing); } \
NS_SCRIPTABLE NS_IMETHOD SetMozStackSizing(const nsAString & aMozStackSizing) { return _to SetMozStackSizing(aMozStackSizing); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImage(nsAString & aBorderImage) { return _to GetBorderImage(aBorderImage); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImage(const nsAString & aBorderImage) { return _to SetBorderImage(aBorderImage); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumns(nsAString & aMozColumns) { return _to GetMozColumns(aMozColumns); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumns(const nsAString & aMozColumns) { return _to SetMozColumns(aMozColumns); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRule(nsAString & aMozColumnRule) { return _to GetMozColumnRule(aMozColumnRule); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRule(const nsAString & aMozColumnRule) { return _to SetMozColumnRule(aMozColumnRule); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleWidth(nsAString & aMozColumnRuleWidth) { return _to GetMozColumnRuleWidth(aMozColumnRuleWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleWidth(const nsAString & aMozColumnRuleWidth) { return _to SetMozColumnRuleWidth(aMozColumnRuleWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleStyle(nsAString & aMozColumnRuleStyle) { return _to GetMozColumnRuleStyle(aMozColumnRuleStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleStyle(const nsAString & aMozColumnRuleStyle) { return _to SetMozColumnRuleStyle(aMozColumnRuleStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleColor(nsAString & aMozColumnRuleColor) { return _to GetMozColumnRuleColor(aMozColumnRuleColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleColor(const nsAString & aMozColumnRuleColor) { return _to SetMozColumnRuleColor(aMozColumnRuleColor); } \
NS_SCRIPTABLE NS_IMETHOD GetWordBreak(nsAString & aWordBreak) { return _to GetWordBreak(aWordBreak); } \
NS_SCRIPTABLE NS_IMETHOD SetWordBreak(const nsAString & aWordBreak) { return _to SetWordBreak(aWordBreak); } \
NS_SCRIPTABLE NS_IMETHOD GetWordWrap(nsAString & aWordWrap) { return _to GetWordWrap(aWordWrap); } \
NS_SCRIPTABLE NS_IMETHOD SetWordWrap(const nsAString & aWordWrap) { return _to SetWordWrap(aWordWrap); } \
NS_SCRIPTABLE NS_IMETHOD GetMozHyphens(nsAString & aMozHyphens) { return _to GetMozHyphens(aMozHyphens); } \
NS_SCRIPTABLE NS_IMETHOD SetMozHyphens(const nsAString & aMozHyphens) { return _to SetMozHyphens(aMozHyphens); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransform(nsAString & aMozTransform) { return _to GetMozTransform(aMozTransform); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransform(const nsAString & aMozTransform) { return _to SetMozTransform(aMozTransform); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransformOrigin(nsAString & aMozTransformOrigin) { return _to GetMozTransformOrigin(aMozTransformOrigin); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransformOrigin(const nsAString & aMozTransformOrigin) { return _to SetMozTransformOrigin(aMozTransformOrigin); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPerspective(nsAString & aMozPerspective) { return _to GetMozPerspective(aMozPerspective); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPerspective(const nsAString & aMozPerspective) { return _to SetMozPerspective(aMozPerspective); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPerspectiveOrigin(nsAString & aMozPerspectiveOrigin) { return _to GetMozPerspectiveOrigin(aMozPerspectiveOrigin); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPerspectiveOrigin(const nsAString & aMozPerspectiveOrigin) { return _to SetMozPerspectiveOrigin(aMozPerspectiveOrigin); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBackfaceVisibility(nsAString & aMozBackfaceVisibility) { return _to GetMozBackfaceVisibility(aMozBackfaceVisibility); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBackfaceVisibility(const nsAString & aMozBackfaceVisibility) { return _to SetMozBackfaceVisibility(aMozBackfaceVisibility); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransformStyle(nsAString & aMozTransformStyle) { return _to GetMozTransformStyle(aMozTransformStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransformStyle(const nsAString & aMozTransformStyle) { return _to SetMozTransformStyle(aMozTransformStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozWindowShadow(nsAString & aMozWindowShadow) { return _to GetMozWindowShadow(aMozWindowShadow); } \
NS_SCRIPTABLE NS_IMETHOD SetMozWindowShadow(const nsAString & aMozWindowShadow) { return _to SetMozWindowShadow(aMozWindowShadow); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundSize(nsAString & aBackgroundSize) { return _to GetBackgroundSize(aBackgroundSize); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundSize(const nsAString & aBackgroundSize) { return _to SetBackgroundSize(aBackgroundSize); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextBlink(nsAString & aMozTextBlink) { return _to GetMozTextBlink(aMozTextBlink); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextBlink(const nsAString & aMozTextBlink) { return _to SetMozTextBlink(aMozTextBlink); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationColor(nsAString & aMozTextDecorationColor) { return _to GetMozTextDecorationColor(aMozTextDecorationColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationColor(const nsAString & aMozTextDecorationColor) { return _to SetMozTextDecorationColor(aMozTextDecorationColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationLine(nsAString & aMozTextDecorationLine) { return _to GetMozTextDecorationLine(aMozTextDecorationLine); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationLine(const nsAString & aMozTextDecorationLine) { return _to SetMozTextDecorationLine(aMozTextDecorationLine); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationStyle(nsAString & aMozTextDecorationStyle) { return _to GetMozTextDecorationStyle(aMozTextDecorationStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationStyle(const nsAString & aMozTextDecorationStyle) { return _to SetMozTextDecorationStyle(aMozTextDecorationStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionProperty(nsAString & aMozTransitionProperty) { return _to GetMozTransitionProperty(aMozTransitionProperty); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionProperty(const nsAString & aMozTransitionProperty) { return _to SetMozTransitionProperty(aMozTransitionProperty); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDuration(nsAString & aMozTransitionDuration) { return _to GetMozTransitionDuration(aMozTransitionDuration); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDuration(const nsAString & aMozTransitionDuration) { return _to SetMozTransitionDuration(aMozTransitionDuration); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDelay(nsAString & aMozTransitionDelay) { return _to GetMozTransitionDelay(aMozTransitionDelay); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDelay(const nsAString & aMozTransitionDelay) { return _to SetMozTransitionDelay(aMozTransitionDelay); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionTimingFunction(nsAString & aMozTransitionTimingFunction) { return _to GetMozTransitionTimingFunction(aMozTransitionTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionTimingFunction(const nsAString & aMozTransitionTimingFunction) { return _to SetMozTransitionTimingFunction(aMozTransitionTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransition(nsAString & aMozTransition) { return _to GetMozTransition(aMozTransition); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransition(const nsAString & aMozTransition) { return _to SetMozTransition(aMozTransition); } \
NS_SCRIPTABLE NS_IMETHOD GetPointerEvents(nsAString & aPointerEvents) { return _to GetPointerEvents(aPointerEvents); } \
NS_SCRIPTABLE NS_IMETHOD SetPointerEvents(const nsAString & aPointerEvents) { return _to SetPointerEvents(aPointerEvents); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTabSize(nsAString & aMozTabSize) { return _to GetMozTabSize(aMozTabSize); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTabSize(const nsAString & aMozTabSize) { return _to SetMozTabSize(aMozTabSize); } \
NS_SCRIPTABLE NS_IMETHOD GetResize(nsAString & aResize) { return _to GetResize(aResize); } \
NS_SCRIPTABLE NS_IMETHOD SetResize(const nsAString & aResize) { return _to SetResize(aResize); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationName(nsAString & aMozAnimationName) { return _to GetMozAnimationName(aMozAnimationName); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationName(const nsAString & aMozAnimationName) { return _to SetMozAnimationName(aMozAnimationName); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDuration(nsAString & aMozAnimationDuration) { return _to GetMozAnimationDuration(aMozAnimationDuration); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDuration(const nsAString & aMozAnimationDuration) { return _to SetMozAnimationDuration(aMozAnimationDuration); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDelay(nsAString & aMozAnimationDelay) { return _to GetMozAnimationDelay(aMozAnimationDelay); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDelay(const nsAString & aMozAnimationDelay) { return _to SetMozAnimationDelay(aMozAnimationDelay); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationTimingFunction(nsAString & aMozAnimationTimingFunction) { return _to GetMozAnimationTimingFunction(aMozAnimationTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationTimingFunction(const nsAString & aMozAnimationTimingFunction) { return _to SetMozAnimationTimingFunction(aMozAnimationTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDirection(nsAString & aMozAnimationDirection) { return _to GetMozAnimationDirection(aMozAnimationDirection); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDirection(const nsAString & aMozAnimationDirection) { return _to SetMozAnimationDirection(aMozAnimationDirection); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationFillMode(nsAString & aMozAnimationFillMode) { return _to GetMozAnimationFillMode(aMozAnimationFillMode); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationFillMode(const nsAString & aMozAnimationFillMode) { return _to SetMozAnimationFillMode(aMozAnimationFillMode); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationIterationCount(nsAString & aMozAnimationIterationCount) { return _to GetMozAnimationIterationCount(aMozAnimationIterationCount); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationIterationCount(const nsAString & aMozAnimationIterationCount) { return _to SetMozAnimationIterationCount(aMozAnimationIterationCount); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationPlayState(nsAString & aMozAnimationPlayState) { return _to GetMozAnimationPlayState(aMozAnimationPlayState); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationPlayState(const nsAString & aMozAnimationPlayState) { return _to SetMozAnimationPlayState(aMozAnimationPlayState); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimation(nsAString & aMozAnimation) { return _to GetMozAnimation(aMozAnimation); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimation(const nsAString & aMozAnimation) { return _to SetMozAnimation(aMozAnimation); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextSizeAdjust(nsAString & aMozTextSizeAdjust) { return _to GetMozTextSizeAdjust(aMozTextSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextSizeAdjust(const nsAString & aMozTextSizeAdjust) { return _to SetMozTextSizeAdjust(aMozTextSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSource(nsAString & aBorderImageSource) { return _to GetBorderImageSource(aBorderImageSource); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSource(const nsAString & aBorderImageSource) { return _to SetBorderImageSource(aBorderImageSource); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSlice(nsAString & aBorderImageSlice) { return _to GetBorderImageSlice(aBorderImageSlice); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSlice(const nsAString & aBorderImageSlice) { return _to SetBorderImageSlice(aBorderImageSlice); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageWidth(nsAString & aBorderImageWidth) { return _to GetBorderImageWidth(aBorderImageWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageWidth(const nsAString & aBorderImageWidth) { return _to SetBorderImageWidth(aBorderImageWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageOutset(nsAString & aBorderImageOutset) { return _to GetBorderImageOutset(aBorderImageOutset); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageOutset(const nsAString & aBorderImageOutset) { return _to SetBorderImageOutset(aBorderImageOutset); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageRepeat(nsAString & aBorderImageRepeat) { return _to GetBorderImageRepeat(aBorderImageRepeat); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageRepeat(const nsAString & aBorderImageRepeat) { return _to SetBorderImageRepeat(aBorderImageRepeat); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderImage(nsAString & aMozBorderImage) { return _to GetMozBorderImage(aMozBorderImage); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderImage(const nsAString & aMozBorderImage) { return _to SetMozBorderImage(aMozBorderImage); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCSS2PROPERTIES(_to) \
NS_SCRIPTABLE NS_IMETHOD GetBackground(nsAString & aBackground) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackground(aBackground); } \
NS_SCRIPTABLE NS_IMETHOD SetBackground(const nsAString & aBackground) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackground(aBackground); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundAttachment(nsAString & aBackgroundAttachment) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundAttachment(aBackgroundAttachment); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundAttachment(const nsAString & aBackgroundAttachment) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundAttachment(aBackgroundAttachment); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundColor(nsAString & aBackgroundColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundColor(aBackgroundColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundColor(const nsAString & aBackgroundColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundColor(aBackgroundColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundImage(nsAString & aBackgroundImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundImage(aBackgroundImage); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundImage(const nsAString & aBackgroundImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundImage(aBackgroundImage); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundPosition(nsAString & aBackgroundPosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundPosition(aBackgroundPosition); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundPosition(const nsAString & aBackgroundPosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundPosition(aBackgroundPosition); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundRepeat(nsAString & aBackgroundRepeat) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundRepeat(aBackgroundRepeat); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundRepeat(const nsAString & aBackgroundRepeat) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundRepeat(aBackgroundRepeat); } \
NS_SCRIPTABLE NS_IMETHOD GetBorder(nsAString & aBorder) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorder(aBorder); } \
NS_SCRIPTABLE NS_IMETHOD SetBorder(const nsAString & aBorder) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorder(aBorder); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderCollapse(nsAString & aBorderCollapse) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderCollapse(aBorderCollapse); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderCollapse(const nsAString & aBorderCollapse) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderCollapse(aBorderCollapse); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderColor(nsAString & aBorderColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderColor(aBorderColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderColor(const nsAString & aBorderColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderColor(aBorderColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderSpacing(nsAString & aBorderSpacing) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderSpacing(aBorderSpacing); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderSpacing(const nsAString & aBorderSpacing) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderSpacing(aBorderSpacing); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderStyle(nsAString & aBorderStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderStyle(aBorderStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderStyle(const nsAString & aBorderStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderStyle(aBorderStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTop(nsAString & aBorderTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderTop(aBorderTop); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTop(const nsAString & aBorderTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderTop(aBorderTop); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRight(nsAString & aBorderRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderRight(aBorderRight); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRight(const nsAString & aBorderRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderRight(aBorderRight); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottom(nsAString & aBorderBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderBottom(aBorderBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottom(const nsAString & aBorderBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderBottom(aBorderBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeft(nsAString & aBorderLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderLeft(aBorderLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeft(const nsAString & aBorderLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderLeft(aBorderLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopColor(nsAString & aBorderTopColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderTopColor(aBorderTopColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopColor(const nsAString & aBorderTopColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderTopColor(aBorderTopColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightColor(nsAString & aBorderRightColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderRightColor(aBorderRightColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightColor(const nsAString & aBorderRightColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderRightColor(aBorderRightColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomColor(nsAString & aBorderBottomColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderBottomColor(aBorderBottomColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomColor(const nsAString & aBorderBottomColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderBottomColor(aBorderBottomColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftColor(nsAString & aBorderLeftColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderLeftColor(aBorderLeftColor); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftColor(const nsAString & aBorderLeftColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderLeftColor(aBorderLeftColor); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopStyle(nsAString & aBorderTopStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderTopStyle(aBorderTopStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopStyle(const nsAString & aBorderTopStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderTopStyle(aBorderTopStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightStyle(nsAString & aBorderRightStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderRightStyle(aBorderRightStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightStyle(const nsAString & aBorderRightStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderRightStyle(aBorderRightStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomStyle(nsAString & aBorderBottomStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderBottomStyle(aBorderBottomStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomStyle(const nsAString & aBorderBottomStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderBottomStyle(aBorderBottomStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftStyle(nsAString & aBorderLeftStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderLeftStyle(aBorderLeftStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftStyle(const nsAString & aBorderLeftStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderLeftStyle(aBorderLeftStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopWidth(nsAString & aBorderTopWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderTopWidth(aBorderTopWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopWidth(const nsAString & aBorderTopWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderTopWidth(aBorderTopWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRightWidth(nsAString & aBorderRightWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderRightWidth(aBorderRightWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRightWidth(const nsAString & aBorderRightWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderRightWidth(aBorderRightWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomWidth(nsAString & aBorderBottomWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderBottomWidth(aBorderBottomWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomWidth(const nsAString & aBorderBottomWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderBottomWidth(aBorderBottomWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderLeftWidth(nsAString & aBorderLeftWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderLeftWidth(aBorderLeftWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderLeftWidth(const nsAString & aBorderLeftWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderLeftWidth(aBorderLeftWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderWidth(nsAString & aBorderWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderWidth(aBorderWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderWidth(const nsAString & aBorderWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderWidth(aBorderWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderRadius(nsAString & aBorderRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderRadius(aBorderRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderRadius(const nsAString & aBorderRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderRadius(aBorderRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopLeftRadius(nsAString & aBorderTopLeftRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderTopLeftRadius(aBorderTopLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopLeftRadius(const nsAString & aBorderTopLeftRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderTopLeftRadius(aBorderTopLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderTopRightRadius(nsAString & aBorderTopRightRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderTopRightRadius(aBorderTopRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderTopRightRadius(const nsAString & aBorderTopRightRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderTopRightRadius(aBorderTopRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomLeftRadius(nsAString & aBorderBottomLeftRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderBottomLeftRadius(aBorderBottomLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomLeftRadius(const nsAString & aBorderBottomLeftRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderBottomLeftRadius(aBorderBottomLeftRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderBottomRightRadius(nsAString & aBorderBottomRightRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderBottomRightRadius(aBorderBottomRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderBottomRightRadius(const nsAString & aBorderBottomRightRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderBottomRightRadius(aBorderBottomRightRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetBottom(nsAString & aBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBottom(aBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetBottom(const nsAString & aBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBottom(aBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetBoxShadow(nsAString & aBoxShadow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBoxShadow(aBoxShadow); } \
NS_SCRIPTABLE NS_IMETHOD SetBoxShadow(const nsAString & aBoxShadow) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBoxShadow(aBoxShadow); } \
NS_SCRIPTABLE NS_IMETHOD GetCaptionSide(nsAString & aCaptionSide) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCaptionSide(aCaptionSide); } \
NS_SCRIPTABLE NS_IMETHOD SetCaptionSide(const nsAString & aCaptionSide) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCaptionSide(aCaptionSide); } \
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClear(aClear); } \
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetClear(aClear); } \
NS_SCRIPTABLE NS_IMETHOD GetClip(nsAString & aClip) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClip(aClip); } \
NS_SCRIPTABLE NS_IMETHOD SetClip(const nsAString & aClip) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetClip(aClip); } \
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD GetContent(nsAString & aContent) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetContent(aContent); } \
NS_SCRIPTABLE NS_IMETHOD SetContent(const nsAString & aContent) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetContent(aContent); } \
NS_SCRIPTABLE NS_IMETHOD GetCounterIncrement(nsAString & aCounterIncrement) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCounterIncrement(aCounterIncrement); } \
NS_SCRIPTABLE NS_IMETHOD SetCounterIncrement(const nsAString & aCounterIncrement) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCounterIncrement(aCounterIncrement); } \
NS_SCRIPTABLE NS_IMETHOD GetCounterReset(nsAString & aCounterReset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCounterReset(aCounterReset); } \
NS_SCRIPTABLE NS_IMETHOD SetCounterReset(const nsAString & aCounterReset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCounterReset(aCounterReset); } \
NS_SCRIPTABLE NS_IMETHOD GetCursor(nsAString & aCursor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCursor(aCursor); } \
NS_SCRIPTABLE NS_IMETHOD SetCursor(const nsAString & aCursor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCursor(aCursor); } \
NS_SCRIPTABLE NS_IMETHOD GetDirection(nsAString & aDirection) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDirection(aDirection); } \
NS_SCRIPTABLE NS_IMETHOD SetDirection(const nsAString & aDirection) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDirection(aDirection); } \
NS_SCRIPTABLE NS_IMETHOD GetDisplay(nsAString & aDisplay) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplay(aDisplay); } \
NS_SCRIPTABLE NS_IMETHOD SetDisplay(const nsAString & aDisplay) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisplay(aDisplay); } \
NS_SCRIPTABLE NS_IMETHOD GetEmptyCells(nsAString & aEmptyCells) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEmptyCells(aEmptyCells); } \
NS_SCRIPTABLE NS_IMETHOD SetEmptyCells(const nsAString & aEmptyCells) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEmptyCells(aEmptyCells); } \
NS_SCRIPTABLE NS_IMETHOD GetCssFloat(nsAString & aCssFloat) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCssFloat(aCssFloat); } \
NS_SCRIPTABLE NS_IMETHOD SetCssFloat(const nsAString & aCssFloat) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCssFloat(aCssFloat); } \
NS_SCRIPTABLE NS_IMETHOD GetFont(nsAString & aFont) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFont(aFont); } \
NS_SCRIPTABLE NS_IMETHOD SetFont(const nsAString & aFont) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFont(aFont); } \
NS_SCRIPTABLE NS_IMETHOD GetFontFamily(nsAString & aFontFamily) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontFamily(aFontFamily); } \
NS_SCRIPTABLE NS_IMETHOD SetFontFamily(const nsAString & aFontFamily) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontFamily(aFontFamily); } \
NS_SCRIPTABLE NS_IMETHOD GetFontSize(nsAString & aFontSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontSize(aFontSize); } \
NS_SCRIPTABLE NS_IMETHOD SetFontSize(const nsAString & aFontSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontSize(aFontSize); } \
NS_SCRIPTABLE NS_IMETHOD GetFontSizeAdjust(nsAString & aFontSizeAdjust) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontSizeAdjust(aFontSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD SetFontSizeAdjust(const nsAString & aFontSizeAdjust) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontSizeAdjust(aFontSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD GetFontStretch(nsAString & aFontStretch) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontStretch(aFontStretch); } \
NS_SCRIPTABLE NS_IMETHOD SetFontStretch(const nsAString & aFontStretch) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontStretch(aFontStretch); } \
NS_SCRIPTABLE NS_IMETHOD GetFontStyle(nsAString & aFontStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontStyle(aFontStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetFontStyle(const nsAString & aFontStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontStyle(aFontStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetFontVariant(nsAString & aFontVariant) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontVariant(aFontVariant); } \
NS_SCRIPTABLE NS_IMETHOD SetFontVariant(const nsAString & aFontVariant) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontVariant(aFontVariant); } \
NS_SCRIPTABLE NS_IMETHOD GetFontWeight(nsAString & aFontWeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFontWeight(aFontWeight); } \
NS_SCRIPTABLE NS_IMETHOD SetFontWeight(const nsAString & aFontWeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFontWeight(aFontWeight); } \
NS_SCRIPTABLE NS_IMETHOD GetHeight(nsAString & aHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHeight(aHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetHeight(const nsAString & aHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHeight(aHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetLeft(nsAString & aLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLeft(aLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetLeft(const nsAString & aLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLeft(aLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetLetterSpacing(nsAString & aLetterSpacing) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLetterSpacing(aLetterSpacing); } \
NS_SCRIPTABLE NS_IMETHOD SetLetterSpacing(const nsAString & aLetterSpacing) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLetterSpacing(aLetterSpacing); } \
NS_SCRIPTABLE NS_IMETHOD GetLineHeight(nsAString & aLineHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLineHeight(aLineHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetLineHeight(const nsAString & aLineHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLineHeight(aLineHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetListStyle(nsAString & aListStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListStyle(aListStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetListStyle(const nsAString & aListStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetListStyle(aListStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetListStyleImage(nsAString & aListStyleImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListStyleImage(aListStyleImage); } \
NS_SCRIPTABLE NS_IMETHOD SetListStyleImage(const nsAString & aListStyleImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetListStyleImage(aListStyleImage); } \
NS_SCRIPTABLE NS_IMETHOD GetListStylePosition(nsAString & aListStylePosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListStylePosition(aListStylePosition); } \
NS_SCRIPTABLE NS_IMETHOD SetListStylePosition(const nsAString & aListStylePosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetListStylePosition(aListStylePosition); } \
NS_SCRIPTABLE NS_IMETHOD GetListStyleType(nsAString & aListStyleType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListStyleType(aListStyleType); } \
NS_SCRIPTABLE NS_IMETHOD SetListStyleType(const nsAString & aListStyleType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetListStyleType(aListStyleType); } \
NS_SCRIPTABLE NS_IMETHOD GetMargin(nsAString & aMargin) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMargin(aMargin); } \
NS_SCRIPTABLE NS_IMETHOD SetMargin(const nsAString & aMargin) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMargin(aMargin); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginTop(nsAString & aMarginTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarginTop(aMarginTop); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginTop(const nsAString & aMarginTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarginTop(aMarginTop); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginRight(nsAString & aMarginRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarginRight(aMarginRight); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginRight(const nsAString & aMarginRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarginRight(aMarginRight); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginBottom(nsAString & aMarginBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarginBottom(aMarginBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginBottom(const nsAString & aMarginBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarginBottom(aMarginBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetMarginLeft(nsAString & aMarginLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarginLeft(aMarginLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetMarginLeft(const nsAString & aMarginLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarginLeft(aMarginLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerOffset(nsAString & aMarkerOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarkerOffset(aMarkerOffset); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerOffset(const nsAString & aMarkerOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarkerOffset(aMarkerOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetMarks(nsAString & aMarks) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarks(aMarks); } \
NS_SCRIPTABLE NS_IMETHOD SetMarks(const nsAString & aMarks) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarks(aMarks); } \
NS_SCRIPTABLE NS_IMETHOD GetMaxHeight(nsAString & aMaxHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMaxHeight(aMaxHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetMaxHeight(const nsAString & aMaxHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMaxHeight(aMaxHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetMaxWidth(nsAString & aMaxWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMaxWidth(aMaxWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMaxWidth(const nsAString & aMaxWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMaxWidth(aMaxWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMinHeight(nsAString & aMinHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMinHeight(aMinHeight); } \
NS_SCRIPTABLE NS_IMETHOD SetMinHeight(const nsAString & aMinHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMinHeight(aMinHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetMinWidth(nsAString & aMinWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMinWidth(aMinWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMinWidth(const nsAString & aMinWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMinWidth(aMinWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetOrphans(nsAString & aOrphans) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOrphans(aOrphans); } \
NS_SCRIPTABLE NS_IMETHOD SetOrphans(const nsAString & aOrphans) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOrphans(aOrphans); } \
NS_SCRIPTABLE NS_IMETHOD GetOutline(nsAString & aOutline) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOutline(aOutline); } \
NS_SCRIPTABLE NS_IMETHOD SetOutline(const nsAString & aOutline) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOutline(aOutline); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineColor(nsAString & aOutlineColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOutlineColor(aOutlineColor); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineColor(const nsAString & aOutlineColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOutlineColor(aOutlineColor); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineStyle(nsAString & aOutlineStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOutlineStyle(aOutlineStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineStyle(const nsAString & aOutlineStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOutlineStyle(aOutlineStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineWidth(nsAString & aOutlineWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOutlineWidth(aOutlineWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineWidth(const nsAString & aOutlineWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOutlineWidth(aOutlineWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetOverflow(nsAString & aOverflow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOverflow(aOverflow); } \
NS_SCRIPTABLE NS_IMETHOD SetOverflow(const nsAString & aOverflow) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOverflow(aOverflow); } \
NS_SCRIPTABLE NS_IMETHOD GetPadding(nsAString & aPadding) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPadding(aPadding); } \
NS_SCRIPTABLE NS_IMETHOD SetPadding(const nsAString & aPadding) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPadding(aPadding); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingTop(nsAString & aPaddingTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPaddingTop(aPaddingTop); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingTop(const nsAString & aPaddingTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPaddingTop(aPaddingTop); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingRight(nsAString & aPaddingRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPaddingRight(aPaddingRight); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingRight(const nsAString & aPaddingRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPaddingRight(aPaddingRight); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingBottom(nsAString & aPaddingBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPaddingBottom(aPaddingBottom); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingBottom(const nsAString & aPaddingBottom) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPaddingBottom(aPaddingBottom); } \
NS_SCRIPTABLE NS_IMETHOD GetPaddingLeft(nsAString & aPaddingLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPaddingLeft(aPaddingLeft); } \
NS_SCRIPTABLE NS_IMETHOD SetPaddingLeft(const nsAString & aPaddingLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPaddingLeft(aPaddingLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetPage(nsAString & aPage) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPage(aPage); } \
NS_SCRIPTABLE NS_IMETHOD SetPage(const nsAString & aPage) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPage(aPage); } \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakAfter(nsAString & aPageBreakAfter) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPageBreakAfter(aPageBreakAfter); } \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakAfter(const nsAString & aPageBreakAfter) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPageBreakAfter(aPageBreakAfter); } \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakBefore(nsAString & aPageBreakBefore) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPageBreakBefore(aPageBreakBefore); } \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakBefore(const nsAString & aPageBreakBefore) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPageBreakBefore(aPageBreakBefore); } \
NS_SCRIPTABLE NS_IMETHOD GetPageBreakInside(nsAString & aPageBreakInside) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPageBreakInside(aPageBreakInside); } \
NS_SCRIPTABLE NS_IMETHOD SetPageBreakInside(const nsAString & aPageBreakInside) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPageBreakInside(aPageBreakInside); } \
NS_SCRIPTABLE NS_IMETHOD GetPosition(nsAString & aPosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPosition(aPosition); } \
NS_SCRIPTABLE NS_IMETHOD SetPosition(const nsAString & aPosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPosition(aPosition); } \
NS_SCRIPTABLE NS_IMETHOD GetQuotes(nsAString & aQuotes) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetQuotes(aQuotes); } \
NS_SCRIPTABLE NS_IMETHOD SetQuotes(const nsAString & aQuotes) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetQuotes(aQuotes); } \
NS_SCRIPTABLE NS_IMETHOD GetRight(nsAString & aRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRight(aRight); } \
NS_SCRIPTABLE NS_IMETHOD SetRight(const nsAString & aRight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRight(aRight); } \
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSize(aSize); } \
NS_SCRIPTABLE NS_IMETHOD GetTableLayout(nsAString & aTableLayout) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTableLayout(aTableLayout); } \
NS_SCRIPTABLE NS_IMETHOD SetTableLayout(const nsAString & aTableLayout) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTableLayout(aTableLayout); } \
NS_SCRIPTABLE NS_IMETHOD GetTextAlign(nsAString & aTextAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextAlign(aTextAlign); } \
NS_SCRIPTABLE NS_IMETHOD SetTextAlign(const nsAString & aTextAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextAlign(aTextAlign); } \
NS_SCRIPTABLE NS_IMETHOD GetTextDecoration(nsAString & aTextDecoration) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextDecoration(aTextDecoration); } \
NS_SCRIPTABLE NS_IMETHOD SetTextDecoration(const nsAString & aTextDecoration) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextDecoration(aTextDecoration); } \
NS_SCRIPTABLE NS_IMETHOD GetTextIndent(nsAString & aTextIndent) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextIndent(aTextIndent); } \
NS_SCRIPTABLE NS_IMETHOD SetTextIndent(const nsAString & aTextIndent) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextIndent(aTextIndent); } \
NS_SCRIPTABLE NS_IMETHOD GetTextOverflow(nsAString & aTextOverflow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextOverflow(aTextOverflow); } \
NS_SCRIPTABLE NS_IMETHOD SetTextOverflow(const nsAString & aTextOverflow) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextOverflow(aTextOverflow); } \
NS_SCRIPTABLE NS_IMETHOD GetTextShadow(nsAString & aTextShadow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextShadow(aTextShadow); } \
NS_SCRIPTABLE NS_IMETHOD SetTextShadow(const nsAString & aTextShadow) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextShadow(aTextShadow); } \
NS_SCRIPTABLE NS_IMETHOD GetTextTransform(nsAString & aTextTransform) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextTransform(aTextTransform); } \
NS_SCRIPTABLE NS_IMETHOD SetTextTransform(const nsAString & aTextTransform) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextTransform(aTextTransform); } \
NS_SCRIPTABLE NS_IMETHOD GetTop(nsAString & aTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTop(aTop); } \
NS_SCRIPTABLE NS_IMETHOD SetTop(const nsAString & aTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTop(aTop); } \
NS_SCRIPTABLE NS_IMETHOD GetUnicodeBidi(nsAString & aUnicodeBidi) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUnicodeBidi(aUnicodeBidi); } \
NS_SCRIPTABLE NS_IMETHOD SetUnicodeBidi(const nsAString & aUnicodeBidi) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetUnicodeBidi(aUnicodeBidi); } \
NS_SCRIPTABLE NS_IMETHOD GetVerticalAlign(nsAString & aVerticalAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetVerticalAlign(aVerticalAlign); } \
NS_SCRIPTABLE NS_IMETHOD SetVerticalAlign(const nsAString & aVerticalAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetVerticalAlign(aVerticalAlign); } \
NS_SCRIPTABLE NS_IMETHOD GetVisibility(nsAString & aVisibility) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetVisibility(aVisibility); } \
NS_SCRIPTABLE NS_IMETHOD SetVisibility(const nsAString & aVisibility) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetVisibility(aVisibility); } \
NS_SCRIPTABLE NS_IMETHOD GetWhiteSpace(nsAString & aWhiteSpace) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWhiteSpace(aWhiteSpace); } \
NS_SCRIPTABLE NS_IMETHOD SetWhiteSpace(const nsAString & aWhiteSpace) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWhiteSpace(aWhiteSpace); } \
NS_SCRIPTABLE NS_IMETHOD GetWidows(nsAString & aWidows) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidows(aWidows); } \
NS_SCRIPTABLE NS_IMETHOD SetWidows(const nsAString & aWidows) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWidows(aWidows); } \
NS_SCRIPTABLE NS_IMETHOD GetWidth(nsAString & aWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidth(aWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetWidth(const nsAString & aWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWidth(aWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetWordSpacing(nsAString & aWordSpacing) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWordSpacing(aWordSpacing); } \
NS_SCRIPTABLE NS_IMETHOD SetWordSpacing(const nsAString & aWordSpacing) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWordSpacing(aWordSpacing); } \
NS_SCRIPTABLE NS_IMETHOD GetZIndex(nsAString & aZIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetZIndex(aZIndex); } \
NS_SCRIPTABLE NS_IMETHOD SetZIndex(const nsAString & aZIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetZIndex(aZIndex); } \
NS_SCRIPTABLE NS_IMETHOD GetClipPath(nsAString & aClipPath) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClipPath(aClipPath); } \
NS_SCRIPTABLE NS_IMETHOD SetClipPath(const nsAString & aClipPath) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetClipPath(aClipPath); } \
NS_SCRIPTABLE NS_IMETHOD GetClipRule(nsAString & aClipRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClipRule(aClipRule); } \
NS_SCRIPTABLE NS_IMETHOD SetClipRule(const nsAString & aClipRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetClipRule(aClipRule); } \
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolation(nsAString & aColorInterpolation) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColorInterpolation(aColorInterpolation); } \
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolation(const nsAString & aColorInterpolation) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetColorInterpolation(aColorInterpolation); } \
NS_SCRIPTABLE NS_IMETHOD GetColorInterpolationFilters(nsAString & aColorInterpolationFilters) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColorInterpolationFilters(aColorInterpolationFilters); } \
NS_SCRIPTABLE NS_IMETHOD SetColorInterpolationFilters(const nsAString & aColorInterpolationFilters) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetColorInterpolationFilters(aColorInterpolationFilters); } \
NS_SCRIPTABLE NS_IMETHOD GetDominantBaseline(nsAString & aDominantBaseline) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDominantBaseline(aDominantBaseline); } \
NS_SCRIPTABLE NS_IMETHOD SetDominantBaseline(const nsAString & aDominantBaseline) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDominantBaseline(aDominantBaseline); } \
NS_SCRIPTABLE NS_IMETHOD GetFill(nsAString & aFill) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFill(aFill); } \
NS_SCRIPTABLE NS_IMETHOD SetFill(const nsAString & aFill) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFill(aFill); } \
NS_SCRIPTABLE NS_IMETHOD GetFillOpacity(nsAString & aFillOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFillOpacity(aFillOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetFillOpacity(const nsAString & aFillOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFillOpacity(aFillOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetFillRule(nsAString & aFillRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFillRule(aFillRule); } \
NS_SCRIPTABLE NS_IMETHOD SetFillRule(const nsAString & aFillRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFillRule(aFillRule); } \
NS_SCRIPTABLE NS_IMETHOD GetFilter(nsAString & aFilter) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFilter(aFilter); } \
NS_SCRIPTABLE NS_IMETHOD SetFilter(const nsAString & aFilter) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFilter(aFilter); } \
NS_SCRIPTABLE NS_IMETHOD GetFloodColor(nsAString & aFloodColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFloodColor(aFloodColor); } \
NS_SCRIPTABLE NS_IMETHOD SetFloodColor(const nsAString & aFloodColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFloodColor(aFloodColor); } \
NS_SCRIPTABLE NS_IMETHOD GetFloodOpacity(nsAString & aFloodOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFloodOpacity(aFloodOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetFloodOpacity(const nsAString & aFloodOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFloodOpacity(aFloodOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetImageRendering(nsAString & aImageRendering) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageRendering(aImageRendering); } \
NS_SCRIPTABLE NS_IMETHOD SetImageRendering(const nsAString & aImageRendering) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetImageRendering(aImageRendering); } \
NS_SCRIPTABLE NS_IMETHOD GetLightingColor(nsAString & aLightingColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLightingColor(aLightingColor); } \
NS_SCRIPTABLE NS_IMETHOD SetLightingColor(const nsAString & aLightingColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLightingColor(aLightingColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMarker(nsAString & aMarker) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarker(aMarker); } \
NS_SCRIPTABLE NS_IMETHOD SetMarker(const nsAString & aMarker) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarker(aMarker); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerEnd(nsAString & aMarkerEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarkerEnd(aMarkerEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerEnd(const nsAString & aMarkerEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarkerEnd(aMarkerEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerMid(nsAString & aMarkerMid) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarkerMid(aMarkerMid); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerMid(const nsAString & aMarkerMid) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarkerMid(aMarkerMid); } \
NS_SCRIPTABLE NS_IMETHOD GetMarkerStart(nsAString & aMarkerStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarkerStart(aMarkerStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMarkerStart(const nsAString & aMarkerStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarkerStart(aMarkerStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMask(nsAString & aMask) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMask(aMask); } \
NS_SCRIPTABLE NS_IMETHOD SetMask(const nsAString & aMask) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMask(aMask); } \
NS_SCRIPTABLE NS_IMETHOD GetShapeRendering(nsAString & aShapeRendering) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetShapeRendering(aShapeRendering); } \
NS_SCRIPTABLE NS_IMETHOD SetShapeRendering(const nsAString & aShapeRendering) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetShapeRendering(aShapeRendering); } \
NS_SCRIPTABLE NS_IMETHOD GetStopColor(nsAString & aStopColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStopColor(aStopColor); } \
NS_SCRIPTABLE NS_IMETHOD SetStopColor(const nsAString & aStopColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStopColor(aStopColor); } \
NS_SCRIPTABLE NS_IMETHOD GetStopOpacity(nsAString & aStopOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStopOpacity(aStopOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetStopOpacity(const nsAString & aStopOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStopOpacity(aStopOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetStroke(nsAString & aStroke) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStroke(aStroke); } \
NS_SCRIPTABLE NS_IMETHOD SetStroke(const nsAString & aStroke) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStroke(aStroke); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeDasharray(nsAString & aStrokeDasharray) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeDasharray(aStrokeDasharray); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeDasharray(const nsAString & aStrokeDasharray) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeDasharray(aStrokeDasharray); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeDashoffset(nsAString & aStrokeDashoffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeDashoffset(aStrokeDashoffset); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeDashoffset(const nsAString & aStrokeDashoffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeDashoffset(aStrokeDashoffset); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinecap(nsAString & aStrokeLinecap) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeLinecap(aStrokeLinecap); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinecap(const nsAString & aStrokeLinecap) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeLinecap(aStrokeLinecap); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeLinejoin(nsAString & aStrokeLinejoin) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeLinejoin(aStrokeLinejoin); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeLinejoin(const nsAString & aStrokeLinejoin) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeLinejoin(aStrokeLinejoin); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeMiterlimit(nsAString & aStrokeMiterlimit) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeMiterlimit(aStrokeMiterlimit); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeMiterlimit(const nsAString & aStrokeMiterlimit) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeMiterlimit(aStrokeMiterlimit); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeOpacity(nsAString & aStrokeOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeOpacity(aStrokeOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeOpacity(const nsAString & aStrokeOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeOpacity(aStrokeOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetStrokeWidth(nsAString & aStrokeWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeWidth(aStrokeWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetStrokeWidth(const nsAString & aStrokeWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeWidth(aStrokeWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetTextAnchor(nsAString & aTextAnchor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextAnchor(aTextAnchor); } \
NS_SCRIPTABLE NS_IMETHOD SetTextAnchor(const nsAString & aTextAnchor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextAnchor(aTextAnchor); } \
NS_SCRIPTABLE NS_IMETHOD GetTextRendering(nsAString & aTextRendering) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextRendering(aTextRendering); } \
NS_SCRIPTABLE NS_IMETHOD SetTextRendering(const nsAString & aTextRendering) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextRendering(aTextRendering); } \
NS_SCRIPTABLE NS_IMETHOD GetVectorEffect(nsAString & aVectorEffect) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetVectorEffect(aVectorEffect); } \
NS_SCRIPTABLE NS_IMETHOD SetVectorEffect(const nsAString & aVectorEffect) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetVectorEffect(aVectorEffect); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAppearance(nsAString & aMozAppearance) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAppearance(aMozAppearance); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAppearance(const nsAString & aMozAppearance) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAppearance(aMozAppearance); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundClip(nsAString & aBackgroundClip) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundClip(aBackgroundClip); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundClip(const nsAString & aBackgroundClip) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundClip(aBackgroundClip); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBackgroundInlinePolicy(nsAString & aMozBackgroundInlinePolicy) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBackgroundInlinePolicy(aMozBackgroundInlinePolicy); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBackgroundInlinePolicy(const nsAString & aMozBackgroundInlinePolicy) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBackgroundInlinePolicy(aMozBackgroundInlinePolicy); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundOrigin(nsAString & aBackgroundOrigin) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundOrigin(aBackgroundOrigin); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundOrigin(const nsAString & aBackgroundOrigin) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundOrigin(aBackgroundOrigin); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBinding(nsAString & aMozBinding) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBinding(aMozBinding); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBinding(const nsAString & aMozBinding) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBinding(aMozBinding); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderBottomColors(nsAString & aMozBorderBottomColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderBottomColors(aMozBorderBottomColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderBottomColors(const nsAString & aMozBorderBottomColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderBottomColors(aMozBorderBottomColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderLeftColors(nsAString & aMozBorderLeftColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderLeftColors(aMozBorderLeftColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderLeftColors(const nsAString & aMozBorderLeftColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderLeftColors(aMozBorderLeftColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderRightColors(nsAString & aMozBorderRightColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderRightColors(aMozBorderRightColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderRightColors(const nsAString & aMozBorderRightColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderRightColors(aMozBorderRightColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderTopColors(nsAString & aMozBorderTopColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderTopColors(aMozBorderTopColors); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderTopColors(const nsAString & aMozBorderTopColors) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderTopColors(aMozBorderTopColors); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxAlign(nsAString & aMozBoxAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxAlign(aMozBoxAlign); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxAlign(const nsAString & aMozBoxAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxAlign(aMozBoxAlign); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxDirection(nsAString & aMozBoxDirection) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxDirection(aMozBoxDirection); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxDirection(const nsAString & aMozBoxDirection) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxDirection(aMozBoxDirection); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxFlex(nsAString & aMozBoxFlex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxFlex(aMozBoxFlex); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxFlex(const nsAString & aMozBoxFlex) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxFlex(aMozBoxFlex); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrient(nsAString & aMozBoxOrient) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxOrient(aMozBoxOrient); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrient(const nsAString & aMozBoxOrient) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxOrient(aMozBoxOrient); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxOrdinalGroup(nsAString & aMozBoxOrdinalGroup) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxOrdinalGroup(aMozBoxOrdinalGroup); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxOrdinalGroup(const nsAString & aMozBoxOrdinalGroup) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxOrdinalGroup(aMozBoxOrdinalGroup); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxPack(nsAString & aMozBoxPack) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxPack(aMozBoxPack); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxPack(const nsAString & aMozBoxPack) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxPack(aMozBoxPack); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBoxSizing(nsAString & aMozBoxSizing) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBoxSizing(aMozBoxSizing); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBoxSizing(const nsAString & aMozBoxSizing) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBoxSizing(aMozBoxSizing); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnCount(nsAString & aMozColumnCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnCount(aMozColumnCount); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnCount(const nsAString & aMozColumnCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnCount(aMozColumnCount); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnWidth(nsAString & aMozColumnWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnWidth(aMozColumnWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnWidth(const nsAString & aMozColumnWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnWidth(aMozColumnWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnGap(nsAString & aMozColumnGap) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnGap(aMozColumnGap); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnGap(const nsAString & aMozColumnGap) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnGap(aMozColumnGap); } \
NS_SCRIPTABLE NS_IMETHOD GetMozFloatEdge(nsAString & aMozFloatEdge) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFloatEdge(aMozFloatEdge); } \
NS_SCRIPTABLE NS_IMETHOD SetMozFloatEdge(const nsAString & aMozFloatEdge) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozFloatEdge(aMozFloatEdge); } \
NS_SCRIPTABLE NS_IMETHOD GetMozFontFeatureSettings(nsAString & aMozFontFeatureSettings) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFontFeatureSettings(aMozFontFeatureSettings); } \
NS_SCRIPTABLE NS_IMETHOD SetMozFontFeatureSettings(const nsAString & aMozFontFeatureSettings) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozFontFeatureSettings(aMozFontFeatureSettings); } \
NS_SCRIPTABLE NS_IMETHOD GetMozFontLanguageOverride(nsAString & aMozFontLanguageOverride) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFontLanguageOverride(aMozFontLanguageOverride); } \
NS_SCRIPTABLE NS_IMETHOD SetMozFontLanguageOverride(const nsAString & aMozFontLanguageOverride) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozFontLanguageOverride(aMozFontLanguageOverride); } \
NS_SCRIPTABLE NS_IMETHOD GetMozForceBrokenImageIcon(nsAString & aMozForceBrokenImageIcon) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozForceBrokenImageIcon(aMozForceBrokenImageIcon); } \
NS_SCRIPTABLE NS_IMETHOD SetMozForceBrokenImageIcon(const nsAString & aMozForceBrokenImageIcon) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozForceBrokenImageIcon(aMozForceBrokenImageIcon); } \
NS_SCRIPTABLE NS_IMETHOD GetMozImageRegion(nsAString & aMozImageRegion) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozImageRegion(aMozImageRegion); } \
NS_SCRIPTABLE NS_IMETHOD SetMozImageRegion(const nsAString & aMozImageRegion) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozImageRegion(aMozImageRegion); } \
NS_SCRIPTABLE NS_IMETHOD GetMozMarginEnd(nsAString & aMozMarginEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozMarginEnd(aMozMarginEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMozMarginEnd(const nsAString & aMozMarginEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozMarginEnd(aMozMarginEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMozMarginStart(nsAString & aMozMarginStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozMarginStart(aMozMarginStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMozMarginStart(const nsAString & aMozMarginStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozMarginStart(aMozMarginStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOrient(nsAString & aMozOrient) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozOrient(aMozOrient); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOrient(const nsAString & aMozOrient) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozOrient(aMozOrient); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadius(nsAString & aMozOutlineRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozOutlineRadius(aMozOutlineRadius); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadius(const nsAString & aMozOutlineRadius) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozOutlineRadius(aMozOutlineRadius); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopleft(nsAString & aMozOutlineRadiusTopleft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozOutlineRadiusTopleft(aMozOutlineRadiusTopleft); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopleft(const nsAString & aMozOutlineRadiusTopleft) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozOutlineRadiusTopleft(aMozOutlineRadiusTopleft); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusTopright(nsAString & aMozOutlineRadiusTopright) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozOutlineRadiusTopright(aMozOutlineRadiusTopright); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusTopright(const nsAString & aMozOutlineRadiusTopright) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozOutlineRadiusTopright(aMozOutlineRadiusTopright); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomleft(nsAString & aMozOutlineRadiusBottomleft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozOutlineRadiusBottomleft(aMozOutlineRadiusBottomleft); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomleft(const nsAString & aMozOutlineRadiusBottomleft) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozOutlineRadiusBottomleft(aMozOutlineRadiusBottomleft); } \
NS_SCRIPTABLE NS_IMETHOD GetMozOutlineRadiusBottomright(nsAString & aMozOutlineRadiusBottomright) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozOutlineRadiusBottomright(aMozOutlineRadiusBottomright); } \
NS_SCRIPTABLE NS_IMETHOD SetMozOutlineRadiusBottomright(const nsAString & aMozOutlineRadiusBottomright) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozOutlineRadiusBottomright(aMozOutlineRadiusBottomright); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingEnd(nsAString & aMozPaddingEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozPaddingEnd(aMozPaddingEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingEnd(const nsAString & aMozPaddingEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozPaddingEnd(aMozPaddingEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPaddingStart(nsAString & aMozPaddingStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozPaddingStart(aMozPaddingStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPaddingStart(const nsAString & aMozPaddingStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozPaddingStart(aMozPaddingStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserFocus(nsAString & aMozUserFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozUserFocus(aMozUserFocus); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserFocus(const nsAString & aMozUserFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozUserFocus(aMozUserFocus); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserInput(nsAString & aMozUserInput) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozUserInput(aMozUserInput); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserInput(const nsAString & aMozUserInput) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozUserInput(aMozUserInput); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserModify(nsAString & aMozUserModify) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozUserModify(aMozUserModify); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserModify(const nsAString & aMozUserModify) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozUserModify(aMozUserModify); } \
NS_SCRIPTABLE NS_IMETHOD GetMozUserSelect(nsAString & aMozUserSelect) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozUserSelect(aMozUserSelect); } \
NS_SCRIPTABLE NS_IMETHOD SetMozUserSelect(const nsAString & aMozUserSelect) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozUserSelect(aMozUserSelect); } \
NS_SCRIPTABLE NS_IMETHOD GetOpacity(nsAString & aOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOpacity(aOpacity); } \
NS_SCRIPTABLE NS_IMETHOD SetOpacity(const nsAString & aOpacity) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOpacity(aOpacity); } \
NS_SCRIPTABLE NS_IMETHOD GetOutlineOffset(nsAString & aOutlineOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOutlineOffset(aOutlineOffset); } \
NS_SCRIPTABLE NS_IMETHOD SetOutlineOffset(const nsAString & aOutlineOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOutlineOffset(aOutlineOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextAlignLast(nsAString & aMozTextAlignLast) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextAlignLast(aMozTextAlignLast); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextAlignLast(const nsAString & aMozTextAlignLast) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextAlignLast(aMozTextAlignLast); } \
NS_SCRIPTABLE NS_IMETHOD GetOverflowX(nsAString & aOverflowX) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOverflowX(aOverflowX); } \
NS_SCRIPTABLE NS_IMETHOD SetOverflowX(const nsAString & aOverflowX) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOverflowX(aOverflowX); } \
NS_SCRIPTABLE NS_IMETHOD GetOverflowY(nsAString & aOverflowY) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOverflowY(aOverflowY); } \
NS_SCRIPTABLE NS_IMETHOD SetOverflowY(const nsAString & aOverflowY) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOverflowY(aOverflowY); } \
NS_SCRIPTABLE NS_IMETHOD GetImeMode(nsAString & aImeMode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImeMode(aImeMode); } \
NS_SCRIPTABLE NS_IMETHOD SetImeMode(const nsAString & aImeMode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetImeMode(aImeMode); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEnd(nsAString & aMozBorderEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderEnd(aMozBorderEnd); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEnd(const nsAString & aMozBorderEnd) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderEnd(aMozBorderEnd); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndColor(nsAString & aMozBorderEndColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderEndColor(aMozBorderEndColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndColor(const nsAString & aMozBorderEndColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderEndColor(aMozBorderEndColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndStyle(nsAString & aMozBorderEndStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderEndStyle(aMozBorderEndStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndStyle(const nsAString & aMozBorderEndStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderEndStyle(aMozBorderEndStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderEndWidth(nsAString & aMozBorderEndWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderEndWidth(aMozBorderEndWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderEndWidth(const nsAString & aMozBorderEndWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderEndWidth(aMozBorderEndWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStart(nsAString & aMozBorderStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderStart(aMozBorderStart); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStart(const nsAString & aMozBorderStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderStart(aMozBorderStart); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartColor(nsAString & aMozBorderStartColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderStartColor(aMozBorderStartColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartColor(const nsAString & aMozBorderStartColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderStartColor(aMozBorderStartColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartStyle(nsAString & aMozBorderStartStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderStartStyle(aMozBorderStartStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartStyle(const nsAString & aMozBorderStartStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderStartStyle(aMozBorderStartStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderStartWidth(nsAString & aMozBorderStartWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderStartWidth(aMozBorderStartWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderStartWidth(const nsAString & aMozBorderStartWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderStartWidth(aMozBorderStartWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozStackSizing(nsAString & aMozStackSizing) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozStackSizing(aMozStackSizing); } \
NS_SCRIPTABLE NS_IMETHOD SetMozStackSizing(const nsAString & aMozStackSizing) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozStackSizing(aMozStackSizing); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImage(nsAString & aBorderImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderImage(aBorderImage); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImage(const nsAString & aBorderImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderImage(aBorderImage); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumns(nsAString & aMozColumns) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumns(aMozColumns); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumns(const nsAString & aMozColumns) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumns(aMozColumns); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRule(nsAString & aMozColumnRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnRule(aMozColumnRule); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRule(const nsAString & aMozColumnRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnRule(aMozColumnRule); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleWidth(nsAString & aMozColumnRuleWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnRuleWidth(aMozColumnRuleWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleWidth(const nsAString & aMozColumnRuleWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnRuleWidth(aMozColumnRuleWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleStyle(nsAString & aMozColumnRuleStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnRuleStyle(aMozColumnRuleStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleStyle(const nsAString & aMozColumnRuleStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnRuleStyle(aMozColumnRuleStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozColumnRuleColor(nsAString & aMozColumnRuleColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozColumnRuleColor(aMozColumnRuleColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozColumnRuleColor(const nsAString & aMozColumnRuleColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozColumnRuleColor(aMozColumnRuleColor); } \
NS_SCRIPTABLE NS_IMETHOD GetWordBreak(nsAString & aWordBreak) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWordBreak(aWordBreak); } \
NS_SCRIPTABLE NS_IMETHOD SetWordBreak(const nsAString & aWordBreak) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWordBreak(aWordBreak); } \
NS_SCRIPTABLE NS_IMETHOD GetWordWrap(nsAString & aWordWrap) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWordWrap(aWordWrap); } \
NS_SCRIPTABLE NS_IMETHOD SetWordWrap(const nsAString & aWordWrap) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWordWrap(aWordWrap); } \
NS_SCRIPTABLE NS_IMETHOD GetMozHyphens(nsAString & aMozHyphens) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozHyphens(aMozHyphens); } \
NS_SCRIPTABLE NS_IMETHOD SetMozHyphens(const nsAString & aMozHyphens) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozHyphens(aMozHyphens); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransform(nsAString & aMozTransform) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransform(aMozTransform); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransform(const nsAString & aMozTransform) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransform(aMozTransform); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransformOrigin(nsAString & aMozTransformOrigin) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransformOrigin(aMozTransformOrigin); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransformOrigin(const nsAString & aMozTransformOrigin) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransformOrigin(aMozTransformOrigin); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPerspective(nsAString & aMozPerspective) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozPerspective(aMozPerspective); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPerspective(const nsAString & aMozPerspective) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozPerspective(aMozPerspective); } \
NS_SCRIPTABLE NS_IMETHOD GetMozPerspectiveOrigin(nsAString & aMozPerspectiveOrigin) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozPerspectiveOrigin(aMozPerspectiveOrigin); } \
NS_SCRIPTABLE NS_IMETHOD SetMozPerspectiveOrigin(const nsAString & aMozPerspectiveOrigin) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozPerspectiveOrigin(aMozPerspectiveOrigin); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBackfaceVisibility(nsAString & aMozBackfaceVisibility) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBackfaceVisibility(aMozBackfaceVisibility); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBackfaceVisibility(const nsAString & aMozBackfaceVisibility) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBackfaceVisibility(aMozBackfaceVisibility); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransformStyle(nsAString & aMozTransformStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransformStyle(aMozTransformStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransformStyle(const nsAString & aMozTransformStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransformStyle(aMozTransformStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozWindowShadow(nsAString & aMozWindowShadow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozWindowShadow(aMozWindowShadow); } \
NS_SCRIPTABLE NS_IMETHOD SetMozWindowShadow(const nsAString & aMozWindowShadow) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozWindowShadow(aMozWindowShadow); } \
NS_SCRIPTABLE NS_IMETHOD GetBackgroundSize(nsAString & aBackgroundSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBackgroundSize(aBackgroundSize); } \
NS_SCRIPTABLE NS_IMETHOD SetBackgroundSize(const nsAString & aBackgroundSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBackgroundSize(aBackgroundSize); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextBlink(nsAString & aMozTextBlink) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextBlink(aMozTextBlink); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextBlink(const nsAString & aMozTextBlink) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextBlink(aMozTextBlink); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationColor(nsAString & aMozTextDecorationColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextDecorationColor(aMozTextDecorationColor); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationColor(const nsAString & aMozTextDecorationColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextDecorationColor(aMozTextDecorationColor); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationLine(nsAString & aMozTextDecorationLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextDecorationLine(aMozTextDecorationLine); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationLine(const nsAString & aMozTextDecorationLine) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextDecorationLine(aMozTextDecorationLine); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextDecorationStyle(nsAString & aMozTextDecorationStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextDecorationStyle(aMozTextDecorationStyle); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextDecorationStyle(const nsAString & aMozTextDecorationStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextDecorationStyle(aMozTextDecorationStyle); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionProperty(nsAString & aMozTransitionProperty) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransitionProperty(aMozTransitionProperty); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionProperty(const nsAString & aMozTransitionProperty) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransitionProperty(aMozTransitionProperty); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDuration(nsAString & aMozTransitionDuration) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransitionDuration(aMozTransitionDuration); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDuration(const nsAString & aMozTransitionDuration) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransitionDuration(aMozTransitionDuration); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionDelay(nsAString & aMozTransitionDelay) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransitionDelay(aMozTransitionDelay); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionDelay(const nsAString & aMozTransitionDelay) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransitionDelay(aMozTransitionDelay); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransitionTimingFunction(nsAString & aMozTransitionTimingFunction) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransitionTimingFunction(aMozTransitionTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransitionTimingFunction(const nsAString & aMozTransitionTimingFunction) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransitionTimingFunction(aMozTransitionTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTransition(nsAString & aMozTransition) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTransition(aMozTransition); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTransition(const nsAString & aMozTransition) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTransition(aMozTransition); } \
NS_SCRIPTABLE NS_IMETHOD GetPointerEvents(nsAString & aPointerEvents) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPointerEvents(aPointerEvents); } \
NS_SCRIPTABLE NS_IMETHOD SetPointerEvents(const nsAString & aPointerEvents) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPointerEvents(aPointerEvents); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTabSize(nsAString & aMozTabSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTabSize(aMozTabSize); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTabSize(const nsAString & aMozTabSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTabSize(aMozTabSize); } \
NS_SCRIPTABLE NS_IMETHOD GetResize(nsAString & aResize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetResize(aResize); } \
NS_SCRIPTABLE NS_IMETHOD SetResize(const nsAString & aResize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetResize(aResize); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationName(nsAString & aMozAnimationName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationName(aMozAnimationName); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationName(const nsAString & aMozAnimationName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationName(aMozAnimationName); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDuration(nsAString & aMozAnimationDuration) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationDuration(aMozAnimationDuration); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDuration(const nsAString & aMozAnimationDuration) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationDuration(aMozAnimationDuration); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDelay(nsAString & aMozAnimationDelay) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationDelay(aMozAnimationDelay); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDelay(const nsAString & aMozAnimationDelay) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationDelay(aMozAnimationDelay); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationTimingFunction(nsAString & aMozAnimationTimingFunction) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationTimingFunction(aMozAnimationTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationTimingFunction(const nsAString & aMozAnimationTimingFunction) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationTimingFunction(aMozAnimationTimingFunction); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationDirection(nsAString & aMozAnimationDirection) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationDirection(aMozAnimationDirection); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationDirection(const nsAString & aMozAnimationDirection) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationDirection(aMozAnimationDirection); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationFillMode(nsAString & aMozAnimationFillMode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationFillMode(aMozAnimationFillMode); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationFillMode(const nsAString & aMozAnimationFillMode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationFillMode(aMozAnimationFillMode); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationIterationCount(nsAString & aMozAnimationIterationCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationIterationCount(aMozAnimationIterationCount); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationIterationCount(const nsAString & aMozAnimationIterationCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationIterationCount(aMozAnimationIterationCount); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimationPlayState(nsAString & aMozAnimationPlayState) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimationPlayState(aMozAnimationPlayState); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimationPlayState(const nsAString & aMozAnimationPlayState) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimationPlayState(aMozAnimationPlayState); } \
NS_SCRIPTABLE NS_IMETHOD GetMozAnimation(nsAString & aMozAnimation) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozAnimation(aMozAnimation); } \
NS_SCRIPTABLE NS_IMETHOD SetMozAnimation(const nsAString & aMozAnimation) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozAnimation(aMozAnimation); } \
NS_SCRIPTABLE NS_IMETHOD GetMozTextSizeAdjust(nsAString & aMozTextSizeAdjust) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextSizeAdjust(aMozTextSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD SetMozTextSizeAdjust(const nsAString & aMozTextSizeAdjust) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextSizeAdjust(aMozTextSizeAdjust); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSource(nsAString & aBorderImageSource) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderImageSource(aBorderImageSource); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSource(const nsAString & aBorderImageSource) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderImageSource(aBorderImageSource); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageSlice(nsAString & aBorderImageSlice) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderImageSlice(aBorderImageSlice); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageSlice(const nsAString & aBorderImageSlice) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderImageSlice(aBorderImageSlice); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageWidth(nsAString & aBorderImageWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderImageWidth(aBorderImageWidth); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageWidth(const nsAString & aBorderImageWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderImageWidth(aBorderImageWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageOutset(nsAString & aBorderImageOutset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderImageOutset(aBorderImageOutset); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageOutset(const nsAString & aBorderImageOutset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderImageOutset(aBorderImageOutset); } \
NS_SCRIPTABLE NS_IMETHOD GetBorderImageRepeat(nsAString & aBorderImageRepeat) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBorderImageRepeat(aBorderImageRepeat); } \
NS_SCRIPTABLE NS_IMETHOD SetBorderImageRepeat(const nsAString & aBorderImageRepeat) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBorderImageRepeat(aBorderImageRepeat); } \
NS_SCRIPTABLE NS_IMETHOD GetMozBorderImage(nsAString & aMozBorderImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozBorderImage(aMozBorderImage); } \
NS_SCRIPTABLE NS_IMETHOD SetMozBorderImage(const nsAString & aMozBorderImage) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozBorderImage(aMozBorderImage); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCSS2Properties : public nsIDOMCSS2Properties
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCSS2PROPERTIES
nsDOMCSS2Properties();
private:
~nsDOMCSS2Properties();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMCSS2Properties, nsIDOMCSS2Properties)
nsDOMCSS2Properties::nsDOMCSS2Properties()
{
/* member initializers and constructor code */
}
nsDOMCSS2Properties::~nsDOMCSS2Properties()
{
/* destructor code */
}
/* attribute DOMString background; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackground(nsAString & aBackground)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackground(const nsAString & aBackground)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundAttachment; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundAttachment(nsAString & aBackgroundAttachment)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundAttachment(const nsAString & aBackgroundAttachment)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundColor(nsAString & aBackgroundColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundColor(const nsAString & aBackgroundColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundImage; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundImage(nsAString & aBackgroundImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundImage(const nsAString & aBackgroundImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundPosition; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundPosition(nsAString & aBackgroundPosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundPosition(const nsAString & aBackgroundPosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundRepeat; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundRepeat(nsAString & aBackgroundRepeat)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundRepeat(const nsAString & aBackgroundRepeat)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString border; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorder(nsAString & aBorder)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorder(const nsAString & aBorder)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderCollapse; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderCollapse(nsAString & aBorderCollapse)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderCollapse(const nsAString & aBorderCollapse)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderColor(nsAString & aBorderColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderColor(const nsAString & aBorderColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderSpacing; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderSpacing(nsAString & aBorderSpacing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderSpacing(const nsAString & aBorderSpacing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderStyle(nsAString & aBorderStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderStyle(const nsAString & aBorderStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderTop; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderTop(nsAString & aBorderTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderTop(const nsAString & aBorderTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderRight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderRight(nsAString & aBorderRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderRight(const nsAString & aBorderRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderBottom; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderBottom(nsAString & aBorderBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderBottom(const nsAString & aBorderBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderLeft; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderLeft(nsAString & aBorderLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderLeft(const nsAString & aBorderLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderTopColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderTopColor(nsAString & aBorderTopColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderTopColor(const nsAString & aBorderTopColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderRightColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderRightColor(nsAString & aBorderRightColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderRightColor(const nsAString & aBorderRightColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderBottomColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderBottomColor(nsAString & aBorderBottomColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderBottomColor(const nsAString & aBorderBottomColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderLeftColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderLeftColor(nsAString & aBorderLeftColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderLeftColor(const nsAString & aBorderLeftColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderTopStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderTopStyle(nsAString & aBorderTopStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderTopStyle(const nsAString & aBorderTopStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderRightStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderRightStyle(nsAString & aBorderRightStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderRightStyle(const nsAString & aBorderRightStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderBottomStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderBottomStyle(nsAString & aBorderBottomStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderBottomStyle(const nsAString & aBorderBottomStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderLeftStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderLeftStyle(nsAString & aBorderLeftStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderLeftStyle(const nsAString & aBorderLeftStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderTopWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderTopWidth(nsAString & aBorderTopWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderTopWidth(const nsAString & aBorderTopWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderRightWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderRightWidth(nsAString & aBorderRightWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderRightWidth(const nsAString & aBorderRightWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderBottomWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderBottomWidth(nsAString & aBorderBottomWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderBottomWidth(const nsAString & aBorderBottomWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderLeftWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderLeftWidth(nsAString & aBorderLeftWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderLeftWidth(const nsAString & aBorderLeftWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderWidth(nsAString & aBorderWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderWidth(const nsAString & aBorderWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderRadius; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderRadius(nsAString & aBorderRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderRadius(const nsAString & aBorderRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderTopLeftRadius; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderTopLeftRadius(nsAString & aBorderTopLeftRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderTopLeftRadius(const nsAString & aBorderTopLeftRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderTopRightRadius; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderTopRightRadius(nsAString & aBorderTopRightRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderTopRightRadius(const nsAString & aBorderTopRightRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderBottomLeftRadius; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderBottomLeftRadius(nsAString & aBorderBottomLeftRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderBottomLeftRadius(const nsAString & aBorderBottomLeftRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderBottomRightRadius; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderBottomRightRadius(nsAString & aBorderBottomRightRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderBottomRightRadius(const nsAString & aBorderBottomRightRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString bottom; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBottom(nsAString & aBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBottom(const nsAString & aBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString boxShadow; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBoxShadow(nsAString & aBoxShadow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBoxShadow(const nsAString & aBoxShadow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString captionSide; */
NS_IMETHODIMP nsDOMCSS2Properties::GetCaptionSide(nsAString & aCaptionSide)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetCaptionSide(const nsAString & aCaptionSide)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString clear; */
NS_IMETHODIMP nsDOMCSS2Properties::GetClear(nsAString & aClear)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetClear(const nsAString & aClear)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString clip; */
NS_IMETHODIMP nsDOMCSS2Properties::GetClip(nsAString & aClip)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetClip(const nsAString & aClip)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString color; */
NS_IMETHODIMP nsDOMCSS2Properties::GetColor(nsAString & aColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetColor(const nsAString & aColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString content; */
NS_IMETHODIMP nsDOMCSS2Properties::GetContent(nsAString & aContent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetContent(const nsAString & aContent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString counterIncrement; */
NS_IMETHODIMP nsDOMCSS2Properties::GetCounterIncrement(nsAString & aCounterIncrement)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetCounterIncrement(const nsAString & aCounterIncrement)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString counterReset; */
NS_IMETHODIMP nsDOMCSS2Properties::GetCounterReset(nsAString & aCounterReset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetCounterReset(const nsAString & aCounterReset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString cursor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetCursor(nsAString & aCursor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetCursor(const nsAString & aCursor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString direction; */
NS_IMETHODIMP nsDOMCSS2Properties::GetDirection(nsAString & aDirection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetDirection(const nsAString & aDirection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString display; */
NS_IMETHODIMP nsDOMCSS2Properties::GetDisplay(nsAString & aDisplay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetDisplay(const nsAString & aDisplay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString emptyCells; */
NS_IMETHODIMP nsDOMCSS2Properties::GetEmptyCells(nsAString & aEmptyCells)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetEmptyCells(const nsAString & aEmptyCells)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString cssFloat; */
NS_IMETHODIMP nsDOMCSS2Properties::GetCssFloat(nsAString & aCssFloat)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetCssFloat(const nsAString & aCssFloat)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString font; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFont(nsAString & aFont)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFont(const nsAString & aFont)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontFamily; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontFamily(nsAString & aFontFamily)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontFamily(const nsAString & aFontFamily)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontSize; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontSize(nsAString & aFontSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontSize(const nsAString & aFontSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontSizeAdjust; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontSizeAdjust(nsAString & aFontSizeAdjust)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontSizeAdjust(const nsAString & aFontSizeAdjust)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontStretch; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontStretch(nsAString & aFontStretch)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontStretch(const nsAString & aFontStretch)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontStyle(nsAString & aFontStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontStyle(const nsAString & aFontStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontVariant; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontVariant(nsAString & aFontVariant)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontVariant(const nsAString & aFontVariant)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fontWeight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFontWeight(nsAString & aFontWeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFontWeight(const nsAString & aFontWeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString height; */
NS_IMETHODIMP nsDOMCSS2Properties::GetHeight(nsAString & aHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetHeight(const nsAString & aHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString left; */
NS_IMETHODIMP nsDOMCSS2Properties::GetLeft(nsAString & aLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetLeft(const nsAString & aLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString letterSpacing; */
NS_IMETHODIMP nsDOMCSS2Properties::GetLetterSpacing(nsAString & aLetterSpacing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetLetterSpacing(const nsAString & aLetterSpacing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString lineHeight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetLineHeight(nsAString & aLineHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetLineHeight(const nsAString & aLineHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString listStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetListStyle(nsAString & aListStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetListStyle(const nsAString & aListStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString listStyleImage; */
NS_IMETHODIMP nsDOMCSS2Properties::GetListStyleImage(nsAString & aListStyleImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetListStyleImage(const nsAString & aListStyleImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString listStylePosition; */
NS_IMETHODIMP nsDOMCSS2Properties::GetListStylePosition(nsAString & aListStylePosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetListStylePosition(const nsAString & aListStylePosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString listStyleType; */
NS_IMETHODIMP nsDOMCSS2Properties::GetListStyleType(nsAString & aListStyleType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetListStyleType(const nsAString & aListStyleType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString margin; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMargin(nsAString & aMargin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMargin(const nsAString & aMargin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString marginTop; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarginTop(nsAString & aMarginTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarginTop(const nsAString & aMarginTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString marginRight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarginRight(nsAString & aMarginRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarginRight(const nsAString & aMarginRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString marginBottom; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarginBottom(nsAString & aMarginBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarginBottom(const nsAString & aMarginBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString marginLeft; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarginLeft(nsAString & aMarginLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarginLeft(const nsAString & aMarginLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString markerOffset; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarkerOffset(nsAString & aMarkerOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarkerOffset(const nsAString & aMarkerOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString marks; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarks(nsAString & aMarks)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarks(const nsAString & aMarks)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString maxHeight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMaxHeight(nsAString & aMaxHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMaxHeight(const nsAString & aMaxHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString maxWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMaxWidth(nsAString & aMaxWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMaxWidth(const nsAString & aMaxWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString minHeight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMinHeight(nsAString & aMinHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMinHeight(const nsAString & aMinHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString minWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMinWidth(nsAString & aMinWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMinWidth(const nsAString & aMinWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString orphans; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOrphans(nsAString & aOrphans)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOrphans(const nsAString & aOrphans)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString outline; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOutline(nsAString & aOutline)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOutline(const nsAString & aOutline)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString outlineColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOutlineColor(nsAString & aOutlineColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOutlineColor(const nsAString & aOutlineColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString outlineStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOutlineStyle(nsAString & aOutlineStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOutlineStyle(const nsAString & aOutlineStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString outlineWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOutlineWidth(nsAString & aOutlineWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOutlineWidth(const nsAString & aOutlineWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString overflow; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOverflow(nsAString & aOverflow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOverflow(const nsAString & aOverflow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString padding; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPadding(nsAString & aPadding)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPadding(const nsAString & aPadding)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString paddingTop; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPaddingTop(nsAString & aPaddingTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPaddingTop(const nsAString & aPaddingTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString paddingRight; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPaddingRight(nsAString & aPaddingRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPaddingRight(const nsAString & aPaddingRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString paddingBottom; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPaddingBottom(nsAString & aPaddingBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPaddingBottom(const nsAString & aPaddingBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString paddingLeft; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPaddingLeft(nsAString & aPaddingLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPaddingLeft(const nsAString & aPaddingLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString page; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPage(nsAString & aPage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPage(const nsAString & aPage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString pageBreakAfter; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPageBreakAfter(nsAString & aPageBreakAfter)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPageBreakAfter(const nsAString & aPageBreakAfter)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString pageBreakBefore; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPageBreakBefore(nsAString & aPageBreakBefore)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPageBreakBefore(const nsAString & aPageBreakBefore)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString pageBreakInside; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPageBreakInside(nsAString & aPageBreakInside)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPageBreakInside(const nsAString & aPageBreakInside)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString position; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPosition(nsAString & aPosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPosition(const nsAString & aPosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString quotes; */
NS_IMETHODIMP nsDOMCSS2Properties::GetQuotes(nsAString & aQuotes)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetQuotes(const nsAString & aQuotes)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString right; */
NS_IMETHODIMP nsDOMCSS2Properties::GetRight(nsAString & aRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetRight(const nsAString & aRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString size; */
NS_IMETHODIMP nsDOMCSS2Properties::GetSize(nsAString & aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetSize(const nsAString & aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString tableLayout; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTableLayout(nsAString & aTableLayout)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTableLayout(const nsAString & aTableLayout)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textAlign; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextAlign(nsAString & aTextAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextAlign(const nsAString & aTextAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textDecoration; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextDecoration(nsAString & aTextDecoration)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextDecoration(const nsAString & aTextDecoration)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textIndent; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextIndent(nsAString & aTextIndent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextIndent(const nsAString & aTextIndent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textOverflow; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextOverflow(nsAString & aTextOverflow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextOverflow(const nsAString & aTextOverflow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textShadow; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextShadow(nsAString & aTextShadow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextShadow(const nsAString & aTextShadow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textTransform; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextTransform(nsAString & aTextTransform)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextTransform(const nsAString & aTextTransform)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString top; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTop(nsAString & aTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTop(const nsAString & aTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString unicodeBidi; */
NS_IMETHODIMP nsDOMCSS2Properties::GetUnicodeBidi(nsAString & aUnicodeBidi)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetUnicodeBidi(const nsAString & aUnicodeBidi)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString verticalAlign; */
NS_IMETHODIMP nsDOMCSS2Properties::GetVerticalAlign(nsAString & aVerticalAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetVerticalAlign(const nsAString & aVerticalAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString visibility; */
NS_IMETHODIMP nsDOMCSS2Properties::GetVisibility(nsAString & aVisibility)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetVisibility(const nsAString & aVisibility)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString whiteSpace; */
NS_IMETHODIMP nsDOMCSS2Properties::GetWhiteSpace(nsAString & aWhiteSpace)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetWhiteSpace(const nsAString & aWhiteSpace)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString widows; */
NS_IMETHODIMP nsDOMCSS2Properties::GetWidows(nsAString & aWidows)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetWidows(const nsAString & aWidows)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString width; */
NS_IMETHODIMP nsDOMCSS2Properties::GetWidth(nsAString & aWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetWidth(const nsAString & aWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString wordSpacing; */
NS_IMETHODIMP nsDOMCSS2Properties::GetWordSpacing(nsAString & aWordSpacing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetWordSpacing(const nsAString & aWordSpacing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString zIndex; */
NS_IMETHODIMP nsDOMCSS2Properties::GetZIndex(nsAString & aZIndex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetZIndex(const nsAString & aZIndex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString clipPath; */
NS_IMETHODIMP nsDOMCSS2Properties::GetClipPath(nsAString & aClipPath)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetClipPath(const nsAString & aClipPath)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString clipRule; */
NS_IMETHODIMP nsDOMCSS2Properties::GetClipRule(nsAString & aClipRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetClipRule(const nsAString & aClipRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString colorInterpolation; */
NS_IMETHODIMP nsDOMCSS2Properties::GetColorInterpolation(nsAString & aColorInterpolation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetColorInterpolation(const nsAString & aColorInterpolation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString colorInterpolationFilters; */
NS_IMETHODIMP nsDOMCSS2Properties::GetColorInterpolationFilters(nsAString & aColorInterpolationFilters)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetColorInterpolationFilters(const nsAString & aColorInterpolationFilters)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString dominantBaseline; */
NS_IMETHODIMP nsDOMCSS2Properties::GetDominantBaseline(nsAString & aDominantBaseline)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetDominantBaseline(const nsAString & aDominantBaseline)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fill; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFill(nsAString & aFill)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFill(const nsAString & aFill)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fillOpacity; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFillOpacity(nsAString & aFillOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFillOpacity(const nsAString & aFillOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString fillRule; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFillRule(nsAString & aFillRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFillRule(const nsAString & aFillRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString filter; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFilter(nsAString & aFilter)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFilter(const nsAString & aFilter)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString floodColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFloodColor(nsAString & aFloodColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFloodColor(const nsAString & aFloodColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString floodOpacity; */
NS_IMETHODIMP nsDOMCSS2Properties::GetFloodOpacity(nsAString & aFloodOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetFloodOpacity(const nsAString & aFloodOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString imageRendering; */
NS_IMETHODIMP nsDOMCSS2Properties::GetImageRendering(nsAString & aImageRendering)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetImageRendering(const nsAString & aImageRendering)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString lightingColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetLightingColor(nsAString & aLightingColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetLightingColor(const nsAString & aLightingColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString marker; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarker(nsAString & aMarker)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarker(const nsAString & aMarker)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString markerEnd; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarkerEnd(nsAString & aMarkerEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarkerEnd(const nsAString & aMarkerEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString markerMid; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarkerMid(nsAString & aMarkerMid)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarkerMid(const nsAString & aMarkerMid)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString markerStart; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMarkerStart(nsAString & aMarkerStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMarkerStart(const nsAString & aMarkerStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString mask; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMask(nsAString & aMask)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMask(const nsAString & aMask)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString shapeRendering; */
NS_IMETHODIMP nsDOMCSS2Properties::GetShapeRendering(nsAString & aShapeRendering)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetShapeRendering(const nsAString & aShapeRendering)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString stopColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStopColor(nsAString & aStopColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStopColor(const nsAString & aStopColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString stopOpacity; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStopOpacity(nsAString & aStopOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStopOpacity(const nsAString & aStopOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString stroke; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStroke(nsAString & aStroke)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStroke(const nsAString & aStroke)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeDasharray; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeDasharray(nsAString & aStrokeDasharray)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeDasharray(const nsAString & aStrokeDasharray)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeDashoffset; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeDashoffset(nsAString & aStrokeDashoffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeDashoffset(const nsAString & aStrokeDashoffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeLinecap; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeLinecap(nsAString & aStrokeLinecap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeLinecap(const nsAString & aStrokeLinecap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeLinejoin; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeLinejoin(nsAString & aStrokeLinejoin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeLinejoin(const nsAString & aStrokeLinejoin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeMiterlimit; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeMiterlimit(nsAString & aStrokeMiterlimit)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeMiterlimit(const nsAString & aStrokeMiterlimit)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeOpacity; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeOpacity(nsAString & aStrokeOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeOpacity(const nsAString & aStrokeOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString strokeWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetStrokeWidth(nsAString & aStrokeWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetStrokeWidth(const nsAString & aStrokeWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textAnchor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextAnchor(nsAString & aTextAnchor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextAnchor(const nsAString & aTextAnchor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString textRendering; */
NS_IMETHODIMP nsDOMCSS2Properties::GetTextRendering(nsAString & aTextRendering)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetTextRendering(const nsAString & aTextRendering)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString vectorEffect; */
NS_IMETHODIMP nsDOMCSS2Properties::GetVectorEffect(nsAString & aVectorEffect)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetVectorEffect(const nsAString & aVectorEffect)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAppearance; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAppearance(nsAString & aMozAppearance)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAppearance(const nsAString & aMozAppearance)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundClip; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundClip(nsAString & aBackgroundClip)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundClip(const nsAString & aBackgroundClip)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBackgroundInlinePolicy; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBackgroundInlinePolicy(nsAString & aMozBackgroundInlinePolicy)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBackgroundInlinePolicy(const nsAString & aMozBackgroundInlinePolicy)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundOrigin; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundOrigin(nsAString & aBackgroundOrigin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundOrigin(const nsAString & aBackgroundOrigin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBinding; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBinding(nsAString & aMozBinding)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBinding(const nsAString & aMozBinding)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderBottomColors; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderBottomColors(nsAString & aMozBorderBottomColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderBottomColors(const nsAString & aMozBorderBottomColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderLeftColors; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderLeftColors(nsAString & aMozBorderLeftColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderLeftColors(const nsAString & aMozBorderLeftColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderRightColors; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderRightColors(nsAString & aMozBorderRightColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderRightColors(const nsAString & aMozBorderRightColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderTopColors; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderTopColors(nsAString & aMozBorderTopColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderTopColors(const nsAString & aMozBorderTopColors)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxAlign; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxAlign(nsAString & aMozBoxAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxAlign(const nsAString & aMozBoxAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxDirection; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxDirection(nsAString & aMozBoxDirection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxDirection(const nsAString & aMozBoxDirection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxFlex; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxFlex(nsAString & aMozBoxFlex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxFlex(const nsAString & aMozBoxFlex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxOrient; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxOrient(nsAString & aMozBoxOrient)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxOrient(const nsAString & aMozBoxOrient)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxOrdinalGroup; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxOrdinalGroup(nsAString & aMozBoxOrdinalGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxOrdinalGroup(const nsAString & aMozBoxOrdinalGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxPack; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxPack(nsAString & aMozBoxPack)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxPack(const nsAString & aMozBoxPack)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBoxSizing; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBoxSizing(nsAString & aMozBoxSizing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBoxSizing(const nsAString & aMozBoxSizing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnCount; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnCount(nsAString & aMozColumnCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnCount(const nsAString & aMozColumnCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnWidth(nsAString & aMozColumnWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnWidth(const nsAString & aMozColumnWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnGap; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnGap(nsAString & aMozColumnGap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnGap(const nsAString & aMozColumnGap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozFloatEdge; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozFloatEdge(nsAString & aMozFloatEdge)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozFloatEdge(const nsAString & aMozFloatEdge)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozFontFeatureSettings; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozFontFeatureSettings(nsAString & aMozFontFeatureSettings)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozFontFeatureSettings(const nsAString & aMozFontFeatureSettings)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozFontLanguageOverride; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozFontLanguageOverride(nsAString & aMozFontLanguageOverride)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozFontLanguageOverride(const nsAString & aMozFontLanguageOverride)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozForceBrokenImageIcon; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozForceBrokenImageIcon(nsAString & aMozForceBrokenImageIcon)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozForceBrokenImageIcon(const nsAString & aMozForceBrokenImageIcon)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozImageRegion; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozImageRegion(nsAString & aMozImageRegion)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozImageRegion(const nsAString & aMozImageRegion)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozMarginEnd; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozMarginEnd(nsAString & aMozMarginEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozMarginEnd(const nsAString & aMozMarginEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozMarginStart; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozMarginStart(nsAString & aMozMarginStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozMarginStart(const nsAString & aMozMarginStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozOrient; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozOrient(nsAString & aMozOrient)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozOrient(const nsAString & aMozOrient)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozOutlineRadius; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozOutlineRadius(nsAString & aMozOutlineRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozOutlineRadius(const nsAString & aMozOutlineRadius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozOutlineRadiusTopleft; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozOutlineRadiusTopleft(nsAString & aMozOutlineRadiusTopleft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozOutlineRadiusTopleft(const nsAString & aMozOutlineRadiusTopleft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozOutlineRadiusTopright; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozOutlineRadiusTopright(nsAString & aMozOutlineRadiusTopright)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozOutlineRadiusTopright(const nsAString & aMozOutlineRadiusTopright)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozOutlineRadiusBottomleft; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozOutlineRadiusBottomleft(nsAString & aMozOutlineRadiusBottomleft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozOutlineRadiusBottomleft(const nsAString & aMozOutlineRadiusBottomleft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozOutlineRadiusBottomright; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozOutlineRadiusBottomright(nsAString & aMozOutlineRadiusBottomright)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozOutlineRadiusBottomright(const nsAString & aMozOutlineRadiusBottomright)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozPaddingEnd; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozPaddingEnd(nsAString & aMozPaddingEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozPaddingEnd(const nsAString & aMozPaddingEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozPaddingStart; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozPaddingStart(nsAString & aMozPaddingStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozPaddingStart(const nsAString & aMozPaddingStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozUserFocus; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozUserFocus(nsAString & aMozUserFocus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozUserFocus(const nsAString & aMozUserFocus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozUserInput; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozUserInput(nsAString & aMozUserInput)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozUserInput(const nsAString & aMozUserInput)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozUserModify; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozUserModify(nsAString & aMozUserModify)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozUserModify(const nsAString & aMozUserModify)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozUserSelect; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozUserSelect(nsAString & aMozUserSelect)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozUserSelect(const nsAString & aMozUserSelect)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString opacity; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOpacity(nsAString & aOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOpacity(const nsAString & aOpacity)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString outlineOffset; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOutlineOffset(nsAString & aOutlineOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOutlineOffset(const nsAString & aOutlineOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTextAlignLast; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTextAlignLast(nsAString & aMozTextAlignLast)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTextAlignLast(const nsAString & aMozTextAlignLast)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString overflowX; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOverflowX(nsAString & aOverflowX)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOverflowX(const nsAString & aOverflowX)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString overflowY; */
NS_IMETHODIMP nsDOMCSS2Properties::GetOverflowY(nsAString & aOverflowY)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetOverflowY(const nsAString & aOverflowY)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString imeMode; */
NS_IMETHODIMP nsDOMCSS2Properties::GetImeMode(nsAString & aImeMode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetImeMode(const nsAString & aImeMode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderEnd; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderEnd(nsAString & aMozBorderEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderEnd(const nsAString & aMozBorderEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderEndColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderEndColor(nsAString & aMozBorderEndColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderEndColor(const nsAString & aMozBorderEndColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderEndStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderEndStyle(nsAString & aMozBorderEndStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderEndStyle(const nsAString & aMozBorderEndStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderEndWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderEndWidth(nsAString & aMozBorderEndWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderEndWidth(const nsAString & aMozBorderEndWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderStart; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderStart(nsAString & aMozBorderStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderStart(const nsAString & aMozBorderStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderStartColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderStartColor(nsAString & aMozBorderStartColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderStartColor(const nsAString & aMozBorderStartColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderStartStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderStartStyle(nsAString & aMozBorderStartStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderStartStyle(const nsAString & aMozBorderStartStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderStartWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderStartWidth(nsAString & aMozBorderStartWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderStartWidth(const nsAString & aMozBorderStartWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozStackSizing; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozStackSizing(nsAString & aMozStackSizing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozStackSizing(const nsAString & aMozStackSizing)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderImage; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderImage(nsAString & aBorderImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderImage(const nsAString & aBorderImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumns; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumns(nsAString & aMozColumns)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumns(const nsAString & aMozColumns)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnRule; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnRule(nsAString & aMozColumnRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnRule(const nsAString & aMozColumnRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnRuleWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnRuleWidth(nsAString & aMozColumnRuleWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnRuleWidth(const nsAString & aMozColumnRuleWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnRuleStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnRuleStyle(nsAString & aMozColumnRuleStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnRuleStyle(const nsAString & aMozColumnRuleStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozColumnRuleColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozColumnRuleColor(nsAString & aMozColumnRuleColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozColumnRuleColor(const nsAString & aMozColumnRuleColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString wordBreak; */
NS_IMETHODIMP nsDOMCSS2Properties::GetWordBreak(nsAString & aWordBreak)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetWordBreak(const nsAString & aWordBreak)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString wordWrap; */
NS_IMETHODIMP nsDOMCSS2Properties::GetWordWrap(nsAString & aWordWrap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetWordWrap(const nsAString & aWordWrap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozHyphens; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozHyphens(nsAString & aMozHyphens)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozHyphens(const nsAString & aMozHyphens)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransform; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransform(nsAString & aMozTransform)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransform(const nsAString & aMozTransform)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransformOrigin; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransformOrigin(nsAString & aMozTransformOrigin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransformOrigin(const nsAString & aMozTransformOrigin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozPerspective; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozPerspective(nsAString & aMozPerspective)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozPerspective(const nsAString & aMozPerspective)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozPerspectiveOrigin; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozPerspectiveOrigin(nsAString & aMozPerspectiveOrigin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozPerspectiveOrigin(const nsAString & aMozPerspectiveOrigin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBackfaceVisibility; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBackfaceVisibility(nsAString & aMozBackfaceVisibility)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBackfaceVisibility(const nsAString & aMozBackfaceVisibility)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransformStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransformStyle(nsAString & aMozTransformStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransformStyle(const nsAString & aMozTransformStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozWindowShadow; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozWindowShadow(nsAString & aMozWindowShadow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozWindowShadow(const nsAString & aMozWindowShadow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString backgroundSize; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBackgroundSize(nsAString & aBackgroundSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBackgroundSize(const nsAString & aBackgroundSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTextBlink; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTextBlink(nsAString & aMozTextBlink)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTextBlink(const nsAString & aMozTextBlink)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTextDecorationColor; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTextDecorationColor(nsAString & aMozTextDecorationColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTextDecorationColor(const nsAString & aMozTextDecorationColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTextDecorationLine; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTextDecorationLine(nsAString & aMozTextDecorationLine)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTextDecorationLine(const nsAString & aMozTextDecorationLine)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTextDecorationStyle; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTextDecorationStyle(nsAString & aMozTextDecorationStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTextDecorationStyle(const nsAString & aMozTextDecorationStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransitionProperty; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransitionProperty(nsAString & aMozTransitionProperty)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransitionProperty(const nsAString & aMozTransitionProperty)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransitionDuration; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransitionDuration(nsAString & aMozTransitionDuration)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransitionDuration(const nsAString & aMozTransitionDuration)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransitionDelay; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransitionDelay(nsAString & aMozTransitionDelay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransitionDelay(const nsAString & aMozTransitionDelay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransitionTimingFunction; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransitionTimingFunction(nsAString & aMozTransitionTimingFunction)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransitionTimingFunction(const nsAString & aMozTransitionTimingFunction)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTransition; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTransition(nsAString & aMozTransition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTransition(const nsAString & aMozTransition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString pointerEvents; */
NS_IMETHODIMP nsDOMCSS2Properties::GetPointerEvents(nsAString & aPointerEvents)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetPointerEvents(const nsAString & aPointerEvents)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTabSize; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTabSize(nsAString & aMozTabSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTabSize(const nsAString & aMozTabSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString resize; */
NS_IMETHODIMP nsDOMCSS2Properties::GetResize(nsAString & aResize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetResize(const nsAString & aResize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationName; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationName(nsAString & aMozAnimationName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationName(const nsAString & aMozAnimationName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationDuration; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationDuration(nsAString & aMozAnimationDuration)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationDuration(const nsAString & aMozAnimationDuration)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationDelay; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationDelay(nsAString & aMozAnimationDelay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationDelay(const nsAString & aMozAnimationDelay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationTimingFunction; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationTimingFunction(nsAString & aMozAnimationTimingFunction)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationTimingFunction(const nsAString & aMozAnimationTimingFunction)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationDirection; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationDirection(nsAString & aMozAnimationDirection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationDirection(const nsAString & aMozAnimationDirection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationFillMode; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationFillMode(nsAString & aMozAnimationFillMode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationFillMode(const nsAString & aMozAnimationFillMode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationIterationCount; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationIterationCount(nsAString & aMozAnimationIterationCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationIterationCount(const nsAString & aMozAnimationIterationCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimationPlayState; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimationPlayState(nsAString & aMozAnimationPlayState)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimationPlayState(const nsAString & aMozAnimationPlayState)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozAnimation; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozAnimation(nsAString & aMozAnimation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozAnimation(const nsAString & aMozAnimation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozTextSizeAdjust; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozTextSizeAdjust(nsAString & aMozTextSizeAdjust)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozTextSizeAdjust(const nsAString & aMozTextSizeAdjust)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderImageSource; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderImageSource(nsAString & aBorderImageSource)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderImageSource(const nsAString & aBorderImageSource)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderImageSlice; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderImageSlice(nsAString & aBorderImageSlice)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderImageSlice(const nsAString & aBorderImageSlice)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderImageWidth; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderImageWidth(nsAString & aBorderImageWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderImageWidth(const nsAString & aBorderImageWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderImageOutset; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderImageOutset(nsAString & aBorderImageOutset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderImageOutset(const nsAString & aBorderImageOutset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString borderImageRepeat; */
NS_IMETHODIMP nsDOMCSS2Properties::GetBorderImageRepeat(nsAString & aBorderImageRepeat)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetBorderImageRepeat(const nsAString & aBorderImageRepeat)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString MozBorderImage; */
NS_IMETHODIMP nsDOMCSS2Properties::GetMozBorderImage(nsAString & aMozBorderImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCSS2Properties::SetMozBorderImage(const nsAString & aMozBorderImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMCSS2Properties_h__ */
| [
"haleokekahuna@gmail.com"
] | haleokekahuna@gmail.com |
140ff6081eaae39b21abd9185b3726e783e7274e | c70e3981d2dc8b1ff0bee54171d485c268ca1ab1 | /hw1/hw1.h | 5a60022edb3d3d953476f8ee439955fe965a8b7c | [] | no_license | fishmingyu/THUEEOS | ab725bf9888134da1ad28da37681271bd6dbec4b | b4b855f340b01453d0ac5a3441ccf00b6c5ce72b | refs/heads/main | 2023-06-25T11:01:16.072081 | 2021-06-14T12:15:33 | 2021-06-14T12:15:33 | 374,101,028 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | h | #include <cstring>
#include <ctime>
#include <iostream>
#include <fstream>
#include <pthread.h>
#include <queue>
#include <semaphore.h>
#include <unistd.h>
#include <vector>
struct Customer
{
pthread_t tid;
int id;
int counter;
int enter; // enter time
int begin; // serve begin time
int wait; // wait time during serve
Customer(int id, int enter, int wait) : id(id), enter(enter), wait(wait) {}
};
struct Counter
{
pthread_t tid; // thread id
int id; // counter id
Counter(int id) : id(id){};
};
std::vector<Customer> customer_all;
std::vector<Counter> counter_all;
std::queue<Customer> wait_queue; // customers queue
int customer_num;
int counter_num;
int finish_num = 0;
int finish = 0;
int finish_counter = 0;
time_t start_sim;
pthread_mutex_t mutex;
sem_t sem_customer;
sem_t sem_counter;
sem_t counter_exit;
void load_data(const char *file_in)
{
FILE *fp = fopen(file_in, "r");
char str[60];
int id, enter, wait;
const char s[2] = " ";
while (fgets(str, 60, fp))
{
char *token;
token = strtok(str, s);
id = atoi(token);
token = strtok(NULL, s);
enter = atoi(token);
token = strtok(NULL, s);
wait = atoi(token);
customer_all.push_back(Customer(id, enter, wait));
customer_num++;
}
fclose(fp);
} | [
"1661342068@qq.com"
] | 1661342068@qq.com |
c1c46ba8504318a2892e2e7e2747d51a3dfbb722 | 0ac4fb044735c1d8db0276834f4728980655be57 | /WrenCommon/Source/EventHandling/Events/SetTargetEvent.h | c1304677067ad96abcdf8f280ef5eb1f0df759bb | [] | no_license | ericbfriday/wren | 87d0bc21f090d46f3bce40b70a495c82615861df | 5010309a705b7016c546215da01cb5f66e8910dd | refs/heads/master | 2020-12-08T20:38:15.428673 | 2019-12-01T06:52:41 | 2019-12-01T06:52:41 | 233,088,842 | 1 | 0 | null | 2020-01-10T16:40:05 | 2020-01-10T16:40:04 | null | UTF-8 | C++ | false | false | 471 | h | #pragma once
#include <string>
#include "Event.h"
#include "Components/StatsComponent.h"
class SetTargetEvent : public Event
{
public:
SetTargetEvent(const int gameObjectId, const std::string& targetName, StatsComponent* statsComponent)
: Event(EventType::SetTarget),
gameObjectId{ gameObjectId },
targetName{ targetName },
statsComponent{ statsComponent }
{
}
const int gameObjectId;
const std::string targetName;
StatsComponent* statsComponent;
}; | [
"drew.kestell@gmail.com"
] | drew.kestell@gmail.com |
05a25b18fac0547d40c439b6aae115f70d17d7d2 | 7dd824a1d9224903b685c6768102fbca1d907316 | /annual/CJ14/C.cpp | 75e8afc6805a3a941f3a2e28feb2ced1aee10412 | [] | no_license | 1ridescent/ACM | c2a50f3619f9480e2bf4a7f690a12eb1574eb6b0 | 41f7b63655edd257eeab223bbaaf78d50960e789 | refs/heads/master | 2020-12-24T17:26:32.650345 | 2015-12-02T01:03:51 | 2015-12-02T01:03:51 | 20,510,103 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,078 | cpp | #include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
struct point
{
int x, y;
};
struct bdg
{
point ll, ur;
};
int dist(bdg a, bdg b)
{
int dx = min(abs(a.ll.x - b.ur.x), abs(a.ur.x - b.ll.x)) - 1;
int dy = min(abs(a.ll.y - b.ur.y), abs(a.ur.y - b.ll.y)) - 1;
//cout << "dx=" << dx << ", dy=" << dy << endl;
if(!(a.ll.x > b.ur.x || b.ll.x > a.ur.x)) // overlap x
{
//cout << "overlap x\n";
return dy;
}
if(!(a.ll.y > b.ur.y || b.ll.y > a.ur.y)) // overlap y
{
//cout << "overlap y\n";
return dx;
}
return max(dx, dy);
}
bdg bdgs[1010];
int G[1010][1010];
int D[1010];
bool visited[1010];
int dijkstra(int N, int s, int t)
{
memset(visited, 0, sizeof(visited));
for(int i = 1; i <= N; i++) D[i] = 123123123;
D[s] = 0;
while(true)
{
int best = 123123123, besti;
for(int i = 1; i <= N; i++)
if(!visited[i] && D[i] < best)
best = D[i], besti = i;
if(besti == t) return best;
visited[besti] = true;
for(int i = 1; i <= N; i++)
if(!visited[i])
D[i] = min(D[i], D[besti] + G[besti][i]);
}
}
int main2()
{
int W, H, B;
cin >> W >> H >> B;
for(int i = 1; i <= B; i++)
{
cin >> bdgs[i].ll.x >> bdgs[i].ll.y >> bdgs[i].ur.x >> bdgs[i].ur.y;
}
bdgs[B + 1].ll.x = -1, bdgs[B + 1].ll.y = 0, bdgs[B + 1].ur.x = -1, bdgs[B + 1].ur.y = H - 1;
bdgs[B + 2].ll.x = W, bdgs[B + 2].ll.y = 0, bdgs[B + 2].ur.x = W, bdgs[B + 2].ur.y = H - 1;
for(int i = 1; i <= B + 2; i++)
for(int j = 1; j <= B + 2; j++)
{
if(i != j)
{
//cout << i << ' ' << j << ' ' << dist(bdgs[i], bdgs[j]) << endl;
G[i][j] = dist(bdgs[i], bdgs[j]);
}
}
int N = B + 2;
/*for(int k = 1; k <= N; k++)
for(int i = 1; i <= N; i++)
for(int j = 1; j <= N; j++)
G[i][j] = min(G[i][j], G[i][k] + G[k][j]);*/
cout << dijkstra(N, B + 1, B + 2) << endl;
}
int main()
{
/*while(true)
{
bdg a, b;
cin >> a.ll.x >> a.ll.y >> a.ur.x >> a.ur.y >> b.ll.x >> b.ll.y >> b.ur.x >> b.ur.y;
cout << dist(a, b);
}*/
int T;
cin >> T;
for(int t = 1; t <= T; t++)
{
cout << "Case #" << t << ": ";
main2();
}
}
| [
"jasonmli02@gmail.com"
] | jasonmli02@gmail.com |
a571b1babaa0aa9ef6effff6253016a126bac7dd | 40c9df5f01ec6d9cfcbbc21f6d886dcc092b6f23 | /Wildcard_matching.cpp | cc321724d173631a2acdd172fe3d293288ef8bb9 | [] | no_license | ethanboyuan/LeetCode | aa5382023bca451febf36df5f96dad5e98d16105 | 9f22d72fc8a2c21147d93a6bad6931884e3dfa38 | refs/heads/master | 2016-09-10T01:12:29.414425 | 2014-11-01T10:34:03 | 2014-11-01T10:34:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,270 | cpp | #include <vector>
#include <iostream>
#include <string>
#include <stack>
#include <algorithm>
using namespace std;
class Solution {
public:
bool isMatch_Recursive(const char *s, const char *p) {
if(*p == '*'){
while(*p == '*') ++p;
if(*p == '\0') return true;
while(*s != '\0' && !isMatch_Recursive(s,p)) ++s;
return *s != '\0';
} else if(*p == '\0' || *s == '\0') return *p == *s;
else if(*p == *s || *p == '?') return isMatch_Recursive(++s,++p);
else return false;
}
bool isMatch(const char *s, const char *p) {
const char* star = NULL;
const char* ss = s;
while(*s){
if((*p == '?') || (*p == *s)) {
++s;++p;
continue;
}
if(*p == '*') {
star = p++;
ss = s;
continue;
}
if(star){
p = star + 1;
s = ++ss;
continue;
}
return false;
}
while (*p == '*') {++p;}
return !*p;
}
};
void print_res(Solution sol, const char* s, const char* p){
if(sol.isMatch(s,p))
cout << s << " " << p << " True" << endl;
else
cout << s << " " << p << " False" << endl;
}
int main(int argc, char* argv[]){
Solution sol;
print_res(sol, "aa", "a*");
return 0;
}
| [
"paul.boyuan@gmail.com"
] | paul.boyuan@gmail.com |
02aab4c4589ee26d2283940f2a95e947b8e36a7f | 29b6b38972a64f3a8336a9530445c603564cd159 | /BattleTank/Source/BattleTank/Projectile.cpp | 3d55ff70936f03398374e00b5cb015c9924d856a | [] | no_license | djidane535/BattleTank | 2bb3a25a2a0d868978b286316076714bd37e282b | ac9d52568962d64010ea017a40124da4aef9a228 | refs/heads/master | 2020-03-13T01:22:22.273490 | 2018-05-13T20:05:31 | 2018-05-13T20:05:31 | 130,902,622 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 959 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "Projectile.h"
#include "Runtime/Engine/Classes/GameFramework/ProjectileMovementComponent.h"
#include "Runtime/Engine/Classes/Engine/World.h"
// Sets default values
AProjectile::AProjectile()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
MovementComponent = CreateDefaultSubobject<UProjectileMovementComponent>(
FName("MovementComponent")
);
MovementComponent->bAutoActivate = false;
}
// Called when the game starts or when spawned
void AProjectile::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void AProjectile::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
void AProjectile::LaunchProjectile(float speed)
{
MovementComponent->SetVelocityInLocalSpace(speed * FVector::ForwardVector);
MovementComponent->Activate(true);
}
| [
"djidane535@gmail.com"
] | djidane535@gmail.com |
e580adb8b4abebea10bb13f71806911d79815e23 | 94e9e063763fee0c27e0bf6c3127a1e129384f8c | /cpp/arrayStuff/arrayStuff/main.cpp | 41e9bae103238b4a69a49b261881ea8a205234cc | [] | no_license | frenchbread/learning | 5b66b5a735c51124b6216e6055eec9758d96c00c | a88e62e2feb583895c5b1b8860fcd8f0b8456146 | refs/heads/master | 2021-01-18T09:51:04.585707 | 2017-06-17T12:01:21 | 2017-06-17T12:01:21 | 27,572,299 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | cpp | //
// main.cpp
// arrayStuff
//
// Created by Damir Mustafin on 19/11/15.
// Copyright (c) 2015 Damir Mustafin. All rights reserved.
//
#include "PFArrayD.h"
#include "PFArrayDBak.h"
#include <cstdlib>
#include <cstring>
#include <iostream>
using namespace std;
void testPFArrayDBak();
int main() {
cout << "This program tests the class PFArrayDBak.\n";
char ans;
do {
testPFArrayDBak();
cout << "Test again? (y/n) ";
cin >> ans;
} while( (ans == 'y') || (ans == 'Y') );
return 0;
}
// Conducts one test for the class PFArrayDBak
void testPFArrayDBak() {
int cap;
cout << "Enter capacity of the supar array: ";
cin >> cap;
PFArrayDBak tmp(cap);
cout << "Enter up to " << cap << " non-negative numbers.\n";
cout << "Place a negative number at the end.\n";
double next;
cin >> next;
while ( (next >= 0) && (!tmp.full()) ) {
tmp.addElements(next);
cin >> next;
}
if (next >= 0) {
cout << "Could not read all numbers.\n";
while(next >= 0)
cin >> next;
}
int count = tmp.getNumbUsed();
cout << "The following " << count << " numbers " << "are read and stored:\n";
for (int index=0; index < count; index++)
cout << tmp[index] << " ";
cout << endl;
cout << "Now backing up the array ...\n";
tmp.backup();
cout << "Now emptying the array ...\n";
tmp.emptyArray();
cout << tmp.getNumbUsed() << " numbers are now stored in the array.\n";
cout<< "Now restoring the array ...\n";
tmp.restore();
count = tmp.getNumbUsed();
cout << "The following " << count << " numbers" << "are now stored:\n";
for (int index=0; index < count; index++)
cout << tmp[index] << " ";
cout << endl;
} | [
"frenchthebread@gmail.com"
] | frenchthebread@gmail.com |
b460c2afc4c86dd1a1e4d370243663001b952a2f | a7df494766b0478e3ab08a295838ffd3da5720ce | /Sartaj2nd/codes-1nd2nd/Data Structures, Algorithms, & Applications in C++, 2nd Edition/timeMatrix.cpp | 8e819427d372681c2aa03fe0e6658ff3d9dbd3b1 | [] | no_license | fwar34/DataStruct | 2e11a7720c3fab48d97dc591efb69d2772282814 | 37b9a51afd81d4f52ecea0f6ca467a3a1e8fd6da | refs/heads/master | 2021-01-23T01:52:26.696585 | 2019-01-04T09:52:58 | 2019-01-04T09:52:58 | 85,944,098 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 906 | cpp | // run time for add, multiply and transpose using class matrix
#include <iostream>
#include<time.h>
#include "matrix.h"
using namespace std;
#pragma optimize("t", on)
int main()
{
int n = 500; // matrix size
matrix<int> a(n,n), b(n,n), c(n,n);
int m = 500; // number of repetitions
// initialize the matrices a and b
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
{
if (i >= j && i - j < 4)
a(i, j) = 3;
else
a(i, j) = 0;
if (i <= j && j - i < 2)
b(i, j) = 5;
else
b(i, j) = 0;
}
long startTime = clock();
for (int i = 1; i <= m; i++)
c = a + b;
double elapsedTime = ((double) (clock() - startTime)) / m;
cout << "Add time for n = " << n << " is "
<< elapsedTime << " milliseconds" << endl;
return 0;
}
| [
"fwar34@126.com"
] | fwar34@126.com |
54851b5a51dd5ab1ada430f580473d4894b09ae5 | 0dce0043384d823586da27473b4b9e206853257c | /nn_cxx_test.cc | a3ce04059f022049a6a9bd7175b3d058bf541ec9 | [] | no_license | lichao2014/nn_cxx | 6b077207a4473ea419be85fd01687bca042da02c | eb0e67eb975d9a4d30be8b21c5f3919759bc14e9 | refs/heads/master | 2020-03-26T18:55:23.209651 | 2018-08-19T11:14:53 | 2018-08-19T11:14:53 | 145,238,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,439 | cc | #include "nn_cxx.h"
#include "gtest/gtest.h"
#include "pipeline.h"
#include "reqrep.h"
using namespace nn_cxx;
class SocketTest : public testing::Test {
public:
void SetUp() override {
socket_.reset(new Socket(AF::SP, NN_PUSH));
}
void TearDown() override {
socket_.reset();
}
void TestPipeLine(const char *addr, const std::string& from) {
auto a = std::make_unique<Socket>(AF::SP, NN_PUSH);
auto b = std::make_unique<Socket>(AF::SP, NN_PULL);
b->Bind(addr);
a->Connect(addr);
int ret = a->Send(from.data(), from.length());
ASSERT_EQ(ret, from.length());
std::string to(from.length(), '\0');
ret = b->Recv(to.data(), to.length());
ASSERT_EQ(ret, to.length());
ASSERT_TRUE(std::equal(from.begin(), from.end(), to.begin(), to.end()));
}
protected:
std::unique_ptr<Socket> socket_;
};
TEST_F(SocketTest, Bind) {
std::error_code ec;
socket_->Bind("a", ec);
ASSERT_TRUE(ec);
ec.clear();
socket_->Bind("inproc://a", ec);
ASSERT_FALSE(ec);
ec.clear();
socket_->Bind("inproc://a", ec);
ASSERT_TRUE(ec);
ec.clear();
socket_->Bind("ipc://a", ec);
ASSERT_FALSE(ec);
ec.clear();
socket_->Bind("tcp://127.0.0.1:90", ec);
ASSERT_FALSE(ec);
ec.clear();
socket_->Bind("ws://127.0.0.1:91", ec);
ASSERT_FALSE(ec);
}
TEST_F(SocketTest, Connect) {
std::error_code ec;
socket_->Connect("a", ec);
ASSERT_TRUE(ec);
ec.clear();
socket_->Connect("inproc://a", ec);
ASSERT_FALSE(ec);
ec.clear();
socket_->Connect("inproc://a", ec);
ASSERT_FALSE(ec);
}
TEST_F(SocketTest, INPROCSendRecv) {
TestPipeLine("inproc://a", "123");
TestPipeLine("inproc://b", "123123123");
}
TEST_F(SocketTest, IPCSendRecv) {
TestPipeLine("ipc://a", "123");
TestPipeLine("ipc://b", "123123123");
}
TEST_F(SocketTest, TCPSendRecv) {
TestPipeLine("tcp://127.0.0.1:90", "123");
TestPipeLine("tcp://127.0.0.1:91", "abcdef");
}
TEST_F(SocketTest, WSSendRecv) {
TestPipeLine("ws://127.0.0.1:90", "123");
TestPipeLine("ws://127.0.0.1:91", "123123123");
}
class ThreadPoller : public Poller {
public:
void Start() {
closed_ = false;
th_ = std::thread([this] {
while (!closed_ && (Poll(100) >= 0));
});
}
void Stop() {
closed_ = true;
th_.join();
}
private:
std::thread th_;
std::atomic_bool closed_ = false;
};
class PollerTest : public testing::Test {
public:
void SetUp() override {
poller_.reset(new ThreadPoller);
poller_->Start();
}
void TearDown() override {
poller_->Stop();
}
void TestReqRep(const char *addr, int count) {
auto rep = std::make_shared <Socket>(AF::SP, NN_REP);
ASSERT_TRUE(rep);
rep->Bind(addr);
auto req = std::make_shared <Socket>(AF::SP, NN_REQ);
ASSERT_TRUE(req);
req->Connect(addr);
poller_->AddSocket(rep->fd(), [=] {
Msg msg;
rep->Recv(msg);
if (msg.size() > 0) {
rep->Send(msg);
}
}, nullptr);
char buf1[64];
char buf2[64];
for (int i = 0; i < count; ++i) {
snprintf(buf1, 64, "%d", i);
int ret = req->Send(buf1, 64);
ASSERT_EQ(ret, 64);
ret = req->Recv(buf2, 64);
ASSERT_EQ(ret, 64);
ASSERT_TRUE(std::equal(buf1, buf1 + 64, buf2, buf2 + 64));
}
poller_->DelSocket(rep->fd(), [rep]() {
rep->Close();
});
}
protected:
std::shared_ptr<ThreadPoller> poller_;
};
TEST_F(PollerTest, INPROCReqRep) {
TestReqRep("inproc://a", 100);
TestReqRep("inproc://bb", 400);
TestReqRep("inproc://ccc", 1000);
}
TEST_F(PollerTest, IPCReqRep) {
TestReqRep("ipc://a", 100);
TestReqRep("ipc://bb", 400);
TestReqRep("ipc://ccc", 1000);
}
TEST_F(PollerTest, TCPReqRep) {
TestReqRep("tcp://127.0.0.1:90", 100);
TestReqRep("tcp://127.0.0.1:92", 400);
TestReqRep("tcp://127.0.0.1:93", 1000);
}
TEST_F(PollerTest, WSReqRep) {
TestReqRep("ws://127.0.0.1:94", 100);
TestReqRep("ws://127.0.0.1:95", 400);
TestReqRep("ws://127.0.0.1:96", 1000);
}
int main(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
} | [
"240446892@qq.com"
] | 240446892@qq.com |
7e203418a8cb895604cf8303d50346a0774a75d7 | f977b4a1c94b6dddd01f57f8297cb04cc87c5a10 | /src/core/layers/poolinglayer.h | 2ebc1d4db8aad6e6994abb6fbcaa2bd4c770f1e1 | [] | no_license | JanHalozan/ConvolutionalNeuralNetwork | f1582dfb30c24752a9a0e57183df9304bca9b6f2 | e59da46c49c2bdf4ea7d8bf3fef7c7643d1344b5 | refs/heads/master | 2020-04-16T23:34:01.382438 | 2017-04-19T11:09:20 | 2017-04-19T11:09:20 | 48,693,390 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 789 | h | //
// poolinglayer.h
// ConvolutionalNeuralNetwork
//
// Created by Jan Haložan on 29/12/15.
// Copyright © 2015 JanHalozan. All rights reserved.
//
#ifndef poolinglayer_h
#define poolinglayer_h
#include "layer.h"
namespace sf
{
class PoolingLayer;
}
class sf::PoolingLayer : public sf::Layer
{
private:
unsigned short stride;
//Holds indexes that were selected during a forward pass so that we can backprop correctly
unsigned char *selectedFilterIndexes;
double *gradients;
public:
PoolingLayer();
~PoolingLayer();
void calculateOutput() override;
void backprop(sf::Layer *previousLayer, sf::Layer *nextLayer) override;
double getGradientOfNeuron(ulong x, ulong y, ulong z) const override;
};
#endif /* poolinglayer_h */
| [
"j.halozan@gmail.com"
] | j.halozan@gmail.com |
d8f430bcec9b669cee943f90c051e938d032d5d8 | 0ba81d0995a4bc6571cee6cb5cc4d87b80a3b7fd | /aten/src/ATen/native/cuda/GridSampler.cpp | c98ab7b2d31e99d0808d29e3baf200c9617af885 | [
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"BSL-1.0",
"Apache-2.0"
] | permissive | gml16/pytorch | 07abe1b0bca9923840069e460c68005f022af6a4 | fad60484572c490384c107cf625d484e34dc9bcf | refs/heads/master | 2022-05-06T03:07:11.825083 | 2022-04-01T15:10:37 | 2022-04-01T15:10:37 | 251,362,041 | 0 | 0 | NOASSERTION | 2020-03-30T16:22:49 | 2020-03-30T16:22:48 | null | UTF-8 | C++ | false | false | 2,895 | cpp | #define TORCH_ASSERT_ONLY_METHOD_OPERATORS
#include <ATen/native/cuda/GridSampler.h>
#ifndef AT_PER_OPERATOR_HEADERS
#include <ATen/Functions.h>
#include <ATen/NativeFunctions.h>
#else
#include <ATen/ops/empty.h>
#include <ATen/ops/empty_like.h>
#include <ATen/ops/grid_sampler_2d_backward_native.h>
#include <ATen/ops/grid_sampler_2d_native.h>
#include <ATen/ops/grid_sampler_3d_backward_native.h>
#include <ATen/ops/grid_sampler_3d_native.h>
#include <ATen/ops/zeros_like.h>
#endif
namespace at {
namespace native {
Tensor grid_sampler_2d_cuda(const Tensor& input, const Tensor& grid,
int64_t interpolation_mode, int64_t padding_mode,
bool align_corners) {
auto in_size = input.sizes();
auto grid_size = grid.sizes();
auto output = at::empty(
{in_size[0], in_size[1], grid_size[1], grid_size[2]}, input.options());
launch_grid_sampler_2d_forward_kernel(
output, input, grid, interpolation_mode, padding_mode, align_corners);
return output;
}
Tensor grid_sampler_3d_cuda(const Tensor& input, const Tensor& grid,
int64_t interpolation_mode, int64_t padding_mode,
bool align_corners) {
auto in_size = input.sizes();
auto grid_size = grid.sizes();
auto output = at::empty(
{in_size[0], in_size[1], grid_size[1], grid_size[2], grid_size[3]},
input.options());
launch_grid_sampler_3d_forward_kernel(
output, input, grid, interpolation_mode, padding_mode, align_corners);
return output;
}
std::tuple<Tensor, Tensor>
grid_sampler_2d_backward_cuda(const Tensor& grad_output, const Tensor& input,
const Tensor& grid, int64_t interpolation_mode, int64_t padding_mode,
bool align_corners, std::array<bool, 2> output_mask) {
Tensor grad_input;
if (output_mask[0]) {
grad_input = at::zeros_like(input, LEGACY_CONTIGUOUS_MEMORY_FORMAT);
}
auto grad_grid = at::empty_like(grid, LEGACY_CONTIGUOUS_MEMORY_FORMAT);
launch_grid_sampler_2d_backward_kernel(
grad_input, grad_grid, grad_output, input,
grid, interpolation_mode, padding_mode, align_corners, output_mask);
return std::make_tuple(grad_input, grad_grid);
}
std::tuple<Tensor, Tensor>
grid_sampler_3d_backward_cuda(const Tensor& grad_output, const Tensor& input,
const Tensor& grid, int64_t interpolation_mode, int64_t padding_mode,
bool align_corners) {
auto grad_input = at::zeros_like(input, LEGACY_CONTIGUOUS_MEMORY_FORMAT);
auto grad_grid = at::empty_like(grid, LEGACY_CONTIGUOUS_MEMORY_FORMAT);
launch_grid_sampler_3d_backward_kernel(
grad_input, grad_grid, grad_output, input,
grid, interpolation_mode, padding_mode, align_corners);
return std::make_tuple(grad_input, grad_grid);
}
}} // namespace at::native
| [
"pytorchmergebot@users.noreply.github.com"
] | pytorchmergebot@users.noreply.github.com |
723ad46b6898ab09aeaa34230d74b45a95c6c94a | fd28c774c3d549d4fec899a213064c5f5a966eb9 | /QtGuiApplication/MyViewer.h | 0415913c6f2ad6642d2687ba4777e7f7e5aae94b | [] | no_license | Maxim-Doronin/CGAL | b01692f4f650a1ee21a5bb756d5e178cfed9c6f2 | fbca96d2ef8224c48e279217ac9d202a17a57be4 | refs/heads/master | 2021-08-28T00:50:17.001633 | 2017-12-09T10:19:17 | 2017-12-09T10:19:17 | 113,611,784 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,290 | h | #pragma once
#include <vector>
#include <QGLViewer/qglviewer.h>
#include <QMessageBox>
#include <QMouseEvent>
#include "BSpline.h"
#include "typedefs.h"
class MyViewer : public QGLViewer {
public:
MyViewer(QWidget* parent);
Points3 points;
bool isRemovePointMode = false;
bool isMovePointMode = false;
bool isSpline2Shown = false;
bool isSpline3Shown = false;
void removeAllPoints();
void createCubeChain();
void createFilledCube();
void createFilledSphere();
void createSphereEps();
void buildBSpline3();
void buildBSpline2();
protected:
virtual void draw();
virtual void init();
virtual void postSelection(const QPoint &point);
std::vector<int> MyViewer::getSelectedPointIds(const QPoint &point);
virtual void mousePressEvent(QMouseEvent *event);
virtual void mouseMoveEvent(QMouseEvent *event);
virtual void mouseReleaseEvent(QMouseEvent *event);
int movePointIndex_;
QPoint* oldMousePosition_;
Point_3 getPointInSphere();
const float CUBE_BOUND_SIZE = 1;
const int CUBE_DIM_COUNT = 10;
const int CUBE_POINT_COUNT = 500;
const float SPHERE_RADIUS = 0.5;
const int SPHERE_POINT_COUNT = 500;
const float SPHERE_EPS = 0.05;
}; | [
"doronin.maxim.unn@gmail.com"
] | doronin.maxim.unn@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.