mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-05 06:00:29 -04:00
Fully functional cst parser.
New client code for Windows. The window does not appear until the OpenGL rendering context has completely initialized and (one day) has the first frame ready to draw.
This commit is contained in:
parent
b746dbe407
commit
8bb608d5ce
28 changed files with 897 additions and 107 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