VirtualBox

source: vbox/trunk/src/bldprogs/deftoimp.sed@ 92154

Last change on this file since 92154 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1# $Id: deftoimp.sed 82968 2020-02-04 10:35:17Z vboxsync $
2## @file
3# SED script for generating a dummy .c from a windows .def file.
4#
5
6#
7# Copyright (C) 2006-2020 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#
21s/;.*$//g
22s/^[[:space:]][[:space:]]*//g
23s/[[:space:]][[:space:]]*$//g
24/^$/d
25
26# Handle text after EXPORTS
27/EXPORTS/,//{
28s/^EXPORTS$//
29/^$/b end
30
31
32/[[:space:]]DATA$/b data
33
34#
35# Function export
36#
37:code
38s/^\(.*\)$/EXPORT\nvoid \1(void);\nvoid \1(void){}/
39b end
40
41
42#
43# Data export
44#
45:data
46s/^\(.*\)[[:space:]]*DATA$/EXPORT_DATA void *\1 = (void *)0;/
47b end
48
49}
50d
51b end
52
53
54# next expression
55:end
56
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use