#addin #native-api #1c-enterpirse

addin1c

Helper for creating 1C:Enterpirse 8 add-ins with Native API technology

5 releases (3 breaking)

0.4.0 Dec 26, 2023
0.3.0 Dec 24, 2023
0.2.0 Dec 23, 2023
0.1.1 Dec 14, 2023
0.1.0 Dec 14, 2023
Download history

57 downloads per month

MIT license

41KB
1K SLoC

addin1c

Helper for creating 1C:Enterprise 8 add-ins with Native API technology

References:

See example:

Debugging in Visual Studio Code

Create a .vscode/launch.json file:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug 1С",
            "program": "path/to/1cv8c",
            "args": [
                "/IBName",
                "Test1"
            ],
            "cwd": "${workspaceFolder}",
            "preLaunchTask": "rust: cargo build",
            "env": {"DISPLAY": ":1"}, // only for Linux
        }
    ]
}

Dependencies

~79KB