Function definitions

Previous: Include file (and API definition) ] [ Top:  ] [ Next: Working with sessions ]

So. As mentioned above, the context handling functionality falls into three areas: session handling, configuration management, and adaptor management. All three of these areas are now going to be munged into this single object file, because they're really pretty interdependent anyway. Makes things neat.
 
#include <stdarg.h>
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include "wftk_session.h"
#include "time.h"
#include "stdarg.h"
#include "wftk_internals.h"
#include "xmlapi.h"
#include "xmlobj.h"
/*#include "localdefs.h" -- don't know whether I want this or not at this point. */
#ifdef WINDOWS
#include <windows.h>  /* For DLL machinery for adaptor loading. */
#endif

#ifdef WFTK_WITH_REPMGR
#include "../repmgr/repmgr.h"
#endif

See Working with sessions
See wftk configuration module
See wftk adaptor code
Previous: Include file (and API definition) ] [ Top:  ] [ Next: Working with sessions ]


This code and documentation are released under the terms of the GNU license. They are additionally copyright (c) 2002, Vivtek. All rights reserved except those explicitly granted under the terms of the GNU license.