1 : // Copyright 2015 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 : #include "syzygy/msf/msf_constants.h"
15 :
16 m : namespace msf {
17 :
18 m : const uint8 kMsfHeaderMagicString[kMsfHeaderMagicStringSize] = {
19 m : 0x4D, 0x69, 0x63, 0x72, 0x6F,
20 m : 0x73, 0x6F, 0x66, // "Microsof"
21 m : 0x74, 0x20, 0x43, 0x2F, 0x43,
22 m : 0x2B, 0x2B, 0x20, // "t C/C++ "
23 m : 0x4D, 0x53, 0x46, 0x20, 0x37,
24 m : 0x2E, 0x30, 0x30, // "MSF 7.00"
25 m : 0x0D, 0x0A, 0x1A, 0x44, 0x53,
26 m : 0x00, 0x00, 0x00 // "^^^DS^^^"
27 m : };
28 :
29 m : } // namespace msf
|