Update contrib.
3 # Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
5 # This component and the accompanying materials are made available
6 # under the terms of "Eclipse Public License v1.0"
7 # which accompanies this distribution, and is available
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 # Initial Contributors:
11 # Nokia Corporation - initial contribution.
16 # Generates the ws32_stubs.h header file and the ws32switchU.def
17 # file from the ws322U def file.
23 my $COPYRIGHT = <<"EndCopyrightAndLicense";
25 * Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
26 * All rights reserved.
27 * This component and the accompanying materials are made available
28 * under the terms of "Eclipse Public License v1.0"
29 * which accompanies this distribution, and is available
30 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
32 EndCopyrightAndLicense
34 my $SOURCE_DEF_SIZE = 0;
35 my $WS32_DEF = "../BWINS/";
36 my $WS32_DEF2 = "../BWINS/";
37 my $WS32SWITCH_HEADER = "";
38 my $WS32SWITCH_DEF = "../BWINS/";
45 my $def2MaxOrdinal = 1;
47 $WS32_DEF .= $ARGV[0];
48 $WS32SWITCH_HEADER = $ARGV[1];
49 $WS32SWITCH_DEF .= $ARGV[2];
51 open DEF, $WS32_DEF or
52 die "Cannot open $WS32_DEF\n";
55 my ($dev, $ino, $mode, $nlink, $uid, $gid,
56 $rdev, $size, $atime, $mtime, $ctime,
59 # the file size could be checked by the switcher build to verify that the stub is up to date.
60 $SOURCE_DEF_SIZE= $size;
62 open HEADER_OUT, ">${WS32SWITCH_HEADER}" or
63 die "Cannot create $WS32SWITCH_HEADER\n";
65 open DEF_OUT, ">${WS32SWITCH_DEF}" or
66 die "Cannot create $WS32SWITCH_DEF\n";
68 &printHeaderStart(\*HEADER_OUT);
69 &printDefStart(\*DEF_OUT);
75 &printDefEntry(\*DEF_OUT, $maxOrdinal, $_);
76 &printHeaderEntry(\*HEADER_OUT,$maxOrdinal,$_);
78 &printDefEntry(\*DEF_OUT, $maxOrdinal, "");
79 &printHeaderEntry(\*HEADER_OUT,$maxOrdinal, "(noname)");
84 &printHeaderEnd(\*HEADER_OUT,$maxOrdinal);
85 &printDefEnd(\*DEF_OUT);
94 sub printDefStart(\$) {
96 print $fh "EXPORTS\n";
99 sub printDefEntry(\$\$\$) {
100 my ($fh, $ordinal, $comment) = @_;
101 print $fh "\tcall_vector_${ordinal} @ ${ordinal} NONAME $comment\n";
104 sub printDefEnd(\$) {
109 sub printHeaderStart(\$) {
112 print $fh "$COPYRIGHT\n" .
113 "/* Generated from \"$WS32_DEF\" file size: $SOURCE_DEF_SIZE */\n\n" .
115 "void common_dispatch();\n" .
119 sub printHeaderEntry(\$\$\$) {
120 my ($fh, $ordinal, $comment) = @_;
122 print $fh "__declspec(dllexport)\n" .
123 "__declspec(naked)\n" .
124 "void call_vector_${ordinal} ()\n" .
126 "\t// ${comment}\n" .
127 "\t_asm mov eax, $ordinal\n" .
128 "\t_asm jmp common_dispatch\n" .
132 sub printHeaderEnd(\$\$) {
133 my ($fh, $maxOrdinal) = @_;
135 "#define MAX_ORDINAL $maxOrdinal\n\n";