diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-08 19:15:04 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-08 19:15:04 +0300 |
commit | 39a227d88a3bfaab32b18e4bb961948864085f11 (patch) | |
tree | 5a52ed2b69767eaaba1c6c03513a8de52010139d /plugins/SecureIM/src/secureim.h | |
parent | eebfe35f7b33e1d2d307369ce440e8c3239a79ac (diff) |
fixes #3859 (SecureIM: перевод не помещается)
Diffstat (limited to 'plugins/SecureIM/src/secureim.h')
-rw-r--r-- | plugins/SecureIM/src/secureim.h | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/plugins/SecureIM/src/secureim.h b/plugins/SecureIM/src/secureim.h index 41f9f40cad..ddbf44feec 100644 --- a/plugins/SecureIM/src/secureim.h +++ b/plugins/SecureIM/src/secureim.h @@ -33,7 +33,6 @@ #define SiG_SECP 12
#define SiG_PGPM 13
#define SiG_NONE -1
-#define SiG_GAME -2
struct SIG {
char *sig;
@@ -41,33 +40,7 @@ struct SIG { char key;
};
-const SIG signs[] = {
- {"----Key3@hell----", 17, SiG_KEYR},
- {"----Key4@hell----", 17, SiG_KEYR},
- {"----Secured@hell----", 20, SiG_ENON},
- {"----Offline@hell----", 20, SiG_ENOF},
- {"----Resend@hell----", 19, SiG_RSND},
- {"----INIT@HELL----", 17, SiG_INIT},
- {"----DEINIT@HELL----", 19, SiG_DEIN},
- {"----DISABLED@HELL----", 21, SiG_DISA},
- {"----FAKE@HELL----", 17, SiG_FAKE},
- {"----KeyA@hell----", 17, SiG_KEYA},
- {"----KeyB@hell----", 17, SiG_KEYB},
- {"----Part@hell----", 17, SiG_PART},
- {"[SECURE]", 8, SiG_SECU},
- {"[$ECURE]", 8, SiG_SECP},
- {"-----BEGIN PGP MESSAGE-----", 27, SiG_PGPM},
- {"@@BattleShip", 12, SiG_GAME},
- {"GoMoku 0.0.2.2:", 15, SiG_GAME},
- {"@@GoMoku", 8, SiG_GAME},
- {"pbiChess:", 9, SiG_GAME},
- {"pbiReverse:", 11, SiG_GAME},
- {"pbiCorners:", 11, SiG_GAME},
- {"pbiCheckersInt:", 15, SiG_GAME},
- {"pbiCheckersRus:", 15, SiG_GAME},
- {"pbiCheckersPool:", 16, SiG_GAME},
- {0}
-};
+extern const SIG signs[];
#define SIG_KEY3 signs[ 0].sig
#define SIG_KEY4 signs[ 1].sig
|