SlideShare ist ein Scribd-Unternehmen logo
1 von 80
C/C++ API für Einsteiger Ulrich Krause   21. – 23.02.2011, Maritim Hotel, Gelsenkirchen
Über mich ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Agenda ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Grundlagen
Playing with Napalm and RazorBlades “ A word of warning. This is difficult, horrible, tedious frustrating error prone work that WILL take far more time than you think, and WILL come back and bite you in the .. leg ..”  ( Bill Buchan )
Zugriffe Betriebssystem Notes Object Interface (NOI) Lotus Script C++ API Notes Core ( C API ) Visual Basic (COM) JAVA JNI
Welche Möglichkeiten gibt es ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Was kann ich damit machen ? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Dreicksgeschichten Lotus Script / Java C++ API C API Code Samples Schwerer Preiswerter Funktionen
Welche Tools brauche ich? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Compiler Matrix ( Windows ) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Produkt C / C++ LSX kostenlos Visual Studio 2005 ja ja nein Visual C++ 2005 EE ja ja ja Visual C++ 2008 EE  ja nein  * ja Visual C++ 2010 n/a n/a n/a
C vs. C++ C  C++ granularer ja nein aktuell ja nein zusätzliche DLL erforderlich nein ja Code  mehr/ prozedural weniger/ objektorientiert
Setup ( Windows )
Setup  ,[object Object],[object Object],[object Object],[object Object],[object Object]
Visual Studio 2005 Express C++ IDE nur für Code Erstellung erforderlich !
Visual Studio 2005 Express C++ Zielordner für Installation
Visual Studio 2005 Express C++
Visual Studio 2005 Express C++ Bekanntes Kompatibilitätsproblem unter Windows 7 Weiter mit „Programm ausführen“ Windows 7 Patch wird später installiert
Setup  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Setup  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Platform SDK
Platform SDK
Platform SDK
Setup  ,[object Object],[object Object],[object Object],[object Object],[object Object]
Konfiguration ,[object Object],[object Object]
Konfiguration ,[object Object]
Setup ( Linux )
Installation (Linux) ,[object Object],[object Object],[object Object],[object Object],[object Object]
/etc/profile # -------------- notesapi  -------------- LOTUS=/opt/ibm/lotus export LOTUS # Notes_ExecDirectory=/opt/ibm/lotus/notes/latest/linux export Notes_ExecDirectory # NOTES_DATA_DIR=/local/notesdata export NOTES_DATA_DIR # DOMINO_RES_DIR=/opt/ibm/lotus/notes/latest/linux/res/C export DOMINO_RES_DIR # PATH=$PATH:$Notes_ExecDirectory:$NOTES_DATA_DIR:$DOMINO_RES_DIR export PATH # -------------- notescpp  -------------- CPPAPI_ID=80 export CPPAPI_ID # LD_LIBRARY_PATH=$LOTUS/notescpp/lib/linux export LD_LIBRARY_PATH
Symbolische Links ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Installation (Test) ,[object Object],[object Object],[object Object],[object Object],[object Object]
Makefile ,[object Object],[object Object],[object Object],[object Object]
Erstellen von Anwendungen
Neues Projekt
Neues Projekt
Neues Projekt
Source Code
Projekt Properties (C / C++)
Projekt Properties (C / C++)
Projekt Properties (C / C++)
Projekt Properties (Linker)
Projekt Properties (Linker)
Build Solution
Debug
Pfad erweitern
Parameter vorbelegen
Jetzt mit C++
C++
Neues Projekt - DLL
Neues Projekt - DLL
DLL – Source Code
DLL – Aufruf aus LotusScript ,[object Object],[object Object],[object Object]
C-API und Rich Text
C-API und Rich Text ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
C-API und Rich Text ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
C-API und Rich Text Analyse mit Notes Peek
C-API und Rich Text ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
C-API und Rich Text Schauen wir uns das einmal in der Entwicklungsumgebung an  (DEMO)
C-API und Rich Text Das Ergebnis
C-API und Rich Text Control rich text content with precision using the Lotus C API by Ethann Castell, THE VIEW, November/December 2007, Volume 13, Issue 6 http://www.eview.com/eview/volr6.nsf/852561460065adc3852561130021446a/60e10c63f2e130328525738b00709d51?OpenDocument
LSX Toolkit
LSX ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
LSX Projekt Klasse Methode / Eigenschaft
LSX
LSX Uselsx „rt“
LS2CAPI
LS2CAPI Betriebssystem Notes Object Interface (NOI) Lotus Script C++ API Notes Core ( C API ) Visual Basic (COM) JAVA JNI
Zur Erinnerung!! “ A word of warning. This is difficult, horrible, tedious frustrating error prone work that WILL take far more time than you think, and WILL come back and bite you in the .. leg ..”  ( Bill Buchan )
LS2CAPI ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
LS2CAPI – Signaturen umsetzen C Signatur STATUS LNPUBLIC NSFDbGetBuildVersion(  DBHANDLE hDB,  WORD far *retVersion); Lotus Script Deklaration Declare Function NSFDbGetBuildVersion Lib "nnotes.dll" ( Byval hDB As Long,  retVersion As Integer)  As Integer
LS2CAPI – Signaturen umsetzen API Win Tux AIX Solaris Mac BYTE BYTE BYTE BYTE BYTE BYTE BOOL Long Long Long Long Integer int Long Long Long Long Long LONG int Long Long Long Long Long WORD Integer Integer Integer Integer Integer SWORD Integer Integer Integer Integer Integer DWORD Integer Integer Integer Integer Integer HANDLE Long Integer Integer Integer Integer NOTEHANDLE Long Integer Integer Integer Integer DBHANDLE Long Integer Integer Integer Integer MEMHANDLE Long Long Long Long Long STATUS Integer Integer Integer Integer Integer Char * String String String String String
LS2CAPI – Platform Libraries ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],   DEMO
LS2CAPI -  class:ls2capiBaseClass ,[object Object],[object Object],[object Object],[object Object],[object Object],   DEMO
LS2CAPI und Rich Text
LS2CAPI und Rich Text
LS2CAPI und Rich Text
Literatur Normunds Kalbernzin  –  LotusScript to Lotus C API Programming Guide  ( ls2capi.com ) Lee Powell  –  LotusScriptor's Plain Simple Guide to the Lotus Notes C++ API  Download  : http://www.eknori.de/downloads/capibook.pdf Ethann Castell –  Getting started with the C-API Control rich text content with precision using the C-API The View, 09 / 11 , 2007
Samples TriggerHappy http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/Trigger%20Happy DominoDefrag http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/DominoDefrag MailScan http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/MailScan Creating a custom Administration Process Request Handler http://www.ibm.com/developerworks/lotus/library/ls-Custom_AdminP_Handler/ Demo Applikation zur Session  http://openntf.org/Projects/codebin/codebin.nsf/CodeByDate/F8207E308820C2FA862576DD00255B67
Fragen Contact me at:  [email_address] Bitte das Ausfüllen der Session Bewertung nicht vergessen !
E N D E

