mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-22 15:24:56 -04:00
Fixed the update-libraries script (thanks to Anderson Souza) and added a basic Linux daemon for the server
This commit is contained in:
parent
bb904c4698
commit
5444c9aea6
19 changed files with 260 additions and 84 deletions
2
Client/Resources/Resource.h
Normal file
2
Client/Resources/Resource.h
Normal file
|
@ -0,0 +1,2 @@
|
|||
#define ID_VERSIONINFO 1
|
||||
#define IDI_TSO 2
|
32
Client/Resources/Resource.rc
Normal file
32
Client/Resources/Resource.rc
Normal file
|
@ -0,0 +1,32 @@
|
|||
#include <windows.h>
|
||||
#include "../version.h"
|
||||
#include "Resource.h"
|
||||
|
||||
IDI_TSO ICON "TSO.ico"
|
||||
|
||||
ID_VERSIONINFO VERSIONINFO
|
||||
FILEVERSION VERSION_A,VERSION_B,VERSION_C,VERSION_D
|
||||
PRODUCTVERSION VERSION_A,VERSION_B,VERSION_C,VERSION_D
|
||||
FILEOS 0x00040000L //Windows 32-bit+
|
||||
FILETYPE 1 //1 is exe, 2 is dll, and so on.
|
||||
//The list can be found at <http://msdn.microsoft.com/en-us/library/aa381058.aspx>
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904B0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Maxis™"
|
||||
VALUE "FileDescription", "The Sims Online"
|
||||
VALUE "FileVersion", VERSIONSTR
|
||||
VALUE "InternalName", "TSO_NIOTSO"
|
||||
VALUE "LegalCopyright", "Copyright © 2002-2005 Maxis™"
|
||||
VALUE "OriginalFilename", "TSO.exe"
|
||||
VALUE "ProductName", "The Sims Online"
|
||||
VALUE "ProductVersion", VERSIONSTR
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x0409, 0x04B0
|
||||
END
|
||||
END
|
BIN
Client/Resources/TSO.ico
Normal file
BIN
Client/Resources/TSO.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 61 KiB |
Loading…
Add table
Add a link
Reference in a new issue