Changeset 153 for trunk/c2s/authreg.c

Show
Ignore:
Timestamp:
09/04/07 14:07:57 (20 months ago)
Author:
smoku
Message:

Integrated full SQLite3 support for SM by Reinhard Max. Closes #43

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/c2s/authreg.c

    r144 r153  
    5050extern int ar_anon_init(authreg_t); 
    5151#endif 
     52#ifdef STORAGE_SQLITE 
     53extern int ar_sqlite_init(authreg_t); 
     54#endif 
    5255 
    5356char *module_names[] = { 
     
    7376    "anon", 
    7477#endif 
     78#ifdef STORAGE_SQLITE 
     79    "sqlite", 
     80#endif 
    7581    NULL 
    7682}; 
     
    97103#ifdef STORAGE_ANON 
    98104    ar_anon_init, 
     105#endif 
     106#ifdef STORAGE_SQLITE 
     107    ar_sqlite_init, 
    99108#endif 
    100109    NULL