aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkThreadUtils_win.h
blob: b1de4816cfc297ffdb411e117f2c7cd7a5643394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright 2012 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkThreadUtils_WinData_DEFINED
#define SkThreadUtils_WinData_DEFINED

#include "SkLeanWindows.h"
#include "SkThreadUtils.h"

class SkThread_WinData : SkNoncopyable {
public:
    SkThread_WinData(SkThread::entryPointProc entryPoint, void* data);
    ~SkThread_WinData();
    HANDLE fHandle;
    HANDLE fCancelEvent;

    LPVOID fParam;
    DWORD fThreadId;
    SkThread::entryPointProc fEntryPoint;
    bool fStarted;
};

#endif