Show
Ignore:
Timestamp:
11/18/09 04:40:30 (3 years ago)
Author:
mercyful
Message:

$ Build 438/Sql Alpha
+ Removed all SQLite Code and References.
+ Updated the SQL Wrapper, and all Automake files to now link in and also Detect MySql? in the configure scripts.
+ Added detection for OpenSSL, not in use yet, but will add encryption for passwords.

and anything else of intertest once everything is moved over to the SQL Backend.

This is still an interm develop update release, the MySql? backend
is still a WIP, and the Husky SMAPI Library will be removed shortly.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/sql_StderrLog.h

    r127 r129  
    66 
    77/* 
    8 Copyright (C) 2004,2005,2006  Anders Hedstrom 
     8Copyright (C) 2004  Anders Hedstrom 
    99 
    1010This program is made available under the terms of the GNU GPL. 
     
    3030Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
    3131*/ 
    32 #ifndef _STDERRLOG_H_SQLITE 
    33 #define _STDERRLOG_H_SQLITE 
     32#ifndef _STDERRLOG_H 
     33#define _STDERRLOG_H 
    3434 
    35  
    36 #ifdef SQLITEW_NAMESPACE 
    37 namespace SQLITEW_NAMESPACE { 
     35#ifdef MYSQLW_NAMESPACE 
     36namespace MYSQLW_NAMESPACE { 
    3837#endif 
    3938 
     39#include "sql_Database.h" 
     40#include "sql_IError.h" 
    4041 
    41 /** Log class writing to standard error. */ 
     42/** Log class writing to stderr. */ 
    4243class StderrLog : public IError 
    4344{ 
     
    5051 
    5152 
    52 #ifdef SQLITEW_NAMESPACE 
    53 } // namespace SQLITEW_NAMESPACE { 
     53#ifdef MYSQLW_NAMESPACE 
     54} // namespace MYSQLW_NAMESPACE { 
    5455#endif 
    5556 
     57 
    5658#endif // _STDERRLOG_H