#include <stdio.h>
#include <string.h>
#include <aisc.h>
#include <server.h>
#include "aisc_extern_privat.h"

extern int aisc_d_flags[];

dll_public *create_dll_public() {
    return NULp;
}

int move_dll_header(const dll_header *sobj, dll_header *dobj) {
    dobj->ident = strdup(sobj->ident);
    return 0;
}

int get_COMMON_CNT(dll_header *THIS) {
    int key = (int)(THIS->key) >> 16;
    if (aisc_d_flags[key] == 0) return -1;
    if (!((THIS->parent))) { return 0; }
    return THIS->parent->cnt;
}

dllheader_ext *get_COMMON_PARENT(dll_header *THIS) {
    int key = (int)(THIS->key) >> 16;
    if (aisc_d_flags[key] == 0) return NULp;
    if (!THIS->parent) { return NULp; }
    return THIS->parent->parent;
}

dllheader_ext *get_COMMON_LAST(dll_header *THIS) {
    int key = (int)(THIS->key) >> 16;
    if (aisc_d_flags[key] == 0) return NULp;
    if (!THIS->parent) { return NULp; }
    return THIS->parent->last;
}

aisc_cstring aisc_get_keystring(int *obj) {
    int i;
    i = *obj>>16;
    return aisc_get_object_names(i);
}

aisc_cstring aisc_get_keystring_dll_header(dll_header *x) {
    return aisc_get_keystring((int*)x);
}
