Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / native_client_sdk / src / libraries / ppapi_simple / ps_instance.h
blob0def9292203646d34af905a3416e0d9270a5ca69
1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
5 #ifndef PPAPI_SIMPLE_PS_INSTANCE_H_
6 #define PPAPI_SIMPLE_PS_INSTANCE_H_
8 #include <stdarg.h>
10 #include "ppapi/c/pp_instance.h"
11 #include "ppapi/c/pp_stdint.h"
12 #include "ppapi/c/ppb_var.h"
14 #include "ppapi_simple/ps_event.h"
16 EXTERN_C_BEGIN
18 enum PSVerbosity {
19 PSV_SILENT = 0,
20 PSV_ERROR = 1,
21 PSV_WARN = 2,
22 PSV_LOG = 3,
23 PSV_TRACE = 4,
26 void PSInstanceSetVerbosity(enum PSVerbosity verbosity);
27 void PSInstanceTrace(const char *fmt, ...);
28 void PSInstanceLog(const char *fmt, ...);
29 void PSInstanceWarn(const char *fmt, ...);
30 void PSInstanceError(const char *fmt, ...);
32 EXTERN_C_END
34 #endif /* PPAPI_SIMPLE_PS_INSTANCE_H_ */