Jump to content
The Uniform Server Community

How Complete SRC


maximus
 Share

Recommended Posts

  • 2 weeks later...
  • 2 weeks later...

If you look at the top of file unicontrollerres.h you will see this line:

The following code comes from K:\lcc\lib\wizard\stddef.tpl */ :blink:

 

So I think the compiler was LCC

 

Additional information for that compiler can be found on this page:

 

http://www.q-software-solutions.de/products/lcc-win32/

 

All the best

Ric ;)

Link to comment
Share on other sites

If you look at the top of file unicontrollerres.h you will see this line:

The following code comes from K:\lcc\lib\wizard\stddef.tpl */ :blink:

 

So I think the compiler was LCC

 

Additional information for that compiler can be found on this page:

 

http://www.q-software-solutions.de/products/lcc-win32/

 

All the best

Ric ;)

It can't complete it too. :D

Link to comment
Share on other sites

Strange! Not sure what you mean by “It can't complete it too.”

I performed the following steps:

 

1) I download and installed lccwin2.exe

2) Created a new windows project named “unicontroller”

3) Used the wizard and accepted the defaults

4) Copied, unicontrollerres.h, unicontroller.c and unicontroller.rc

5) Ran “make” which produced an error addeded shell32.lib to linker

6) Ran “make” again had three warnings (lines 93, 94 and 95)

“pointer truncation when converting to unsigned short”

7) Ran the program, some of the text was masked changed this section:

 

// Create a label

HWND lblServer = CreateWindowEx(0,

"STATIC", "Uniform Server Core",

WS_CHILD|WS_VISIBLE, 10,80,70,40,

hWnd,NULL,NULL,0);

To:

// Create a label

HWND lblServer = CreateWindowEx(0,

"STATIC", "Uniform Server Core",

WS_CHILD|WS_VISIBLE, 10,80,70,50,

hWnd,NULL,NULL,0);

 

I was unable to resolve warning in 6) however since these are not errors ignored them.

Popped the result in US and it works.

 

I am not sure if any of the above will help.

 

All the best

Ric :blink:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...