1 : // Copyright 2012 Google Inc. All Rights Reserved.
2 : //
3 : // Licensed under the Apache License, Version 2.0 (the "License");
4 : // you may not use this file except in compliance with the License.
5 : // You may obtain a copy of the License at
6 : //
7 : // http://www.apache.org/licenses/LICENSE-2.0
8 : //
9 : // Unless required by applicable law or agreed to in writing, software
10 : // distributed under the License is distributed on an "AS IS" BASIS,
11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 : // See the License for the specific language governing permissions and
13 : // limitations under the License.
14 :
15 : #include "syzygy/pe/dos_stub.h"
16 :
17 m : namespace pe {
18 :
19 m : const uint8 kDosStub[] = {
20 m : 0x0E, 0x1F, 0x66, 0xBA, 0x0E, 0x00, 0xB4, 0x09,
21 m : 0xCD, 0x21, 0xB4, 0x00, 0xCD, 0x21, 0x54, 0x68,
22 m : 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20,
23 m : 0x57, 0x69, 0x6E, 0x64, 0x6F, 0x77, 0x73, 0x20,
24 m : 0x70, 0x72, 0x6F, 0x67, 0x72, 0x61, 0x6D, 0x2C,
25 m : 0x20, 0x79, 0x6F, 0x75, 0x20, 0x63, 0x61, 0x6E,
26 m : 0x6E, 0x6F, 0x74, 0x20, 0x72, 0x75, 0x6E, 0x20,
27 m : 0x69, 0x74, 0x20, 0x69, 0x6E, 0x20, 0x44, 0x4F,
28 m : 0x53, 0x2E, 0x5C, 0x72, 0x5C, 0x6E, 0x24 };
29 m : const size_t kDosStubSize = sizeof(kDosStub);
30 :
31 m : } // namespace pe
|