Changeset 244 in Main for trunk/Server


Ignore:
Timestamp:
Oct 4, 2024, 5:04:15 AM (6 weeks ago)
Author:
Nishi
Message:

adding gui manager

Location:
trunk/Server
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/Makefile

    r215 r244  
    5555        brc32 -r -fo$@ tewi.rc
    5656
     57gui.res: gui.rc gui.h
     58        $(WINDRES) gui.rc -O coff -o $@
     59
     60gui_vc6.res: gui.rc gui.h
     61        rc /fo$@ gui.rc
     62
     63gui_bcc.res: gui.rc gui.h
     64        brc32 -r -fo$@ gui.rc
     65
    5766clean:
    5867        rm -f *.o tewi *.exe *.res *.elf *.sfo *.pbp *.self *.pkg *.obj
  • trunk/Server/main.c

    r219 r244  
    88
    99#pragma resource "tewi_bcc.res"
     10#pragma resource "gui_bcc.res"
    1011
    1112#endif
     
    3132#include "tw_version.h"
    3233
    33 #if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__)
     34#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
    3435#include <windows.h>
    3536#endif
     
    525526#endif
    526527
     528#if !defined(BUILD_GUI) || !(defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__))
    527529int main(int argc, char** argv) {
    528530        int st;
     
    705707        return 0;
    706708}
     709#endif
    707710
    708711int startup(int argc, char** argv) {
  • trunk/Server/tewi.rc

    r128 r244  
    33#include "../config.h"
    44
    5 id ICON "../Binary/tewi.ico"
     5TEWI ICON "../Binary/tewi.ico"
    66VS_VERSION_INFO VERSIONINFO
    77        FILEVERSION 1,0,0,0
Note: See TracChangeset for help on using the changeset viewer.