#ifndef	TYPES_H
#define	TYPES_H

#include "libxl.h"
#include "types.h"
#include <string.h>
#include <locale.h>
#include <wchar.h>

typedef struct
{
	BookHandle handle;
} BookType;

typedef struct
{
	SheetHandle handle;
} SheetType;

typedef struct
{
	FormatHandle handle;
} FormatType;

typedef struct
{
	FontHandle handle;
} FontType;

typedef struct
{
	RichStringHandle handle;
} RichStringType;

typedef struct
{
	AutoFilterHandle handle;
} AutofilterType;

typedef struct
{
	FilterColumnHandle handle;
} FilterColumnType;

typedef struct
{
	FormControlHandle handle;
} FormControlType;

#endif