mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
416 B
C++
20 lines
416 B
C++
|
|
/*
|
|
* Copyright 2006 The Android Open Source Project
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
|
|
#ifndef SkApplication_DEFINED
|
|
#define SkApplication_DEFINED
|
|
|
|
class SkOSWindow;
|
|
|
|
extern SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
|
|
extern void application_init();
|
|
extern void application_term();
|
|
|
|
#endif // SkApplication_DEFINED
|