... und läuft jetzt ...
Die C/++-Api kommt mit viel brauchbaren Beispielcode und Samples.
Das hat sehr geholfen, um Error codes zu entschlüsseln.
include <osmisc.h>
static char error_text[200];
char * print_api_error(Status api_error) {
STATUS string_id = ERR(api_error);
WORD text_len;
text_len = OSLoadString(NULLHANDLE, string_id, error_text, sizeof(error_text);
fprintf(stderr, "\n %s\n", error_text);
return error_text;
}
Das ist gut, um Visual Studio Express für notes api Programmierung einzurichten:
http://www.notes411.com/dominosource/tips.nsf/0/E627700AEC499391802571C40073860E!opendocument