Weitere ähnliche Inhalte

Was ist angesagt?

김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019
김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019
김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019
min woog kim
 
Windows system - memory개념잡기
Windows system - memory개념잡기Windows system - memory개념잡기
Windows system - memory개념잡기
ChangKyu Song
 
Spring Boot & WebSocket
Spring Boot & WebSocketSpring Boot & WebSocket
Spring Boot & WebSocket
Ming-Ying Wu
 

Was ist angesagt? (20)

Python 게임서버 안녕하십니까 : RPC framework 편
Python 게임서버 안녕하십니까 : RPC framework 편Python 게임서버 안녕하십니까 : RPC framework 편
Python 게임서버 안녕하십니까 : RPC framework 편
 
Windows Registered I/O (RIO) vs IOCP
Windows Registered I/O (RIO) vs IOCPWindows Registered I/O (RIO) vs IOCP
Windows Registered I/O (RIO) vs IOCP
 
Bash production guide
Bash production guideBash production guide
Bash production guide
 
Revoke-Obfuscation
Revoke-ObfuscationRevoke-Obfuscation
Revoke-Obfuscation
 
Qemu JIT Code Generator and System Emulation
Qemu JIT Code Generator and System EmulationQemu JIT Code Generator and System Emulation
Qemu JIT Code Generator and System Emulation
 
Json in Postgres - the Roadmap
 Json in Postgres - the Roadmap Json in Postgres - the Roadmap
Json in Postgres - the Roadmap
 
김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019
김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019
김민욱, (달빛조각사) 엘릭서를 이용한 mmorpg 서버 개발, NDC2019
 
