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 : // Definitions and utility functions to initialize logging.
16 :
17 : #ifndef SYZYGY_COMMON_LOGGING_H_
18 : #define SYZYGY_COMMON_LOGGING_H_
19 :
20 : #include <guiddef.h>
21 :
22 : #include "base/strings/string_piece.h"
23 :
24 m : namespace common {
25 :
26 : // The name of the Syzygy ETW log provider.
27 m : extern const GUID kSyzygyEtwLogProvider;
28 :
29 : // Initializes logging for a DLL that can be loaded and unloaded from
30 : // the client processes.
31 : // @param client_name an identifying name for the logging client, may be used
32 : // to construct a file name to log to.
33 m : void InitLoggingForDll(const wchar_t* client_name);
34 :
35 m : } // namespace common
36 :
37 : #endif // SYZYGY_COMMON_LOGGING_H_
|