toxcore/messenger/XML_Parser
2013-06-30 22:43:00 -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_parser.c Update and rename main.c to friends_parser.c 2013-06-30 22:41:42 -07:00
friends.xml Moved XML parser to another folder. 2013-06-30 21:35:40 -04:00
groups_parser Added Group Parser 2013-06-30 22:43:00 -07:00
README Update README 2013-06-30 22:04:43 -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.
 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
=======================================================================================================