-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Imported stripped Allegro source, link in MSVS project
AGS still uses following from Allegro lib: * bitmaps, drawing, blending and palette functions; * functions for loading/saving bitmaps and pcx; * playing FLIC; * PACKFILE (used in limited situations, e.g. FLIC); * fixed math functions; * file path and find-file functions; * unicode functions;
- Loading branch information
1 parent
92f7146
commit ae8b736
Showing
85 changed files
with
22,937 additions
and
26 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* ______ ___ ___ | ||
* /\ _ \ /\_ \ /\_ \ | ||
* \ \ \L\ \\//\ \ \//\ \ __ __ _ __ ___ | ||
* \ \ __ \ \ \ \ \ \ \ /'__`\ /'_ `\/\`'__\/ __`\ | ||
* \ \ \/\ \ \_\ \_ \_\ \_/\ __//\ \L\ \ \ \//\ \L\ \ | ||
* \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/ | ||
* \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/ | ||
* /\____/ | ||
* \_/__/ | ||
* | ||
* Main header file for the entire Allegro library. | ||
* (separate modules can be included from the allegro/ directory) | ||
* | ||
* By Shawn Hargreaves. | ||
* | ||
* Vincent Penquerc'h split the original allegro.h into separate headers. | ||
* | ||
* See readme.txt for copyright information. | ||
*/ | ||
|
||
|
||
#ifndef ALLEGRO_H | ||
#define ALLEGRO_H | ||
|
||
#include "allegro/base.h" | ||
|
||
#include "allegro/system.h" | ||
#include "allegro/debug.h" | ||
|
||
#include "allegro/unicode.h" | ||
|
||
#include "allegro/palette.h" | ||
#include "allegro/gfx.h" | ||
#include "allegro/color.h" | ||
#include "allegro/draw.h" | ||
|
||
#include "allegro/fli.h" | ||
|
||
#include "allegro/file.h" | ||
#include "allegro/datafile.h" | ||
|
||
#include "allegro/fixed.h" | ||
#include "allegro/fmaths.h" | ||
|
||
#ifdef ALLEGRO_EXTRA_HEADER | ||
#include ALLEGRO_EXTRA_HEADER | ||
#endif | ||
|
||
#endif /* ifndef ALLEGRO_H */ | ||
|
||
|
Oops, something went wrong.