Tanel Poder - Troubleshooting Complex Oracle Performance Issues - Part 1
Tanel Poder - Troubleshooting Complex Oracle Performance Issues - Part 1Tanel Poder - Troubleshooting Complex Oracle Performance Issues - Part 1
Tanel Poder - Troubleshooting Complex Oracle Performance Issues - Part 1
 
PostgreSQL Streaming Replication Cheatsheet
PostgreSQL Streaming Replication CheatsheetPostgreSQL Streaming Replication Cheatsheet
PostgreSQL Streaming Replication Cheatsheet
 
Introduction to PowerShell
Introduction to PowerShellIntroduction to PowerShell
Introduction to PowerShell
 
Kubernetes Forum Seoul 2019: Re-architecting Data Platform with Kubernetes
Kubernetes Forum Seoul 2019: Re-architecting Data Platform with KubernetesKubernetes Forum Seoul 2019: Re-architecting Data Platform with Kubernetes
Kubernetes Forum Seoul 2019: Re-architecting Data Platform with Kubernetes
 
Micrometerでメトリクスを収集してAmazon CloudWatchで可視化
Micrometerでメトリクスを収集してAmazon CloudWatchで可視化Micrometerでメトリクスを収集してAmazon CloudWatchで可視化
Micrometerでメトリクスを収集してAmazon CloudWatchで可視化
 
Clean Code na Prática
Clean Code na PráticaClean Code na Prática
Clean Code na Prática
 
High Performance Scaling Techniques in Golang Using Go Assembly
High Performance Scaling Techniques in Golang Using Go AssemblyHigh Performance Scaling Techniques in Golang Using Go Assembly
High Performance Scaling Techniques in Golang Using Go Assembly
 
Power shell basics day1
Power shell basics day1Power shell basics day1
Power shell basics day1
 
Windows system - memory개념잡기
Windows system - memory개념잡기Windows system - memory개념잡기
Windows system - memory개념잡기
 
[D2] java 애플리케이션 트러블 슈팅 사례 & pinpoint
[D2] java 애플리케이션 트러블 슈팅 사례 & pinpoint [D2] java 애플리케이션 트러블 슈팅 사례 & pinpoint
[D2] java 애플리케이션 트러블 슈팅 사례 & pinpoint
 
Iocp advanced
Iocp advancedIocp advanced
Iocp advanced
 
PostgreSQL Replication Tutorial
PostgreSQL Replication TutorialPostgreSQL Replication Tutorial
PostgreSQL Replication Tutorial
 
Spring Boot & WebSocket
Spring Boot & WebSocketSpring Boot & WebSocket
Spring Boot & WebSocket
 

Ähnlich wie C API for Lotus Notes & Domino

Einführung in .NET
Einführung in .NETEinführung in .NET
Einführung in .NET
Andreas Heil
 

Ähnlich wie C API for Lotus Notes & Domino (20)

C / C++ Api for Beginners
C / C++ Api for BeginnersC / C++ Api for Beginners
C / C++ Api for Beginners
 
C/ C++ for Notes & Domino Developers
C/ C++ for Notes & Domino DevelopersC/ C++ for Notes & Domino Developers
C/ C++ for Notes & Domino Developers
 
Templates, Code & Tools
Templates, Code & ToolsTemplates, Code & Tools
Templates, Code & Tools
 
Fachreferat: Visual Studio 2012, Windows 8 und .NET 4.5
Fachreferat: Visual Studio 2012, Windows 8 und .NET 4.5Fachreferat: Visual Studio 2012, Windows 8 und .NET 4.5
Fachreferat: Visual Studio 2012, Windows 8 und .NET 4.5
 
Was ist neu in .NET 4.5?
Was ist neu in .NET 4.5?Was ist neu in .NET 4.5?
Was ist neu in .NET 4.5?
 
Top 10 Internet Trends 2001
Top 10 Internet Trends 2001Top 10 Internet Trends 2001
Top 10 Internet Trends 2001
 
Was gibt es Neues im Docker-Universum
Was gibt es Neues im Docker-UniversumWas gibt es Neues im Docker-Universum
Was gibt es Neues im Docker-Universum
 
B3 Lotus Expeditor Und Composite Applications
B3 Lotus Expeditor Und Composite ApplicationsB3 Lotus Expeditor Und Composite Applications
B3 Lotus Expeditor Und Composite Applications
 
