diff options
Diffstat (limited to 'plugins/AVS/src/acc.h')
-rw-r--r-- | plugins/AVS/src/acc.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/AVS/src/acc.h b/plugins/AVS/src/acc.h index 11b235adc0..79f0d826a1 100644 --- a/plugins/AVS/src/acc.h +++ b/plugins/AVS/src/acc.h @@ -21,20 +21,6 @@ Boston, MA 02111-1307, USA. #ifndef __ACC_H__
# define __ACC_H__
-class A2T
-{
- TCHAR* buf;
-
-public:
- A2T( const char* s ) : buf( mir_a2t( s )) {}
- A2T( const char* s, int cp ) : buf( mir_a2t_cp( s, cp )) {}
- ~A2T() { mir_free(buf); }
-
- __forceinline operator TCHAR*() const
- { return buf;
- }
-};
-
INT_PTR avSetAvatar( HANDLE hContact, TCHAR* tszPath );
INT_PTR avSetMyAvatar( char* szProto, TCHAR* tszPath );
|