The procedure entry point getTimeout could not be located in the dll
up vote
1
down vote
favorite
I want to use The Open Racing Car Simulator 1.3.7 (C/C++ project) with python (I have Python 3.6.7 installed, removed other python versions). I was able to install the application and the patch 2.0 (contains xml, rbg, makefile, sh, dll files) for the server.
Now I am getting the following errors
operties Report
------------------------
Compatibility mode, properties unknown.
windowsModInfoDir: ... can't open dll drivers/./..dll
windowsModInfoDir: ... can't open dll drivers/../...dll
windowsModInfoDir: ... can't open dll drivers/scr_server/scr_server.dll
windowsModInfoDir: ... can't open dll drivers/sparkle/sparkle.dll
EDIT: What I have tried
- I tried reinstallation (Torcs 1.3.7 and Torcs 1.3.4) with and without the patch (version 1 and 2)
- cmd (as Admin) and
sfc /scannow
- cmd (as Admin) and
dism.exe /online /cleanup-image /restorehealth
- Only application without patch (does work)
- Application with patch version 1 and version 2 (both raise the same error)
- .net framework 4.7.2 is allready installed
- The patch (for server) is for windows name is scr-win-patch.zip and was downloaded form the link which was provided in the official documentation for the windows installation of the server.
- The ~/drivers/scr_server/scr_server.dll file is there the
- The ~/drivers/sparkle/sparkle.dll file does not exist (and I cannot find it online). I just copied another driver *.dll and renamed it to sparkle the error message changed to -> can't find proc sparkle
- Dependency Walker output of scr_server (http://pasted.co/1d4b9c76)
- PATH variable
%SystemRoot%system32
%SystemRoot%
%SystemRoot%System32Wbem
%SYSTEMROOT%System32OpenSSH
C:UsersCardanoAppDataLocalProgramsPythonPython36
C:UsersCardanoAppDataLocalProgramsPythonPython36Scripts
But nothing did resolve the problem. I hope that someone will be able to help me with this problem.
windows-10 dll
|
show 18 more comments
up vote
1
down vote
favorite
I want to use The Open Racing Car Simulator 1.3.7 (C/C++ project) with python (I have Python 3.6.7 installed, removed other python versions). I was able to install the application and the patch 2.0 (contains xml, rbg, makefile, sh, dll files) for the server.
Now I am getting the following errors
operties Report
------------------------
Compatibility mode, properties unknown.
windowsModInfoDir: ... can't open dll drivers/./..dll
windowsModInfoDir: ... can't open dll drivers/../...dll
windowsModInfoDir: ... can't open dll drivers/scr_server/scr_server.dll
windowsModInfoDir: ... can't open dll drivers/sparkle/sparkle.dll
EDIT: What I have tried
- I tried reinstallation (Torcs 1.3.7 and Torcs 1.3.4) with and without the patch (version 1 and 2)
- cmd (as Admin) and
sfc /scannow
- cmd (as Admin) and
dism.exe /online /cleanup-image /restorehealth
- Only application without patch (does work)
- Application with patch version 1 and version 2 (both raise the same error)
- .net framework 4.7.2 is allready installed
- The patch (for server) is for windows name is scr-win-patch.zip and was downloaded form the link which was provided in the official documentation for the windows installation of the server.
- The ~/drivers/scr_server/scr_server.dll file is there the
- The ~/drivers/sparkle/sparkle.dll file does not exist (and I cannot find it online). I just copied another driver *.dll and renamed it to sparkle the error message changed to -> can't find proc sparkle
- Dependency Walker output of scr_server (http://pasted.co/1d4b9c76)
- PATH variable
%SystemRoot%system32
%SystemRoot%
%SystemRoot%System32Wbem
%SYSTEMROOT%System32OpenSSH
C:UsersCardanoAppDataLocalProgramsPythonPython36
C:UsersCardanoAppDataLocalProgramsPythonPython36Scripts
But nothing did resolve the problem. I hope that someone will be able to help me with this problem.
windows-10 dll
1
SFC and DISM can only repair a system file if it exists in the image that was used to install Windows. The files that are missing from your system cannot be repaired by either of those tools. You can't repair a file that is missing entirely, and since they are third-party driver files, an integrity check is not even performed on them
– Ramhound
Nov 28 at 14:52
1
@MrYouMath - You indicated that without the patch, the simulator works, but you get an error. So is that a different error or the same error you are asking about. Edit your question to clarify this fact.
– Ramhound
Nov 28 at 16:02
1
@harrymc - I believe it to be the case they don't even have Python installed. Since the module cannot even be found, and the application won't even execute, a configuration error would be an error generated by the application.
– Ramhound
Nov 28 at 16:24
1
@MrYouMath - "server does not work" does not provide enough information to submit an answer.
– Ramhound
Nov 28 at 19:49
1
What Python version do you have installed?
– harrymc
Nov 28 at 20:16
|
show 18 more comments
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I want to use The Open Racing Car Simulator 1.3.7 (C/C++ project) with python (I have Python 3.6.7 installed, removed other python versions). I was able to install the application and the patch 2.0 (contains xml, rbg, makefile, sh, dll files) for the server.
Now I am getting the following errors
operties Report
------------------------
Compatibility mode, properties unknown.
windowsModInfoDir: ... can't open dll drivers/./..dll
windowsModInfoDir: ... can't open dll drivers/../...dll
windowsModInfoDir: ... can't open dll drivers/scr_server/scr_server.dll
windowsModInfoDir: ... can't open dll drivers/sparkle/sparkle.dll
EDIT: What I have tried
- I tried reinstallation (Torcs 1.3.7 and Torcs 1.3.4) with and without the patch (version 1 and 2)
- cmd (as Admin) and
sfc /scannow
- cmd (as Admin) and
dism.exe /online /cleanup-image /restorehealth
- Only application without patch (does work)
- Application with patch version 1 and version 2 (both raise the same error)
- .net framework 4.7.2 is allready installed
- The patch (for server) is for windows name is scr-win-patch.zip and was downloaded form the link which was provided in the official documentation for the windows installation of the server.
- The ~/drivers/scr_server/scr_server.dll file is there the
- The ~/drivers/sparkle/sparkle.dll file does not exist (and I cannot find it online). I just copied another driver *.dll and renamed it to sparkle the error message changed to -> can't find proc sparkle
- Dependency Walker output of scr_server (http://pasted.co/1d4b9c76)
- PATH variable
%SystemRoot%system32
%SystemRoot%
%SystemRoot%System32Wbem
%SYSTEMROOT%System32OpenSSH
C:UsersCardanoAppDataLocalProgramsPythonPython36
C:UsersCardanoAppDataLocalProgramsPythonPython36Scripts
But nothing did resolve the problem. I hope that someone will be able to help me with this problem.
windows-10 dll
I want to use The Open Racing Car Simulator 1.3.7 (C/C++ project) with python (I have Python 3.6.7 installed, removed other python versions). I was able to install the application and the patch 2.0 (contains xml, rbg, makefile, sh, dll files) for the server.
Now I am getting the following errors
operties Report
------------------------
Compatibility mode, properties unknown.
windowsModInfoDir: ... can't open dll drivers/./..dll
windowsModInfoDir: ... can't open dll drivers/../...dll
windowsModInfoDir: ... can't open dll drivers/scr_server/scr_server.dll
windowsModInfoDir: ... can't open dll drivers/sparkle/sparkle.dll
EDIT: What I have tried
- I tried reinstallation (Torcs 1.3.7 and Torcs 1.3.4) with and without the patch (version 1 and 2)
- cmd (as Admin) and
sfc /scannow
- cmd (as Admin) and
dism.exe /online /cleanup-image /restorehealth
- Only application without patch (does work)
- Application with patch version 1 and version 2 (both raise the same error)
- .net framework 4.7.2 is allready installed
- The patch (for server) is for windows name is scr-win-patch.zip and was downloaded form the link which was provided in the official documentation for the windows installation of the server.
- The ~/drivers/scr_server/scr_server.dll file is there the
- The ~/drivers/sparkle/sparkle.dll file does not exist (and I cannot find it online). I just copied another driver *.dll and renamed it to sparkle the error message changed to -> can't find proc sparkle
- Dependency Walker output of scr_server (http://pasted.co/1d4b9c76)
- PATH variable
%SystemRoot%system32
%SystemRoot%
%SystemRoot%System32Wbem
%SYSTEMROOT%System32OpenSSH
C:UsersCardanoAppDataLocalProgramsPythonPython36
C:UsersCardanoAppDataLocalProgramsPythonPython36Scripts
But nothing did resolve the problem. I hope that someone will be able to help me with this problem.
windows-10 dll
windows-10 dll
edited Nov 29 at 11:43
asked Nov 28 at 14:20
MrYouMath
1066
1066
1
SFC and DISM can only repair a system file if it exists in the image that was used to install Windows. The files that are missing from your system cannot be repaired by either of those tools. You can't repair a file that is missing entirely, and since they are third-party driver files, an integrity check is not even performed on them
– Ramhound
Nov 28 at 14:52
1
@MrYouMath - You indicated that without the patch, the simulator works, but you get an error. So is that a different error or the same error you are asking about. Edit your question to clarify this fact.
– Ramhound
Nov 28 at 16:02
1
@harrymc - I believe it to be the case they don't even have Python installed. Since the module cannot even be found, and the application won't even execute, a configuration error would be an error generated by the application.
– Ramhound
Nov 28 at 16:24
1
@MrYouMath - "server does not work" does not provide enough information to submit an answer.
– Ramhound
Nov 28 at 19:49
1
What Python version do you have installed?
– harrymc
Nov 28 at 20:16
|
show 18 more comments
1
SFC and DISM can only repair a system file if it exists in the image that was used to install Windows. The files that are missing from your system cannot be repaired by either of those tools. You can't repair a file that is missing entirely, and since they are third-party driver files, an integrity check is not even performed on them
– Ramhound
Nov 28 at 14:52
1
@MrYouMath - You indicated that without the patch, the simulator works, but you get an error. So is that a different error or the same error you are asking about. Edit your question to clarify this fact.
– Ramhound
Nov 28 at 16:02
1
@harrymc - I believe it to be the case they don't even have Python installed. Since the module cannot even be found, and the application won't even execute, a configuration error would be an error generated by the application.
– Ramhound
Nov 28 at 16:24
1
@MrYouMath - "server does not work" does not provide enough information to submit an answer.
– Ramhound
Nov 28 at 19:49
1
What Python version do you have installed?
– harrymc
Nov 28 at 20:16
1
1
SFC and DISM can only repair a system file if it exists in the image that was used to install Windows. The files that are missing from your system cannot be repaired by either of those tools. You can't repair a file that is missing entirely, and since they are third-party driver files, an integrity check is not even performed on them
– Ramhound
Nov 28 at 14:52
SFC and DISM can only repair a system file if it exists in the image that was used to install Windows. The files that are missing from your system cannot be repaired by either of those tools. You can't repair a file that is missing entirely, and since they are third-party driver files, an integrity check is not even performed on them
– Ramhound
Nov 28 at 14:52
1
1
@MrYouMath - You indicated that without the patch, the simulator works, but you get an error. So is that a different error or the same error you are asking about. Edit your question to clarify this fact.
– Ramhound
Nov 28 at 16:02
@MrYouMath - You indicated that without the patch, the simulator works, but you get an error. So is that a different error or the same error you are asking about. Edit your question to clarify this fact.
– Ramhound
Nov 28 at 16:02
1
1
@harrymc - I believe it to be the case they don't even have Python installed. Since the module cannot even be found, and the application won't even execute, a configuration error would be an error generated by the application.
– Ramhound
Nov 28 at 16:24
@harrymc - I believe it to be the case they don't even have Python installed. Since the module cannot even be found, and the application won't even execute, a configuration error would be an error generated by the application.
– Ramhound
Nov 28 at 16:24
1
1
@MrYouMath - "server does not work" does not provide enough information to submit an answer.
– Ramhound
Nov 28 at 19:49
@MrYouMath - "server does not work" does not provide enough information to submit an answer.
– Ramhound
Nov 28 at 19:49
1
1
What Python version do you have installed?
– harrymc
Nov 28 at 20:16
What Python version do you have installed?
– harrymc
Nov 28 at 20:16
|
show 18 more comments
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1379105%2fthe-procedure-entry-point-gettimeout-could-not-be-located-in-the-dll%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1379105%2fthe-procedure-entry-point-gettimeout-could-not-be-located-in-the-dll%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
SFC and DISM can only repair a system file if it exists in the image that was used to install Windows. The files that are missing from your system cannot be repaired by either of those tools. You can't repair a file that is missing entirely, and since they are third-party driver files, an integrity check is not even performed on them
– Ramhound
Nov 28 at 14:52
1
@MrYouMath - You indicated that without the patch, the simulator works, but you get an error. So is that a different error or the same error you are asking about. Edit your question to clarify this fact.
– Ramhound
Nov 28 at 16:02
1
@harrymc - I believe it to be the case they don't even have Python installed. Since the module cannot even be found, and the application won't even execute, a configuration error would be an error generated by the application.
– Ramhound
Nov 28 at 16:24
1
@MrYouMath - "server does not work" does not provide enough information to submit an answer.
– Ramhound
Nov 28 at 19:49
1
What Python version do you have installed?
– harrymc
Nov 28 at 20:16