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 | 167 | unsigned short setCursor(unsigned short row, unsigned short col) override; |
| 168 | 168 | unsigned short getCursorAddress() override; |
| 169 | 169 | Session::Cursor getCursorPosition() override; |
| 170 | + | |
| 170 | 171 | void setProperty(const char *name, const int value) override; |
| 171 | 172 | void setProperty(const char *name, const unsigned int value) override; |
| 172 | 173 | void setProperty(const char *name, const bool value) override; | ... | ... |
win/Makefile.msc
| ... | ... | @@ -34,6 +34,7 @@ OBJ_FILES= \ |
| 34 | 34 | client\src\core\events.obj \ |
| 35 | 35 | client\src\core\session.obj \ |
| 36 | 36 | client\src\core\windows\attribute.obj \ |
| 37 | + client\src\core\windows\dynamic\init.obj \ | |
| 37 | 38 | client\src\core\windows\pop.obj \ |
| 38 | 39 | client\src\core\windows\push.obj \ |
| 39 | 40 | client\src\core\windows\request.obj \ |
| ... | ... | @@ -48,13 +49,12 @@ OBJ_FILES= \ |
| 48 | 49 | client\src\host\string.obj \ |
| 49 | 50 | client\src\session\action.obj \ |
| 50 | 51 | client\src\session\get.obj \ |
| 51 | - client\src\session\set.obj \ | |
| 52 | - client\src\session\tools.obj \ | |
| 53 | 52 | client\src\session\local\actions.obj \ |
| 54 | 53 | client\src\session\local\attribute.obj \ |
| 55 | 54 | client\src\session\local\events.obj \ |
| 56 | 55 | client\src\session\local\get.obj \ |
| 57 | 56 | client\src\session\local\init.obj \ |
| 57 | + client\src\session\local\properties.obj \ | |
| 58 | 58 | client\src\session\local\set.obj \ |
| 59 | 59 | client\src\session\local\wait.obj \ |
| 60 | 60 | client\src\session\remote\actions.obj \ |
| ... | ... | @@ -65,7 +65,9 @@ OBJ_FILES= \ |
| 65 | 65 | client\src\session\remote\tools.obj \ |
| 66 | 66 | client\src\session\remote\wait.obj \ |
| 67 | 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 | 72 | .cc.obj: |
| 71 | 73 | @echo Compiling... | ... | ... |