summaryrefslogtreecommitdiff
path: root/ext/session/modules.c
blob: f866a42333f794fbd1c6643d087e9a8345753deb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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,
};