diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-24 10:14:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-24 10:14:44 +0000 |
commit | c1b07589623a9d8401982e10a38faaddecd42496 (patch) | |
tree | f4458e6fc2a6dceac7672794316ef69aa81c993c /plugins/ExternalAPI/m_statusplugins.h | |
parent | 16b08498841634e581ef4e366d9a0bb533e6b513 (diff) |
StartupStatus:
- Unicode profile names;
- the correct profile is displayed in the confirmation dialog
- special resource files for VC6 removed;
- code cleaning;
- version bump.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4172 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/m_statusplugins.h')
-rw-r--r-- | plugins/ExternalAPI/m_statusplugins.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/ExternalAPI/m_statusplugins.h b/plugins/ExternalAPI/m_statusplugins.h index 34a3f1da90..065d91119f 100644 --- a/plugins/ExternalAPI/m_statusplugins.h +++ b/plugins/ExternalAPI/m_statusplugins.h @@ -68,24 +68,24 @@ typedef struct { #define MS_SS_GETPROFILECOUNT "StartupStatus/GetProfileCount"
// wParam = profile number
-// lParam = char* (must be allocated, size = 128)
+// lParam = TCHAR* (must be allocated, size = 128)
// returns 0 on success
#define MS_SS_GETPROFILENAME "StartupStatus/GetProfileName"
// -- AdvancedAutoAway --
-typedef enum {
- ACTIVE, // user is active
- STATUS1_SET, // first status change happened
- STATUS2_SET, // second status change happened
- SET_ORGSTATUS, // user was active again, original status will be restored
- HIDDEN_ACTIVE // user is active, but this is not shown to the outside world
+typedef enum {
+ ACTIVE, // user is active
+ STATUS1_SET, // first status change happened
+ STATUS2_SET, // second status change happened
+ SET_ORGSTATUS, // user was active again, original status will be restored
+ HIDDEN_ACTIVE // user is active, but this is not shown to the outside world
} STATES;
typedef struct {
PROTOCOLSETTINGEX* protocolSetting;
int originalStatusMode; // this is set only when going from ACTIVE to STATUS1_SET (or to STATUS2_SET)
// (note: this is therefore not always valid)
- STATES
+ STATES
oldState, // state before the call
curState; // current state
BOOL bStatusChanged; // the status of the protocol will actually be changed
|