VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/SUPR0-def-pe.sed@ 67954

Last change on this file since 67954 was 57358, checked in by vboxsync, 9 years ago

*: scm cleanup run.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1# $Id: SUPR0-def-pe.sed 57358 2015-08-14 15:16:38Z vboxsync $
2## @file
3# IPRT - SED script for generating SUPR0.def
4#
5
6# Copyright (C) 2012-2015 Oracle Corporation
7#
8# This file is part of VirtualBox Open Source Edition (OSE), as
9# available from http://www.virtualbox.org. This file is free software;
10# you can redistribute it and/or modify it under the terms of the GNU
11# General Public License (GPL) as published by the Free Software
12# Foundation, in version 2 as it comes in the "COPYING" file of the
13# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15#
16# The contents of this file may alternatively be used under the terms
17# of the Common Development and Distribution License Version 1.0
18# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19# VirtualBox OSE distribution, in which case the provisions of the
20# CDDL are applicable instead of those of the GPL.
21#
22# You may elect to license modified versions of this file under the
23# terms and conditions of either the GPL or the CDDL or both.
24#
25
26# Header and footer.
271b header
28$b footer
29
30# Drop all lines from the start of the file until the SED: START marker.
311,/SED: START/d
32
33# Drop all lines from the SED: END marker and till the end of the file.
34/SED: END/,$d
35
36# Drop all lines not specifying an export.
37/^ { "/!d
38
39# Handle trailing selection comment (/* solaris-only, windows-only */).
40/\*\/ *$/!b transform
41/only-windows/b transform
42/only-/!b transform
43d
44
45:transform
46# Transform the export line, the format is like this:
47# { "g_pSUPGlobalInfoPage", (void *)&g_pSUPGlobalInfoPage }, /* SED: DATA */
48
49s/^ { "\([^"]*\)",[^}]*}[,]/ \1/
50
51s,/\* SED: \([A-Z]*\) \*/, \1,
52s, */\*.*\*/ *$,,
53b end
54
55:header
56i\;
57i\; Autogenerated. DO NOT EDIT!
58i\;
59i
60i\LIBRARY VBoxDrv.sys
61i
62i\EXPORTS
63d
64
65
66:footer
67i
68i\; The end.
69i
70d
71
72:end
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use