circu.js
    Preparing search index...

    Namespace CModuleWin32

    Windows-only bindings: Registry + System Certificates

    On non-Windows platforms the module is a no-op stub.

    const { HKCU, readRegistry } = import.meta.use('win32');
    const proxy = readRegistry(HKCU,
    'Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings',
    'ProxyServer');
    // → "host:port" or "http=host:port;https=host:port"
    // Enumerate under HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces
    const dns = readRegistry(HKLM,
    'SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters',
    'DhcpNameServer');
    // → "8.8.8.8 8.8.4.4" (space-separated)
    const pems = exportCerts('ROOT');  // array of PEM strings
    const caBundle = pems.join('\n');
    // write caBundle to a temp file and pass to tls.createContext / curl / etc.

    Interfaces

    RegWatch

    Type Aliases

    RegValue

    Variables

    HKCC
    HKCR
    HKCU
    HKLM
    HKU

    Functions

    delRegistry
    exportCerts
    readRegistry
    watchRegistry
    writeRegistry