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'm trying to make a call from a LotusScript agent to 'NSFItemInfoNext' on a Domino 9.0.1 64-bit server. The call to 'NSFItemInfo' succeeds. The code has been tested on a 32-bit and works correctly. The field is a rich text field broken into several items. Type BLOCKID64 Pool As Long [...] read more
I'm trying to make a truly minimal shared "library" that has the least possible size it can be: .text .globl test test: movb $1, %al movb $1, %dil movabs $message, %rsi movb $7, %dl syscall ret message: .ascii "hello" compiling with: gcc -o test.so -fPIC -shared -m64 -nostdlib -s -O3 [...] read more