Windows error 0x30000001, 805306369

Detailed Error Information

HRESULT analysis[1]

FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginCustomer

This code was defined by a third party software company, and may mean different things for different software. Contact the software author for more information about this error.

NTSTATUStrue
Reserved (X)false
FacilityCode0 (0x000)
Error Code1 (0x0001)

Questions

6votes
0answers

Why is svchost.exe terminating my C# application?

For some reason, my C# application is being terminated by svchost.exe and I'm trying to understand why. It was terminating the application silently until I turned on Silent Process Exit logging using Gflags.exe from the Windows Debugging Tools. It happens infrequently on machines that I can't running debugging tools on [...] read more
c#
windows
silent
termination
3votes
1answer

Memory leak (OpenCV + QML)

I’m trying to display OpenCV Mat in QML image. I grab frames from camera with OpenCV, the frames are displayed successfully in QML, but memory usage increases with time. How can I fix it? Here is the my code: main.cpp #include <QGuiApplication> #include "videoprovider.h" int main(int argc, char *argv[]) { [...] read more
c++
qt
opencv
qml
1vote
2answers

DLL C++ equilavence in C# (Keyword "IN")

I have one problem with my importation DLL.GetDefaultPrintInfoSp(nomImprimante, lienConfigImprimante, out DefaultPrintInfo); idPort = DLL.OpenPortSp(nomImprimante, nomPort, false, lienConfigImprimante); Console.WriteLine(DLL.GetLastError().ToString("X"));//0 idPrinter = DLL.CreatePrintHandleSp( ref nomImprimante,ref DefaultPrintInfo,ref lienConfigImprimante); Console.WriteLine(DLL.GetLastError().ToString("X"));//0x30000001 Console.WriteLine(idPort + " " + idPrinter); // XXXXXXX (one IntPtr) 0 According the documentation the error 0x30000001 is "Argument is incorrect" the original definition [...] read more
c#
c++
dll
0votes
0answers

CryptoJS is not defined at

I am trying to use DES encryption/decryption on Google chrome. In my folder I have three files. 1. tripledes.js 2. mode-ecb.js 3. CryptoJS-DES.html The scripts in my html file is defined as follows :- <script type="text/javascript" src="tripledes.js"></script> <script type="text/javascript" src="mode-ecb.js"></script> and another script file which is :- function encryptByDES(message, key) [...] read more
javascript
html
node.js
cryptojs

Comments

Leave a comment

(plain text only)

Sources

  1. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0