summary refs log blame commit diff stats
path: root/plugins/xtray/resource.h
blob: b8008c2c49a6d7b6b6efbd8f4c70092fb6bdab84 (plain) (tree)














































                                                
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by resource.rc
//
#define IDD_ALERTS                      104
#define IDD_EVENTS                      105
#define IDD_SETTINGS                    106
#define IDD_ALERT                       107
#define IDD_PREF                        108
#define IDD_ABOUT                       109
#define IDR_TRAY_MENU                   110
#define ICO_XCHAT                       111
#define ICO_BANNED                      112
#define ICO_CHANMSG                     113
#define ICO_DISCONNECTED                114
#define ICO_HIGHLIGHT                   115
#define ICO_KICKED                      116
#define ICO_PMSG                        117
#define ICO_SNOTICE                     118
#define IDB_SD_LOGO                     119
#define IDC_PREF_OK                     1014
#define IDC_PREF_CANCEL                 1015
#define IDC_PREF_APPLY                  1016
#define IDC_AWAY_MSG                    1017
#define IDC_ALERT_TIME                  1018
#define IDC_TAB_CONTROL                 1019
#define IDC_ALERT_HOTKEY                1020
#define IDC_ALERT_MSG                   1021
#define IDC_ALERT_HOTKEY_TEXT           1022
#define IDC_ALERT_TIME_TEXT             1023
#define ACT_EXIT                        40001
#define ACT_SETTINGS                    40002
#define ACT_AWAY                        40003
#define ACT_BACK                        40004
#define ACT_RESTORE                     40005
#define IDC_STATIC                      -1

// Next default values for new objects
// 
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        120
#define _APS_NEXT_COMMAND_VALUE         40006
#define _APS_NEXT_CONTROL_VALUE         1024
#define _APS_NEXT_SYMED_VALUE           101
#endif
#endif
right notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef KEYSTORE_H #define KEYSTORE_H #ifdef _MSC_VER #include "bool.h" #else #include <stdbool.h> #endif #include <stddef.h> char *keystore_get_key(const char *nick); bool keystore_store_key(const char *nick, const char *key); bool keystore_delete_nick(const char *nick); void keystore_secure_free(void *ptr, size_t size); #endif