Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 282898 | Differences between
and this patch

Collapse All | Expand All

(-)driver/mysql_driver.cpp (+8 lines)
Lines 22-27 Link Here
22
	return sql::mysql::MySQL_Driver::Instance();
22
	return sql::mysql::MySQL_Driver::Instance();
23
}
23
}
24
24
25
extern "C"
26
{
27
    void* sql_mysql_get_mysql_driver_instance()
28
    {
29
        return sql::mysql::get_mysql_driver_instance();
30
    }
31
}
32
25
namespace sql
33
namespace sql
26
{
34
{
27
namespace mysql
35
namespace mysql
(-)driver/mysql_driver.h (+3 lines)
Lines 56-61 Link Here
56
} /* namespace mysql */
56
} /* namespace mysql */
57
} /* namespace sql */
57
} /* namespace sql */
58
58
59
// C-wrapper around sql::mysql::get_mysql_driver_instance, to be able to retrieve the symbol at runtime
60
extern "C" void* sql_mysql_get_mysql_driver_instance();
61
59
#endif // _MYSQL_DRIVER_H_
62
#endif // _MYSQL_DRIVER_H_
60
63
61
/*
64
/*

Return to bug 282898