Windows error 0x00002160, 8544

Detailed Error Information

DS_DRA_EARLIER_SCHEMA_CONFLICT[1]

MessageThe replication operation could not be completed due to a previous schema incompatibility.
Declared inwinerror.h

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

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 Code8544 (0x2160)

Questions

0votes
0answers

Double DLL exports when using .DEF file with alias

I use a .DEF file to build a Win32 DLL with VS-2015 (Intel compiler). The .DEF file looks like this: EXPORTS a=my_func The problem is that the DLL has two exports for the function and I'm not using any dllexport(...) stuff: Ordinal Entry Point Name 1 0x00002160 a 2 0x00002160 [...] read more
visual-studio
dll
visual-studio-2015
linker
dllexport
0votes
1answer

Why does my app crash

I made a class. This is the h file. // MyClass.h #import <Foundation/Foundation.h> @interface MyClass : NSObject <NSCoding> { NSString *string1; NSString *string2; } @property (nonatomic, retain) NSString *string1; @property (nonatomic, retain) NSString *string2; @end This is the m file // MyClass.m #import "MyClass.h" @implementation MyClass @synthesize string1, string2; - [...] read more
objective-c
cocoa-touch
class
nsmutablearray
nsuserdefaults

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