1 | # $Id: SUPR0-def-pe.sed 40795 2012-04-06 16:22:40Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # IPRT - SED script for generating SUPR0.def
|
---|
4 | #
|
---|
5 |
|
---|
6 | # Copyright (C) 2012 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.
|
---|
27 | 1b header
|
---|
28 | $b footer
|
---|
29 |
|
---|
30 | # Drop all lines from the start of the file until the SED: START marker.
|
---|
31 | 1,/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 | # Transform the export line, the format is like this:
|
---|
40 | # { "g_pSUPGlobalInfoPage", (void *)&g_pSUPGlobalInfoPage }, /* SED: DATA */
|
---|
41 |
|
---|
42 | s/^ { "\([^"]*\)",[^}]*}[,]/ \1/
|
---|
43 |
|
---|
44 | s,/\* SED: \([A-Z]*\) \*/, \1,
|
---|
45 | b end
|
---|
46 |
|
---|
47 | :header
|
---|
48 | i\;
|
---|
49 | i\; Autogenerated. DO NOT EDIT!
|
---|
50 | i\;
|
---|
51 | i
|
---|
52 | i\LIBRARY VBoxDrv.sys
|
---|
53 | i
|
---|
54 | i\EXPORTS
|
---|
55 | d
|
---|
56 |
|
---|
57 |
|
---|
58 | :footer
|
---|
59 | i
|
---|
60 | i\; The end.
|
---|
61 | i
|
---|
62 | d
|
---|
63 |
|
---|
64 | :end
|
---|