www.pudn.com > 通讯录管理程序源代码(c).rar > mdbfield.h


#ifndef MDBFIELD_H_ 
#define MDBFIELD_H_ 
 
#include "StdAfx.h" 
#define  MAX_LEN 12 
typedef struct tagDBFields 
{ 
	char *name; 
	char *label; 
	char m_name[60]; 
	int  len; 
}DBFields; 
 
DBFields dbFields[MAX_LEN]= 
{ "name"        ,     "姓名","",50, 
  "telphone"    ,     "电话","",120, 
  "pager"       ,     "呼机","",120, 
  "mobile"      ,     "手机","",120, 
  "email"       ,     "email","",200, 
  "age"         ,     "年龄","",40, 
  "sex"         ,     "性别","",40, 
  "company"     ,     "公司","",200, 
  "address"     ,     "地址","",200, 
  "position"    ,     "职称","",50, 
  "friendship"  ,     "关系","",80, 
  "introduction",     "简介","",200 
}; 
#endif