diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-06-18 09:46:17 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-06-18 09:46:17 +0000 |
commit | ed71ff438fb48e32346480bda3b7214b9f2f487b (patch) | |
tree | 479d63b103adbeec9b4fb2c4e44ec2163d1c25ab /plugins/FileAsMessage/src/dialog.h | |
parent | da5e08b259448b19877681e41e3f223784875481 (diff) |
temporary revert (until Unicode version is fully ready and working)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9536 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage/src/dialog.h')
-rw-r--r-- | plugins/FileAsMessage/src/dialog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/FileAsMessage/src/dialog.h b/plugins/FileAsMessage/src/dialog.h index cf6696f956..962781b661 100644 --- a/plugins/FileAsMessage/src/dialog.h +++ b/plugins/FileAsMessage/src/dialog.h @@ -64,7 +64,7 @@ public: HANDLE hFile, hMapping;
uchar *lpData;
- TCHAR *filename;
+ char *filename;
uint chunkIndx; // next chunk to send
uint chunkCount; // count of chunks
uint chunkSent;
@@ -96,13 +96,13 @@ public: void updateProgress();
void updateTitle();
- void perform(TCHAR *str);
+ void perform(char *str);
void cmdACCEPT();
- void cmdDACK(TCHAR *data);
+ void cmdDACK(char *data);
void sendReq();
- int sendCmd(int id, int cmd, TCHAR *szParam, TCHAR *szPrefix = NULL);
+ int sendCmd(int id, int cmd, char *szParam, char *szPrefix = NULL);
- void cmdDATA(TCHAR *data);
+ void cmdDATA(char *data);
void cmdEND();
int createTransfer();
@@ -110,7 +110,7 @@ public: void onSendTimer();
void onRecvTimer();
- void incomeRequest(TCHAR *data);
+ void incomeRequest(char *data);
};
|