mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-14 17:15:47 -04:00
Added initial solution to windows to import static application symbols into plugin dll :
pass handles to intialised interfaces via callback git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-win_plugin_solve@4630 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c4cc7a6bb7
commit
341320da97
14 changed files with 179 additions and 51 deletions
|
@ -23,6 +23,8 @@
|
|||
#define _LINKS_DIALOG_H
|
||||
|
||||
#include <gui/mainpage.h>
|
||||
#include <retroshare/rsfiles.h>
|
||||
#include <retroshare/rspeers.h>
|
||||
#include "ui_LinksDialog.h"
|
||||
|
||||
|
||||
|
@ -32,7 +34,7 @@ class LinksDialog : public MainPage
|
|||
|
||||
public:
|
||||
/** Default Constructor */
|
||||
LinksDialog(QWidget *parent = 0);
|
||||
LinksDialog(RsPeers* peers, RsFiles* files, QWidget *parent = 0);
|
||||
/** Default Destructor */
|
||||
|
||||
void insertExample();
|
||||
|
@ -84,6 +86,11 @@ void updateComments(std::string rid, std::string pid);
|
|||
|
||||
QTreeWidget *exampletreeWidget;
|
||||
|
||||
// gui interface
|
||||
RsPeers* mPeers;
|
||||
RsFiles* mFiles;
|
||||
|
||||
|
||||
/** Qt Designer generated object */
|
||||
Ui::LinksDialog ui;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue