removed windows sdk

This commit is contained in:
Andrew Zambazos
2026-06-11 14:02:39 +12:00
parent c0395a49bd
commit ffdc88608e
2155 changed files with 0 additions and 451005 deletions
-32
View File
@@ -1,32 +0,0 @@
/**************************************************************************************************
* This file is a part of Ultralight, an ultra-portable web-browser engine. *
* *
* See <https://ultralig.ht> for licensing and more. *
* *
* (C) 2024 Ultralight, Inc. *
**************************************************************************************************/
#pragma once
#include <JavaScriptCore/JavaScript.h>
#include <Ultralight/Defines.h>
#include <Ultralight/RefPtr.h>
#include <Ultralight/String.h>
namespace ultralight {
///
/// This class wraps a JSContextRef (a JavaScript execution context for use with JavaScriptCore)
/// and locks the context on the current thread for the duration of its lifetime.
///
class UExport JSContext : public RefCounted {
public:
/// Get the underlying JSContextRef for use with JavaScriptCore C API
virtual JSContextRef ctx() = 0;
/// Typecast to a JSContextRef for use with JavaScriptCore C API
operator JSContextRef();
protected:
virtual ~JSContext();
};
} // namespace ultralight