~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/win_delay_loader.cc

Merging the latest from Jay's replication branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
The following is defined in ha_innodb.cc. It is used for copying the
77
77
system variables from the builtin innodb plugin to the dynamic plugin.
78
78
*/
79
 
extern struct drizzled_plugin_manifest* builtin_innobase_plugin_ptr;
 
79
extern drizzled::plugin::Manifest*      builtin_innobase_plugin_ptr;
80
80
 
81
81
/***********************************************************************
82
82
The preffered load-address defined in PE (portable executable format).*/
644
644
                 wdl_binlog_format_names, char*);
645
645
 
646
646
        /* It is fine if builtin_innobase_plugin is not available. */
647
 
        builtin_innobase_plugin_ptr = (struct drizzled_plugin_manifest*)
 
647
        builtin_innobase_plugin_ptr = (drizzled::plugin::Manifest*)
648
648
                wdl_get_varaddr_from_map(
649
649
                        hmod,
650
650
                        "?builtin_innobase_plugin@@3PAUdrizzled_plugin_manifest@@A");