You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
772 B
25 lines
772 B
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <glib.h>
|
|
|
|
#define segfault_me char **blablabla = NULL; *blablabla = "test";
|
|
|
|
typedef void (* OSyncFlagTriggerFunc) (gpointer user_data1, gpointer user_data2);
|
|
|
|
typedef struct OSyncFlag OSyncFlag;
|
|
typedef struct OSyncMappingTable OSyncMappingTable;
|
|
typedef struct OSyncMappingView OSyncMappingView;
|
|
typedef struct OSyncMappingEntry OSyncMappingEntry;
|
|
|
|
#include "opensync/opensync_message_internals.h"
|
|
|
|
#include "osengine_deciders_internals.h"
|
|
#include "osengine_debug.h"
|
|
#include "osengine_flags_internals.h"
|
|
#include "osengine_engine_internals.h"
|
|
#include "osengine_mapping_internals.h"
|
|
#include "osengine_mapcmds_internals.h"
|
|
#include "osengine_client_internals.h"
|
|
#include "osengine_debug_internals.h"
|