2010-05-21 03:13:36 +02:00
|
|
|
#define LAGI_PRE
|
|
|
|
|
2010-05-21 03:19:40 +02:00
|
|
|
// Common C
|
2010-05-21 03:13:36 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2010-05-21 03:19:40 +02:00
|
|
|
// Windows C
|
2010-05-21 05:07:48 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2010-05-21 03:19:40 +02:00
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Common C++
|
2010-05-21 03:13:36 +02:00
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <map>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
|
2010-05-21 03:19:40 +02:00
|
|
|
// Cajun
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "libaegisub/cajun/elements.h"
|
|
|
|
#include "libaegisub/cajun/reader.h"
|
|
|
|
#include "libaegisub/cajun/visitor.h"
|
|
|
|
#include "libaegisub/cajun/writer.h"
|
|
|
|
|