/***************************************************************************
*
* adt_data.c : Provides Audit functionalities
*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
***************************************************************************/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <glib.h>
#include <dbus/dbus-glib-lowlevel.h>
#include <dbus/dbus-glib.h>
#include "adt_data.h"
{
"/org/freedesktop/DBus",
"org.freedesktop.DBus",
"GetAdtAuditSessionData");
printf ("cannot get GetAdtAuditSessionData message\n");
return NULL;
}
return NULL;
}
dbus_error_init (&error);
message, -1,
&error);
if (dbus_error_is_set (&error)) {
dbus_error_free (&error);
return NULL;
}
return NULL;
}
printf ("expecting an array of byte entries\n");
return NULL;
}
count = 0;
bufsize = 256;
bufsize += 256;
return NULL;
}
}
}
if (count == 0) {
}
return (adt_export_data_t *)buf;
}