Last change
on this file since 95000 was 93115, checked in by vboxsync, 3 years ago |
scm --update-copyright-year
|
-
Property svn:eol-style
set to
LF
-
Property svn:keywords
set to
Id
|
File size:
1.0 KB
|
Line | |
---|
1 | # $Id: deftoimp.sed 93115 2022-01-01 11:31:46Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # SED script for generating a dummy .c from a windows .def file.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2022 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | #
|
---|
19 | # Remove comments and space. Skip empty lines.
|
---|
20 | #
|
---|
21 | s/;.*$//g
|
---|
22 | s/^[[:space:]][[:space:]]*//g
|
---|
23 | s/[[:space:]][[:space:]]*$//g
|
---|
24 | /^$/d
|
---|
25 |
|
---|
26 | # Handle text after EXPORTS
|
---|
27 | /EXPORTS/,//{
|
---|
28 | s/^EXPORTS$//
|
---|
29 | /^$/b end
|
---|
30 |
|
---|
31 |
|
---|
32 | /[[:space:]]DATA$/b data
|
---|
33 |
|
---|
34 | #
|
---|
35 | # Function export
|
---|
36 | #
|
---|
37 | :code
|
---|
38 | s/^\(.*\)$/EXPORT\nvoid \1(void);\nvoid \1(void){}/
|
---|
39 | b end
|
---|
40 |
|
---|
41 |
|
---|
42 | #
|
---|
43 | # Data export
|
---|
44 | #
|
---|
45 | :data
|
---|
46 | s/^\(.*\)[[:space:]]*DATA$/EXPORT_DATA void *\1 = (void *)0;/
|
---|
47 | b end
|
---|
48 |
|
---|
49 | }
|
---|
50 | d
|
---|
51 | b end
|
---|
52 |
|
---|
53 |
|
---|
54 | # next expression
|
---|
55 | :end
|
---|
56 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.