diff options
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/m_weather.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/ExternalAPI/m_weather.h b/plugins/ExternalAPI/m_weather.h index dc50d970e8..eb9e89f84d 100644 --- a/plugins/ExternalAPI/m_weather.h +++ b/plugins/ExternalAPI/m_weather.h @@ -23,7 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. //============ WEATHER CONDITION STRUCT ============
// weather conditions (added in v0.1.2.0)
-typedef struct
+struct WEATHERINFO
{
MCONTACT hContact;
TCHAR id[128];
@@ -42,11 +42,7 @@ typedef struct TCHAR vis[16];
TCHAR sunrise[32];
TCHAR sunset[32];
-// are the other ones that important!?
- WORD status;
-} WEATHERINFO;
-
-
+};
// =============== WEATHER SERVICES ================
|