diff options
author | jsorg71 <jsorg71> | 2009-09-06 01:57:05 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2009-09-06 01:57:05 +0000 |
commit | 52af65580054899b808f36f2a7217b55ddf9d9eb (patch) | |
tree | a4d62ed204b279b6736fa05fd3ae5e5b3eabd99b /sesman/session.h | |
parent | 2a4515783ab97c19129ab28da93b119f0420dcbe (diff) | |
download | xrdp-proprietary-52af65580054899b808f36f2a7217b55ddf9d9eb.tar.gz xrdp-proprietary-52af65580054899b808f36f2a7217b55ddf9d9eb.zip |
use type when looking for a session
Diffstat (limited to 'sesman/session.h')
-rw-r--r-- | sesman/session.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sesman/session.h b/sesman/session.h index adc4b083..d4043146 100644 --- a/sesman/session.h +++ b/sesman/session.h @@ -90,9 +90,9 @@ struct session_chain * */ struct session_item* DEFAULT_CC -session_get_bydata(char* name, int width, int height, int bpp); +session_get_bydata(char* name, int width, int height, int bpp, int type); #ifndef session_find_item - #define session_find_item(a, b, c, d) session_get_bydata(a, b, c, d); + #define session_find_item(a, b, c, d, e) session_get_bydata(a, b, c, d, e); #endif /** |