toxcore/messenger/XML_Parser
2013-06-30 22:03:16 -07:00
..
obj Moved XML parser to another folder. 2013-06-30 21:35:40 -04:00
src Moved XML parser to another folder. 2013-06-30 21:35:40 -04:00
asm-xml.h Moved XML parser to another folder. 2013-06-30 21:35:40 -04:00
friends.xml Moved XML parser to another folder. 2013-06-30 21:35:40 -04:00
main.c Moved XML parser to another folder. 2013-06-30 21:35:40 -04:00
README Update README 2013-06-30 22:03:16 -07:00

======================================================================================================
===================Adding the Library to The Project==================================================
======================================================================================================

1. Include the "asm-xml.h" file in your source file.

2. Link your project with the AsmXml object file. (see below)
 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
Here are some tips to use it with various configurations:
  MSVC 6: Add the \ms-coff\asm-xml.obj file to your project.
  MinGW: Link your project with \ms-coff\asm-xml.obj.
  Linux: Link your project with /elf/asm-xml.o.
  Mac OS X: Link your project with /mach-o/asm-xml.o.
 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
======================================================================================================