blob: e6ea046c6c7ec734a606665ae5330e1259f6ad8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Benjamin DELPY `gentilkiwi`
http://blog.gentilkiwi.com
benjamin@gentilkiwi.com
Licence : http://creativecommons.org/licenses/by/3.0/fr/
*/
#pragma once
#include "kmodel.h"
#include "mod_system.h"
__kextdll bool __cdecl getDescription(wstring * maDescription);
bool getNameOfDesktop(HDESK desktop, wstring &bureau);
__kextdll bool __cdecl echange(mod_pipe * monPipe, vector<wstring> * mesArguments);
__kextdll bool __cdecl getDesktop(mod_pipe * monPipe, vector<wstring> * mesArguments);
|