summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_user.h
diff options
context:
space:
mode:
authorAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2011-10-28 10:37:08 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2011-10-28 10:37:08 +0200
commit0d2cf007fbc852d2b9a745d792f7d4626dbe14f6 (patch)
treeff66380f1a57a267ee5b5f2bb2a2d37e02dc2e9c /include/dlt/dlt_user.h
parent62c994014e24b3eee0bf1da5b09d8c797bd5b4f3 (diff)
downloadDLT-daemon-0d2cf007fbc852d2b9a745d792f7d4626dbe14f6.tar.gz
Reverted changes in dlt_register_app() function.
Added new dlt_check_library_version() function.
Diffstat (limited to 'include/dlt/dlt_user.h')
-rwxr-xr-xinclude/dlt/dlt_user.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/dlt/dlt_user.h b/include/dlt/dlt_user.h
index 9fc5df4..db5b954 100755
--- a/include/dlt/dlt_user.h
+++ b/include/dlt/dlt_user.h
@@ -394,12 +394,20 @@ int dlt_init_file(const char *name);
int dlt_free();
/**
+ * Check the library version of DLT library.
+ * @param user_major_version the major version to be compared
+ * @param user_minor_version the minor version to be compared
+ * @return negative value if there was an error
+ */
+int dlt_check_library_version(const char * user_major_version, const char * user_minor_version);
+
+/**
* Register an application in the daemon.
* @param appid four byte long character array with the application id
* @param description long name of the application
* @return negative value if there was an error
*/
-int dlt_register_app(const char *appid, const char * description, const char * user_major_version, const char * user_minor_version);
+int dlt_register_app(const char *appid, const char * description);
/**
* Unregister an application in the daemon.