184487c808
Review URL: https://codereview.chromium.org/12387018 git-svn-id: http://skia.googlecode.com/svn/trunk@8044 2bbb7eff-a529-9590-31e7-b0007b416f81
36 lines
761 B
C
36 lines
761 B
C
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef win_dbghelp_DEFINED
|
|
#define win_dbghelp_DEFINED
|
|
|
|
#ifdef SK_BUILD_FOR_WIN32
|
|
|
|
#include <dbghelp.h>
|
|
#include <shellapi.h>
|
|
#include <shlobj.h>
|
|
|
|
void setAppName(const char* app_name);
|
|
const char* getAppName();
|
|
|
|
void setBinariesPath(const char* binaries_path);
|
|
const char* getBinariesPath();
|
|
|
|
void setAppVersion(const char* version);
|
|
const char* getAppVersion();
|
|
|
|
void setCdbPath(const char* path);
|
|
const char* getCdbPath();
|
|
|
|
void setUpDebuggingFromArgs(const char* vargs0);
|
|
|
|
int GenerateDumpAndPrintCallstack(EXCEPTION_POINTERS* pExceptionPointers);
|
|
|
|
#endif // SK_BUILD_FOR_WIN32
|
|
|
|
#endif // win_dbghelp_DEFINED
|