Kuck mal, Node.js! Einstieg für .NET Entwickler mit Visual Studio Code und Ty...
Kuck mal, Node.js! Einstieg für .NET Entwickler mit Visual Studio Code und Ty...Kuck mal, Node.js! Einstieg für .NET Entwickler mit Visual Studio Code und Ty...
Kuck mal, Node.js! Einstieg für .NET Entwickler mit Visual Studio Code und Ty...
 
elemente websolutions - Zusammenfassung T3DD09
elemente websolutions - Zusammenfassung T3DD09elemente websolutions - Zusammenfassung T3DD09
elemente websolutions - Zusammenfassung T3DD09
 
C++ kompakt
C++ kompaktC++ kompakt
C++ kompakt
 
Webtechnologien fuer das Frontend und Flash( Flex ) Vs Js( Ajax )
Webtechnologien fuer das Frontend und Flash( Flex ) Vs Js( Ajax )Webtechnologien fuer das Frontend und Flash( Flex ) Vs Js( Ajax )
Webtechnologien fuer das Frontend und Flash( Flex ) Vs Js( Ajax )
 
Webtechnologien für das Frontend & Javascribt( AJAX ) vs Flash( Flex )
Webtechnologien für das Frontend & Javascribt( AJAX ) vs Flash( Flex )Webtechnologien für das Frontend & Javascribt( AJAX ) vs Flash( Flex )
Webtechnologien für das Frontend & Javascribt( AJAX ) vs Flash( Flex )
 
Augmented Reality Workshop
Augmented Reality WorkshopAugmented Reality Workshop
Augmented Reality Workshop
 
Einführung in .NET
Einführung in .NETEinführung in .NET
Einführung in .NET
 
Roadshow: Einstieg in die Hybrid-App Entwicklung mit dem Intel XDK und Apache...
Roadshow: Einstieg in die Hybrid-App Entwicklung mit dem Intel XDK und Apache...Roadshow: Einstieg in die Hybrid-App Entwicklung mit dem Intel XDK und Apache...
Roadshow: Einstieg in die Hybrid-App Entwicklung mit dem Intel XDK und Apache...
 
Top 10 Internet Trends 2006
Top 10 Internet Trends 2006Top 10 Internet Trends 2006
Top 10 Internet Trends 2006
 
Webservice API - Webportale mit Force.com verbinden
Webservice API - Webportale mit Force.com verbindenWebservice API - Webportale mit Force.com verbinden
Webservice API - Webportale mit Force.com verbinden
 
Hands-on Workshop: API-Dokumentation mit OpenAPI / Swagger in ASP.NET Core
Hands-on Workshop: API-Dokumentation mit OpenAPI / Swagger in ASP.NET CoreHands-on Workshop: API-Dokumentation mit OpenAPI / Swagger in ASP.NET Core
Hands-on Workshop: API-Dokumentation mit OpenAPI / Swagger in ASP.NET Core
 
Ec2009 Templates
Ec2009 TemplatesEc2009 Templates
Ec2009 Templates
 

Mehr von Ulrich Krause

Dd13.2013.milano.open ntf
Dd13.2013.milano.open ntfDd13.2013.milano.open ntf
Dd13.2013.milano.open ntf
Ulrich Krause
 
Life in the fast lane. Full speed XPages
Life in the fast lane. Full speed XPagesLife in the fast lane. Full speed XPages
Life in the fast lane. Full speed XPages
Ulrich Krause
 
UKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basics
Ulrich Krause
 
Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)
Ulrich Krause
 

Mehr von Ulrich Krause (20)

What is new in Notes & Domino Deleopment V10.x
What is new in Notes & Domino Deleopment V10.xWhat is new in Notes & Domino Deleopment V10.x
What is new in Notes & Domino Deleopment V10.x
 
IBM Lotus Notes - From PLATO to the Leading Groupware Platform
IBM Lotus Notes - From PLATO to the Leading Groupware PlatformIBM Lotus Notes - From PLATO to the Leading Groupware Platform
IBM Lotus Notes - From PLATO to the Leading Groupware Platform
 
MWLUG 2015 - An Introduction to MVC
MWLUG 2015 - An Introduction to MVCMWLUG 2015 - An Introduction to MVC
MWLUG 2015 - An Introduction to MVC
 
Dr. Strangelove, or how I learned to love plugin development
Dr. Strangelove, or how I learned to love plugin developmentDr. Strangelove, or how I learned to love plugin development
Dr. Strangelove, or how I learned to love plugin development
 
