Last change
on this file since 37289 was 31667, checked in by vboxsync, 14 years ago |
Installer: header fixes
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.2 KB
|
Line | |
---|
1 | /* $Id: VBoxStubBld.h 31667 2010-08-13 15:57:03Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxStubBld - VirtualBox's Windows installer stub builder.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 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 | #pragma once
|
---|
19 |
|
---|
20 | #define VBOXSTUB_MAX_PACKAGES 128
|
---|
21 |
|
---|
22 | typedef struct
|
---|
23 | {
|
---|
24 | char szMagic[9];
|
---|
25 | DWORD dwVersion;
|
---|
26 | BYTE byCntPkgs;
|
---|
27 |
|
---|
28 | } VBOXSTUBPKGHEADER, *PVBOXSTUBPKGHEADER;
|
---|
29 |
|
---|
30 | enum VBOXSTUBPKGARCH
|
---|
31 | {
|
---|
32 | VBOXSTUBPKGARCH_ALL = 0,
|
---|
33 | VBOXSTUBPKGARCH_X86 = 1,
|
---|
34 | VBOXSTUBPKGARCH_AMD64 = 2
|
---|
35 | };
|
---|
36 |
|
---|
37 | typedef struct
|
---|
38 | {
|
---|
39 | BYTE byArch;
|
---|
40 | char szResourceName[_MAX_PATH];
|
---|
41 | char szFileName[_MAX_PATH];
|
---|
42 | } VBOXSTUBPKG, *PVBOXSTUBPKG;
|
---|
43 |
|
---|
44 | /* Only for construction. */
|
---|
45 |
|
---|
46 | typedef struct
|
---|
47 | {
|
---|
48 | char szSourcePath[_MAX_PATH];
|
---|
49 | BYTE byArch;
|
---|
50 | } VBOXSTUBBUILDPKG, *PVBOXSTUBBUILDPKG;
|
---|
51 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.