blob: dd549c18a26dde955c1c4acf41ef6d4b03b4ec7a [file] [log] [blame]
// Copyright 2012 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "syzygy/pe/dos_stub.h"
namespace pe {
const uint8 kDosStub[] = {
0x0E, 0x1F, 0x66, 0xBA, 0x0E, 0x00, 0xB4, 0x09,
0xCD, 0x21, 0xB4, 0x00, 0xCD, 0x21, 0x54, 0x68,
0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20,
0x57, 0x69, 0x6E, 0x64, 0x6F, 0x77, 0x73, 0x20,
0x70, 0x72, 0x6F, 0x67, 0x72, 0x61, 0x6D, 0x2C,
0x20, 0x79, 0x6F, 0x75, 0x20, 0x63, 0x61, 0x6E,
0x6E, 0x6F, 0x74, 0x20, 0x72, 0x75, 0x6E, 0x20,
0x69, 0x74, 0x20, 0x69, 0x6E, 0x20, 0x44, 0x4F,
0x53, 0x2E, 0x5C, 0x72, 0x5C, 0x6E, 0x24 };
const size_t kDosStubSize = sizeof(kDosStub);
} // namespace pe