summaryrefslogtreecommitdiff
path: root/ext/session/modules.c
blob: 86613696bb5dadec96fa9804808c3b37309ebf96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * 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"

static ps_module *ps_modules[] = {
	ps_files_ptr,
	ps_mm_ptr,
};