Skip to content

Commit 2b0cf61

Browse files
authored
Merge dc89b90 into 3ac42fe
2 parents 3ac42fe + dc89b90 commit 2b0cf61

4 files changed

Lines changed: 7 additions & 12 deletions

File tree

extras/controllerClient/x86/example_csharp.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ namespace NVAccess
1313
/// </summary>
1414
static class NVDA
1515
{
16-
[DllImport("nvdaControllerClient32.dll", CharSet = CharSet.Unicode)]
16+
[DllImport("nvdaControllerClient.dll", CharSet = CharSet.Unicode)]
1717
private static extern int nvdaController_brailleMessage(string message);
1818

19-
[DllImport("nvdaControllerClient32.dll")]
19+
[DllImport("nvdaControllerClient.dll")]
2020
private static extern int nvdaController_cancelSpeech();
2121

22-
[DllImport("nvdaControllerClient32.dll", CharSet = CharSet.Unicode)]
22+
[DllImport("nvdaControllerClient.dll", CharSet = CharSet.Unicode)]
2323
private static extern int nvdaController_speakText(string text);
2424

25-
[DllImport("nvdaControllerClient32.dll")]
25+
[DllImport("nvdaControllerClient.dll")]
2626
private static extern int nvdaController_testIfRunning();
2727

2828
/// <summary>

extras/controllerClient/x86/example_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import ctypes
33

44
#Load the NVDA client library
5-
clientLib=ctypes.windll.LoadLibrary('./nvdaControllerClient32.dll')
5+
clientLib=ctypes.windll.LoadLibrary('./nvdaControllerClient.dll')
66

77
#Test if NVDA is running, and if its not show a message
88
res=clientLib.nvdaController_testIfRunning()

nvdaHelper/client/sconscript

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ controllerRPCHeader,controllerRPCClientSource=env.MSRPCStubs(
2828
MSRPCStubs_prefix="nvdaController_",
2929
)
3030

31-
clientLibName="nvdaControllerClient%s"%('64' if env['TARGET_ARCH']=='x86_64' else '32')
31+
clientLibName = "nvdaControllerClient"
3232

3333
clientLib=env.SharedLibrary(
3434
target=clientLibName,
@@ -45,10 +45,4 @@ clientLib=env.SharedLibrary(
4545
],
4646
)
4747

48-
#if 'install' in COMMAND_LINE_TARGETS:
49-
# installDir=env.Install('#../../extras/controllerClient/',clientLib)
50-
# env.Default(installDir)
51-
52-
#env.Default(clientLib)
53-
5448
Return(['clientLib','controllerRPCHeader'])

user_docs/en/changes.t2t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Add-ons will need to be re-tested and have their manifest updated.
5656
- The ``BrailleDisplayDriver`` base class now has ``numRows`` and ``numCols`` properties to provide information about multi line braille displays.
5757
Setting ``numCells`` is still supported for single line braille displays and ``numCells`` will return the total number of cells for multi line braille displays. (#15386)
5858
- Updated BrlAPI for BRLTTY to version 0.8.5, and its corresponding python module to a Python 3.11 compatible build. (#15652, @LeonarddeR)
59+
- The file names of the NVDA Controller Library no longer contain a suffix denoting the architecture, i.e. ``nvdaControllerClient32/64.dll`` are now called ``nvdaControllerClient.dll``. (#15718, #15717, @LeonarddeR)
5960
-
6061

6162
=== API Breaking Changes ===

0 commit comments

Comments
 (0)