php-src/ext/session/modules.c
1999-09-17 05:40:59 +00:00

16 lines
253 B
C

/*
* To add a PHP session module, #include its header file and
* add a ps_xxx_ptr in the struct...
*/
#include "mod_files.h"
#include "mod_mm.h"
#include "mod_user.h"
static ps_module *ps_modules[] = {
ps_files_ptr,
ps_mm_ptr,
ps_user_ptr,
};