mirror of
https://gitee.com/energye/energy.git
synced 2024-12-05 21:28:17 +08:00
22 lines
478 B
Go
22 lines
478 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
// 辅助工具-开发者工具 windows
|
|
|
|
package cef
|
|
|
|
// no windows
|
|
func createDevtoolsWindow(owner *LCLBrowserWindow, currentChromium ICEFChromiumBrowser) *devToolsWindow {
|
|
return nil
|
|
}
|