repo.or.cz
/
kdebindings.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Add QtUiTools as a seperate sub-project and Nepomuk C# bindings
[kdebindings.git]
/
csharp
/
nepomuk
/
src
/
Nepomuk.cs
blob
5a94c5cf8e86289449f458166944a31efe00e518
1
namespace
Nepomuk
{
2
3
using
Qyoto
;
4
5
using
System
;
6
using
System
.
Runtime
.
InteropServices
;
7
8
public class
InitNepomuk
{
9
[
DllImport
(
"libnepomuk-sharp"
,
CharSet
=
CharSet
.
Ansi
)]
10
static extern void
Init_Nepomuk
();
11
12
public static void
InitSmoke
() {
13
Init_Nepomuk
();
14
}
15
}
16
}