mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
39 lines
1.0 KiB
C
39 lines
1.0 KiB
C
|
/*
|
||
|
* gnome-keyring
|
||
|
*
|
||
|
* Copyright (C) 2009 Stefan Walter
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Lesser General Public License as
|
||
|
* published by the Free Software Foundation; either version 2.1 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this program; if not, see
|
||
|
* <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#ifndef __GKD_CONTROL_CODES_H__
|
||
|
#define __GKD_CONTROL_CODES_H__
|
||
|
|
||
|
enum {
|
||
|
GKD_CONTROL_OP_INITIALIZE,
|
||
|
GKD_CONTROL_OP_UNLOCK,
|
||
|
GKD_CONTROL_OP_CHANGE,
|
||
|
GKD_CONTROL_OP_QUIT
|
||
|
};
|
||
|
|
||
|
enum {
|
||
|
GKD_CONTROL_RESULT_OK,
|
||
|
GKD_CONTROL_RESULT_DENIED,
|
||
|
GKD_CONTROL_RESULT_FAILED,
|
||
|
GKD_CONTROL_RESULT_NO_DAEMON
|
||
|
};
|
||
|
|
||
|
#endif /* __GKD_CONTROL_CODES_H__ */
|