Languages

Menu
Sites
Language
Tizen Docs give C headers but not Lib names??

Trying to implement some Unity3D C# plugin code but am finding the Tizen docs to be rather lacking.
I need to know what Lib names are used for specific headers. Such as the message box api: https://developer.tizen.org/dev-gui...ODULE.html#ga32013c0d16b46a60be3f837c6474e4be

It tells me the header required but not the lib its used in. BlackBerry, MS and Apple all list this in there docs and is part of normal doc gen. Why Tizen doesn't give you this is idk. Is there an easy quick way to find this info? Thought someone might know.

What lib is used for: notification.h ??

Responses

3 Replies
Andrew Witte

I see its in the top of the header so no big deal.

Jeongsu Kim

It seems that libraries are not documented because all libraries are linked by default.
You don't need to worry about unnecessary libraries because they are not linked if not used.

Anyway, you can find it from libraries in linux.

cd ~/tizen-sdk/platforms/mobile-2.3/rootstraps/mobile-2.3-device.core/usr/lib

for i in *.so; do echo ${i}; readelf -sW ${i} | grep API_YOU_WANT_TO_KNOW; done

Andrew Witte

Yes I do need to worry about what libs are used as i'm NOT using C/C++ i'm using C#.

You invoke methods name given the a lib name in C# via "DLLImport".  Any lange including Java ect is going to need this reference.  All other API docs I know of have this listed.  Tizen should too.