This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
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
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