summaryrefslogtreecommitdiff
path: root/!NotAdopted/Skype/skypeprofile.h
diff options
context:
space:
mode:
Diffstat (limited to '!NotAdopted/Skype/skypeprofile.h')
-rw-r--r--!NotAdopted/Skype/skypeprofile.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/!NotAdopted/Skype/skypeprofile.h b/!NotAdopted/Skype/skypeprofile.h
new file mode 100644
index 0000000000..60531128d1
--- /dev/null
+++ b/!NotAdopted/Skype/skypeprofile.h
@@ -0,0 +1,33 @@
+// System includes
+#include <stdio.h>
+#include <windows.h>
+#include <commctrl.h>
+#include <process.h>
+#include <time.h>
+#include "resource.h"
+#include "skype.h"
+
+#pragma warning (push)
+#pragma warning (disable: 4100) // unreferenced formal parameter
+// Miranda database access
+#include "../../include/newpluginapi.h"
+#include "../../include/m_database.h"
+#pragma warning (pop)
+
+typedef struct
+{
+ TCHAR FullName[256];
+ char HomePhone[256];
+ char OfficePhone[256];
+ char HomePage[256];
+ TCHAR City[256];
+ TCHAR Province[256];
+ BYTE Sex;
+ SYSTEMTIME Birthday;
+} SkypeProfile;
+
+void SkypeProfile_Load(SkypeProfile *pstProf);
+void SkypeProfile_Save(SkypeProfile *pstProf);
+void SkypeProfile_Free(SkypeProfile *pstProf);
+void SkypeProfile_LoadFromSkype(SkypeProfile *pstProf);
+void SkypeProfile_SaveToSkype(SkypeProfile *pstProf);