Windows error 0x00000700, 1792

Detailed Error Information

NETLOGON_NOT_STARTED[1]

MessageAn attempt was made to logon, but the network logon service was not started.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070700.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
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
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1792 (0x0700)

Questions

3votes
1answer

SDL2 iOS multitouch second finger down not detected

I am working on a SDL2 project that I have ported to iOS. I am having trouble getting 2 touches to register to use as game controls. The controls work like this: iOS Device +---------------+ | F | | | |-------| L | R | | B | | | [...] read more
ios
c
sdl
sdl-2
2votes
0answers

no /dev/*, but /sys/bus/mmc device info on damaged SD-Card

A friend gave me a broken SD-card, hoping I might recover something from it. I have no trouble mounting any other cards, whatsoever. I am not getting any block devices in /dev, but the mmc subsystem recognizes the inserted card as mmc0 and lists it. edit3: the card specs from [...] read more
data-recovery
sd-card
mmc
2votes
1answer

Control AMIS-30543 with STM32F030R8 via SPI

I'm attempting to get my STM32 board to control a stepper motor (using an AMIS-30543 driver, 26M024B2B stepper motor) using SPI. I'm using Keil uVision 5 and taking a bare-metal approach in C. My problem is that the motor is not spinning and I'm unsure where the error(s) are hiding. [...] read more
c
embedded
stm32
bare-metal
cmsis
1vote
0answers

IP hashing filter in traffic shaping

I am using a traffic shaping by IP hashing filter. I have Five networks /24 : 192.168.1.0/24, 192.168.2.0/24 .. 192.168.5.0/24 so i create a table with 5 cells and each cells has 256 cells. this is a part of my configuration : $tc qdisc add dev $DEV root handle 1: [...] read more
linux
networking
linux-networking
traffic-shaping
0votes
0answers

Porting From ARMCC to GNU compiler

I am working on porting code from KEIL(ARMCC) to Eclipse(with GNU ARM toolchain). The controller is LPC2468(ARM7TDMI-S) with the following memory available: FLASH (rx) : ORIGIN = 0x00, LENGTH = 0x80000 RAM (rwx) : ORIGIN = 0x40000000, LENGTH = 0x10000 /* 96K */ ERAM (rwx) : ORIGIN = 0xA0000000, LENGTH [...] read more
linker-scripts
gnu-arm
0votes
0answers

Shadow map - some shadows get cut off

I'm working on a voxel engine and my shadow map has some strange behavior. When I turn my directional light to a certain angle, some shadows are cut off. here a pic how it looks like and my shadow map. this is how I render my shadows: glDisable(GL_CULL_FACE); glEnable(GL_DEPTH_TEST); glViewport(0, [...] read more
opengl
rendering
shadow
voxel

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0