5606210c3e3213a247418d91961ef5380fc87640vboxsync/** $Id$ */
3d475f690d5d82606d31b3689815152e68da442bvboxsync/** @file
3d475f690d5d82606d31b3689815152e68da442bvboxsync *
3d475f690d5d82606d31b3689815152e68da442bvboxsync * VBox HDD container test utility - scripting engine, type and context checker.
3d475f690d5d82606d31b3689815152e68da442bvboxsync */
3d475f690d5d82606d31b3689815152e68da442bvboxsync
3d475f690d5d82606d31b3689815152e68da442bvboxsync/*
3d475f690d5d82606d31b3689815152e68da442bvboxsync * Copyright (C) 2013 Oracle Corporation
3d475f690d5d82606d31b3689815152e68da442bvboxsync *
3d475f690d5d82606d31b3689815152e68da442bvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
3d475f690d5d82606d31b3689815152e68da442bvboxsync * available from http://www.virtualbox.org. This file is free software;
3d475f690d5d82606d31b3689815152e68da442bvboxsync * you can redistribute it and/or modify it under the terms of the GNU
3d475f690d5d82606d31b3689815152e68da442bvboxsync * General Public License (GPL) as published by the Free Software
3d475f690d5d82606d31b3689815152e68da442bvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
3d475f690d5d82606d31b3689815152e68da442bvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
3d475f690d5d82606d31b3689815152e68da442bvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
3d475f690d5d82606d31b3689815152e68da442bvboxsync */
3d475f690d5d82606d31b3689815152e68da442bvboxsync#define LOGGROUP LOGGROUP_DEFAULT
3d475f690d5d82606d31b3689815152e68da442bvboxsync#include <iprt/list.h>
3d475f690d5d82606d31b3689815152e68da442bvboxsync#include <iprt/mem.h>
3d475f690d5d82606d31b3689815152e68da442bvboxsync#include <iprt/assert.h>
3d475f690d5d82606d31b3689815152e68da442bvboxsync
3d475f690d5d82606d31b3689815152e68da442bvboxsync#include <VBox/log.h>
3d475f690d5d82606d31b3689815152e68da442bvboxsync
3d475f690d5d82606d31b3689815152e68da442bvboxsync#include "VDScriptAst.h"
3d475f690d5d82606d31b3689815152e68da442bvboxsync#include "VDScriptInternal.h"
3d475f690d5d82606d31b3689815152e68da442bvboxsync
3d475f690d5d82606d31b3689815152e68da442bvboxsyncDECLHIDDEN(int) vdScriptCtxCheck(PVDSCRIPTCTXINT pThis)
3d475f690d5d82606d31b3689815152e68da442bvboxsync{
3d475f690d5d82606d31b3689815152e68da442bvboxsync return VERR_NOT_IMPLEMENTED;
3d475f690d5d82606d31b3689815152e68da442bvboxsync}