diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-19 18:52:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-19 18:52:00 +0000 |
commit | 65c4f834ce1895cf4f3127f584458cc0af15c255 (patch) | |
tree | 23fc97a2dd5a30f36834eeb101e8c658a903ab45 /src/modules/database/profilemanager.h | |
parent | 1bbbc601b0bb2297c8074bdacf3d6ef6cb3491e1 (diff) |
more fixes for Profile Manager
git-svn-id: http://svn.miranda-ng.org/main/trunk@9867 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/database/profilemanager.h')
-rw-r--r-- | src/modules/database/profilemanager.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/modules/database/profilemanager.h b/src/modules/database/profilemanager.h index f23aff2271..dd16750c47 100644 --- a/src/modules/database/profilemanager.h +++ b/src/modules/database/profilemanager.h @@ -24,11 +24,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. struct PROFILEMANAGERDATA
{
- TCHAR *szProfile; // in/out
- TCHAR *szProfileDir; // in/out
- BOOL noProfiles; // in
- BOOL newProfile; // out
- DATABASELINK *dblink; // out
+ TCHAR *szProfile; // in/out
+ TCHAR *szProfileDir; // in/out
+ BOOL noProfiles; // in
+
+ BOOL bRun; // out
+ BOOL newProfile; // out
+ DATABASELINK *dblink; // out
};
char* makeFileName(const TCHAR *tszOriginalName);
|