Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Core/Libraries/Source/WWVegas/WWLib/Usp10Loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,16 @@ class Usp10Loader
public:

typedef void *ScriptStringAnalysis;
struct ScriptControl;
struct ScriptTabDefinition;

// TheSuperHackers @info Omar Aglan 13/09/2026 ScriptItemize needs a non-null control
// structure for bidirectional analysis. Keep the unused control flags zero.
struct ScriptControl
{
DWORD default_language : 16;
DWORD reserved : 16;
};

struct ScriptState
{
WORD bidi_level : 5;
Expand Down