Mini-XML: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 6: | Line 6: | ||
| maintainer = | | maintainer = | ||
| contributor = | | contributor = | ||
| portedby = | | portedby = | ||
| version = 2. | | version = 2.6 | ||
| licence = GNU LGPL | | licence = GNU LGPL | ||
| download = | | download = https://sourceforge.net/projects/devkitpro/files/portlibs | ||
| website = http://www.minixml.org/ | | website = http://www.minixml.org/ | ||
| discussion = | | discussion = | ||
| source = | | source = https://sourceforge.net/projects/devkitpro/files/portlibs | ||
}} | }} | ||
'''Mini-XML''' is a library ported for Wii to load and save XML config files in your GameCube/Wii apps. | |||
== Install == | |||
* Copy files to $(PORTLIBS) | |||
== Usage == | |||
==Usage== | |||
You need to use [[libfat]] to make libmxml work. | You need to use [[libfat]] to make libmxml work. | ||
Line 39: | Line 27: | ||
#include "mxml.h" | #include "mxml.h" | ||
</source> | </source> | ||
Add the extra libraries to link with the project in your Makefile: | Add the extra libraries to link with the project in your Makefile: | ||
Line 46: | Line 32: | ||
LIBS := -lfat -lmxml ... | LIBS := -lfat -lmxml ... | ||
==Documentation== | == Documentation == | ||
Tons of doc at http://www.minixml.org | Tons of doc at http://www.minixml.org | ||
[[Category:Libraries]] | [[Category:Libraries]] |
Latest revision as of 21:15, 4 November 2009
Mini-XML | |
General | |
---|---|
Author(s) | Matthew Sweet |
Type | Ported Libraries |
Version | 2.6 |
Licence | GNU LGPL |
Links | |
Download | |
Website | |
Source |
Mini-XML is a library ported for Wii to load and save XML config files in your GameCube/Wii apps.
Install
- Copy files to $(PORTLIBS)
Usage
You need to use libfat to make libmxml work.
Include these for mxml:
#include <fat.h>
#include "mxml.h"
Add the extra libraries to link with the project in your Makefile:
LIBS := -lfat -lmxml ...
Documentation
Tons of doc at http://www.minixml.org