b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# $Id$
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync## @file
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# IPRT - SED script for generating SUPR0.def
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync#
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Copyright (C) 2012 Oracle Corporation
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync#
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# available from http://www.virtualbox.org. This file is free software;
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# you can redistribute it and/or modify it under the terms of the GNU
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# General Public License (GPL) as published by the Free Software
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync#
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# The contents of this file may alternatively be used under the terms
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# of the Common Development and Distribution License Version 1.0
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# VirtualBox OSE distribution, in which case the provisions of the
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# CDDL are applicable instead of those of the GPL.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync#
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# You may elect to license modified versions of this file under the
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# terms and conditions of either the GPL or the CDDL or both.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync#
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Header and footer.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync1b header
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync$b footer
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Drop all lines from the start of the file until the SED: START marker.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync1,/SED: START/d
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Drop all lines from the SED: END marker and till the end of the file.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync/SED: END/,$d
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Drop all lines not specifying an export.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync/^ { "/!d
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# Transform the export line, the format is like this:
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync# { "g_pSUPGlobalInfoPage", (void *)&g_pSUPGlobalInfoPage }, /* SED: DATA */
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsyncs/^ { "\([^"]*\)",[^}]*}[,]/ \1/
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsyncs,/\* SED: \([A-Z]*\) \*/, \1,
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsyncb end
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync:header
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci\;
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci\; Autogenerated. DO NOT EDIT!
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci\;
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci\LIBRARY VBoxDrv.sys
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci\EXPORTS
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsyncd
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync:footer
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci\; The end.
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsynci
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsyncd
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync
b1fb9427e1522a73b367cd657bb75fe736ce7db2vboxsync:end