diff options
| author | Quietust | 2012-02-13 22:54:08 -0600 |
|---|---|---|
| committer | Quietust | 2012-02-13 22:54:08 -0600 |
| commit | 091bf62aa8dc4f27ab48e2072be65e9b6741e304 (patch) | |
| tree | 27da5ac1686f292dc0a172b3edcbe722b076f249 /plugins/tiletypes.cpp | |
| parent | 2fd2e3dce2318789f68d2da30a94b344cf0c1bc2 (diff) | |
| download | dfhack-091bf62aa8dc4f27ab48e2072be65e9b6741e304.tar.gz dfhack-091bf62aa8dc4f27ab48e2072be65e9b6741e304.tar.bz2 dfhack-091bf62aa8dc4f27ab48e2072be65e9b6741e304.tar.xz | |
DFhackCExport is only needed on the plugin_* functions
Diffstat (limited to 'plugins/tiletypes.cpp')
| -rw-r--r-- | plugins/tiletypes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/tiletypes.cpp b/plugins/tiletypes.cpp index 2c056e31..3d18cc77 100644 --- a/plugins/tiletypes.cpp +++ b/plugins/tiletypes.cpp @@ -633,7 +633,7 @@ public: CommandHistory tiletypes_hist; -DFhackCExport command_result df_tiletypes (Core * c, vector <string> & parameters); +command_result df_tiletypes (Core * c, vector <string> & parameters); DFhackCExport const char * plugin_name ( void ) { @@ -654,7 +654,7 @@ DFhackCExport command_result plugin_shutdown ( Core * c ) return CR_OK; } -DFhackCExport command_result df_tiletypes (Core * c, vector <string> & parameters) +command_result df_tiletypes (Core * c, vector <string> & parameters) { uint32_t x_max = 0, y_max = 0, z_max = 0; int32_t x = 0, y = 0, z = 0; |
