Skip to content

Commit

Permalink
Worked on module interface, sessionmanager and PropertyManager
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHaimberger authored and bmiklautz committed Oct 31, 2013
1 parent c25042c commit 04894a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions session-manager/common/module/ModuleManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@

#include <vector>

#include <config/PropertyCWrapper.h>

namespace freerds{
namespace sessionmanager{
namespace module{
Expand Down
6 changes: 5 additions & 1 deletion session-manager/module/X11/x11_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ char * x11_rds_module_start(RDS_MODULE_COMMON * module)
fprintf(stderr, "Process started: %d\n", status);

//hClientPipe = freerds_named_pipe_connect(SessionId, "X11",5 * 1000);
if (!WaitNamedPipeA(pipeName, 5 * 10000))
if (!WaitNamedPipeA(pipeName, 5 * 1000))
{
fprintf(stderr, "WaitNamedPipe failure: %s\n", pipeName);
return NULL;
Expand Down Expand Up @@ -228,5 +228,9 @@ int RdsModuleEntry(RDS_MODULE_ENTRY_POINTS* pEntryPoints)
gGetPropertyNumber = pEntryPoints->getPropertyNumber;
gGetPropertyString = pEntryPoints->getPropertyString;

gGetPropertyBool = pEntryPoints->getPropertyBool;
gGetPropertyNumber = pEntryPoints->getPropertyNumber;
gGetPropertyString = pEntryPoints->getPropertyString;

return 0;
}

0 comments on commit 04894a4

Please sign in to comment.