La vita nella corsia di sorpasso; A tutta velocità, XPages!
La vita nella corsia di sorpasso; A tutta velocità, XPages!La vita nella corsia di sorpasso; A tutta velocità, XPages!
La vita nella corsia di sorpasso; A tutta velocità, XPages!
 
Dd13.2013.milano.open ntf
Dd13.2013.milano.open ntfDd13.2013.milano.open ntf
Dd13.2013.milano.open ntf
 
Life in the fast lane. Full speed XPages
Life in the fast lane. Full speed XPagesLife in the fast lane. Full speed XPages
Life in the fast lane. Full speed XPages
 
Life In The FastLane: Full Speed XPages
Life In The FastLane: Full Speed XPagesLife In The FastLane: Full Speed XPages
Life In The FastLane: Full Speed XPages
 
XPages Performance
XPages PerformanceXPages Performance
XPages Performance
 
Ec13 xpages-basic
Ec13 xpages-basicEc13 xpages-basic
Ec13 xpages-basic
 
UKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basics
 
[DanNotes] XPages - Beyound the Basics
[DanNotes] XPages - Beyound the Basics[DanNotes] XPages - Beyound the Basics
[DanNotes] XPages - Beyound the Basics
 
Extension Library - Viagra for XPages
Extension Library - Viagra for XPagesExtension Library - Viagra for XPages
Extension Library - Viagra for XPages
 
XPages - The Basics
XPages - The BasicsXPages - The Basics
XPages - The Basics
 
XPages -Beyond the Basics
XPages -Beyond the BasicsXPages -Beyond the Basics
XPages -Beyond the Basics
 
Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)
 
Dnug35 ak-dev.071111-cookbook
Dnug35 ak-dev.071111-cookbookDnug35 ak-dev.071111-cookbook
Dnug35 ak-dev.071111-cookbook
 
Dnug35 ak-dev.071111-basic
Dnug35 ak-dev.071111-basicDnug35 ak-dev.071111-basic
Dnug35 ak-dev.071111-basic
 
Dnug35 ak-dev.071111-beyond
Dnug35 ak-dev.071111-beyondDnug35 ak-dev.071111-beyond
Dnug35 ak-dev.071111-beyond
 
AdminCamp 2011 Performance
AdminCamp 2011 PerformanceAdminCamp 2011 Performance
AdminCamp 2011 Performance
 

Kürzlich hochgeladen

Kürzlich hochgeladen (13)

Zentrales Logdaten-Management in der KfW - Splunk Public Sector Summit 2024
Zentrales Logdaten-Management in der KfW - Splunk Public Sector Summit 2024Zentrales Logdaten-Management in der KfW - Splunk Public Sector Summit 2024
Zentrales Logdaten-Management in der KfW - Splunk Public Sector Summit 2024
 
Cyber-Sicherheit im Luftraum: Die Rolle von SIEM und SOC im Schutz kritischer...
Cyber-Sicherheit im Luftraum: Die Rolle von SIEM und SOC im Schutz kritischer...Cyber-Sicherheit im Luftraum: Die Rolle von SIEM und SOC im Schutz kritischer...
Cyber-Sicherheit im Luftraum: Die Rolle von SIEM und SOC im Schutz kritischer...
 
Private Cloud Monitoring, Security Monitoring & DevOps - Splunk Public Sector...
Private Cloud Monitoring, Security Monitoring & DevOps - Splunk Public Sector...Private Cloud Monitoring, Security Monitoring & DevOps - Splunk Public Sector...
Private Cloud Monitoring, Security Monitoring & DevOps - Splunk Public Sector...
 
Splunk für alle: Optimierte Prozesse für eine zuverlässige und störungsfreie ...
Splunk für alle: Optimierte Prozesse für eine zuverlässige und störungsfreie ...Splunk für alle: Optimierte Prozesse für eine zuverlässige und störungsfreie ...
Splunk für alle: Optimierte Prozesse für eine zuverlässige und störungsfreie ...
 
Mit Risikokapital Innovationen hervorbringen
Mit Risikokapital Innovationen hervorbringenMit Risikokapital Innovationen hervorbringen
Mit Risikokapital Innovationen hervorbringen
 
SOC ist kein Allheilmittel! - Splunk Public Sector Summit 2024
SOC ist kein Allheilmittel! - Splunk Public Sector Summit 2024SOC ist kein Allheilmittel! - Splunk Public Sector Summit 2024
SOC ist kein Allheilmittel! - Splunk Public Sector Summit 2024
 
Mandantenfähigkeit mit Splunk für den öffentlichen Bereich - Splunk Public Se...
Mandantenfähigkeit mit Splunk für den öffentlichen Bereich - Splunk Public Se...Mandantenfähigkeit mit Splunk für den öffentlichen Bereich - Splunk Public Se...
Mandantenfähigkeit mit Splunk für den öffentlichen Bereich - Splunk Public Se...
 
Ein Umbrella Monitoring für die e-Akte Hessen - Splunk Public Sector Summit 2024
Ein Umbrella Monitoring für die e-Akte Hessen - Splunk Public Sector Summit 2024Ein Umbrella Monitoring für die e-Akte Hessen - Splunk Public Sector Summit 2024
Ein Umbrella Monitoring für die e-Akte Hessen - Splunk Public Sector Summit 2024
 
RPA 2024: Rollen, Lebenszyklus, Trends & Chancen
RPA 2024: Rollen, Lebenszyklus, Trends & ChancenRPA 2024: Rollen, Lebenszyklus, Trends & Chancen
RPA 2024: Rollen, Lebenszyklus, Trends & Chancen
 
Compliance-Anforderungen erfüllen: Von der Standardlösung zur kundenspezifisc...
Compliance-Anforderungen erfüllen: Von der Standardlösung zur kundenspezifisc...Compliance-Anforderungen erfüllen: Von der Standardlösung zur kundenspezifisc...
Compliance-Anforderungen erfüllen: Von der Standardlösung zur kundenspezifisc...
 
Aktuelles aus der Cybercrime Ermittlungswelt - Splunk Public Sector Summit
Aktuelles aus der Cybercrime Ermittlungswelt - Splunk Public Sector SummitAktuelles aus der Cybercrime Ermittlungswelt - Splunk Public Sector Summit
Aktuelles aus der Cybercrime Ermittlungswelt - Splunk Public Sector Summit
 
Splunk als zentrale Datendrehscheibe zur Dienstleistersteuerung - Splunk Publ...
Splunk als zentrale Datendrehscheibe zur Dienstleistersteuerung - Splunk Publ...Splunk als zentrale Datendrehscheibe zur Dienstleistersteuerung - Splunk Publ...
Splunk als zentrale Datendrehscheibe zur Dienstleistersteuerung - Splunk Publ...
 
Transparenz? Leicht und zentral - Splunk Public Sector Summit 2024
Transparenz? Leicht und zentral - Splunk Public Sector Summit 2024Transparenz? Leicht und zentral - Splunk Public Sector Summit 2024
Transparenz? Leicht und zentral - Splunk Public Sector Summit 2024
 

C API for Lotus Notes & Domino

Hinweis der Redaktion

  1. http://www.billbuchan.com/web.nsf/d6plinks/BBUN-7L5KBS
  2. Warning: The gets function is very dangerous because it provides no protection against overflowing the string s. The GNU library includes it for compatibility only. You should always use fgets or getline instead. To remind you of this, the linker (if using GNU ld) will issue a warning whenever you use gets.
  3. http://www-10.lotus.com/ldd/46dom.nsf/DateAllThreadedweb/929f8d75d1c9f77385256cec0055a157?OpenDocument FREE DOWNLOAD - LotusScriptor's Plain Simple Guide To The Lotus Notes C++ API Posted by Lee Alan Powell on 17.Mar.03 at 11:35 AM using a Web browser Lee Powell: For all those interested parties, this book is now online and free as a value add to the Lotus community.
  4. http://www-10.lotus.com/ldd/46dom.nsf/DateAllThreadedweb/929f8d75d1c9f77385256cec0055a157?OpenDocument FREE DOWNLOAD - LotusScriptor's Plain Simple Guide To The Lotus Notes C++ API Posted by Lee Alan Powell on 17.Mar.03 at 11:35 AM using a Web browser Lee Powell: For all those interested parties, this book is now online and free as a value add to the Lotus community.
  5. http://www-10.lotus.com/ldd/46dom.nsf/DateAllThreadedweb/929f8d75d1c9f77385256cec0055a157?OpenDocument FREE DOWNLOAD - LotusScriptor's Plain Simple Guide To The Lotus Notes C++ API Posted by Lee Alan Powell on 17.Mar.03 at 11:35 AM using a Web browser Lee Powell: For all those interested parties, this book is now online and free as a value add to the Lotus community.