dect
/
asterisk
Archived
13
0
Fork 0

Fix cdr.h ordering issue (bug #4401)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5789 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2005-05-30 14:30:47 +00:00
parent 8a1c9ce20c
commit 9e7424a348
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,6 @@
#ifndef _CDR_H
#define _CDR_H
#include "asterisk/channel.h"
#include <sys/time.h>
#define AST_CDR_FLAG_KEEP_VARS (1 << 0)
#define AST_CDR_FLAG_POSTED (1 << 1)
@ -37,6 +36,9 @@
#define AST_MAX_USER_FIELD 256
#define AST_MAX_ACCOUNT_CODE 20
/* Include channel.h after relevant declarations it will need */
#include "asterisk/channel.h"
struct ast_channel;
AST_LIST_HEAD(varshead,ast_var_t);