Commit c12382994a16046947022cd189098e426c3838fb
1 parent
aafda80f
Exists in
develop
Updating MSVC build.
Showing
2 changed files
with
6 additions
and
3 deletions
Show diff stats
client/src/session/remote/private.h
| @@ -167,6 +167,7 @@ | @@ -167,6 +167,7 @@ | ||
| 167 | unsigned short setCursor(unsigned short row, unsigned short col) override; | 167 | unsigned short setCursor(unsigned short row, unsigned short col) override; |
| 168 | unsigned short getCursorAddress() override; | 168 | unsigned short getCursorAddress() override; |
| 169 | Session::Cursor getCursorPosition() override; | 169 | Session::Cursor getCursorPosition() override; |
| 170 | + | ||
| 170 | void setProperty(const char *name, const int value) override; | 171 | void setProperty(const char *name, const int value) override; |
| 171 | void setProperty(const char *name, const unsigned int value) override; | 172 | void setProperty(const char *name, const unsigned int value) override; |
| 172 | void setProperty(const char *name, const bool value) override; | 173 | void setProperty(const char *name, const bool value) override; |
win/Makefile.msc
| @@ -34,6 +34,7 @@ OBJ_FILES= \ | @@ -34,6 +34,7 @@ OBJ_FILES= \ | ||
| 34 | client\src\core\events.obj \ | 34 | client\src\core\events.obj \ |
| 35 | client\src\core\session.obj \ | 35 | client\src\core\session.obj \ |
| 36 | client\src\core\windows\attribute.obj \ | 36 | client\src\core\windows\attribute.obj \ |
| 37 | + client\src\core\windows\dynamic\init.obj \ | ||
| 37 | client\src\core\windows\pop.obj \ | 38 | client\src\core\windows\pop.obj \ |
| 38 | client\src\core\windows\push.obj \ | 39 | client\src\core\windows\push.obj \ |
| 39 | client\src\core\windows\request.obj \ | 40 | client\src\core\windows\request.obj \ |
| @@ -48,13 +49,12 @@ OBJ_FILES= \ | @@ -48,13 +49,12 @@ OBJ_FILES= \ | ||
| 48 | client\src\host\string.obj \ | 49 | client\src\host\string.obj \ |
| 49 | client\src\session\action.obj \ | 50 | client\src\session\action.obj \ |
| 50 | client\src\session\get.obj \ | 51 | client\src\session\get.obj \ |
| 51 | - client\src\session\set.obj \ | ||
| 52 | - client\src\session\tools.obj \ | ||
| 53 | client\src\session\local\actions.obj \ | 52 | client\src\session\local\actions.obj \ |
| 54 | client\src\session\local\attribute.obj \ | 53 | client\src\session\local\attribute.obj \ |
| 55 | client\src\session\local\events.obj \ | 54 | client\src\session\local\events.obj \ |
| 56 | client\src\session\local\get.obj \ | 55 | client\src\session\local\get.obj \ |
| 57 | client\src\session\local\init.obj \ | 56 | client\src\session\local\init.obj \ |
| 57 | + client\src\session\local\properties.obj \ | ||
| 58 | client\src\session\local\set.obj \ | 58 | client\src\session\local\set.obj \ |
| 59 | client\src\session\local\wait.obj \ | 59 | client\src\session\local\wait.obj \ |
| 60 | client\src\session\remote\actions.obj \ | 60 | client\src\session\remote\actions.obj \ |
| @@ -65,7 +65,9 @@ OBJ_FILES= \ | @@ -65,7 +65,9 @@ OBJ_FILES= \ | ||
| 65 | client\src\session\remote\tools.obj \ | 65 | client\src\session\remote\tools.obj \ |
| 66 | client\src\session\remote\wait.obj \ | 66 | client\src\session\remote\wait.obj \ |
| 67 | client\src\session\remote\windows\request.obj \ | 67 | client\src\session\remote\windows\request.obj \ |
| 68 | - client\src\session\remote\windows\session.obj | 68 | + client\src\session\remote\windows\session.obj \ |
| 69 | + client\src\session\set.obj \ | ||
| 70 | + client\src\session\tools.obj | ||
| 69 | 71 | ||
| 70 | .cc.obj: | 72 | .cc.obj: |
| 71 | @echo Compiling... | 73 | @echo Compiling... |