|
2 registered members (Grant, AndrewAMD),
911
guests, and 9
spiders. |
|
Key:
Admin,
Global Mod,
Mod
|
|
|
Lite-C Compiler and Compiler Output
#365679
03/28/11 14:17
03/28/11 14:17
|
Joined: Dec 2008
Posts: 1,218 Germany
Rackscha
OP
Serious User
|
OP
Serious User
Joined: Dec 2008
Posts: 1,218
Germany
|
Hello, Iam currently thinking about creating a Lite-C IDE. I have some question on the compiler. (I have Comercial)
-Can i Hide the Compilewindow in devversion? - I know its possible to output the compiler to a txt(which command? cant find it anymore), but is it posssible to access it with Windows-Pipes too? - and is it possible to compile without executing the code?
Greets Rackscha
Last edited by Rackscha; 03/28/11 14:18.
MY Website with news of my projects: (for example my current Muliplayer Bomberman, GenesisPrecompiler for LiteC and TileMaster, an easy to use Tile editor) Sparetime-Development
|
|
|
Re: Lite-C Compiler and Compiler Output
[Re: jcl]
#365682
03/28/11 14:41
03/28/11 14:41
|
Joined: Dec 2008
Posts: 1,218 Germany
Rackscha
OP
Serious User
|
OP
Serious User
Joined: Dec 2008
Posts: 1,218
Germany
|
Thank you.
When using Sed(For a quicktest)
i used
-diag -nwnd -cc
Acklog.txt created, compiled not executed, but window visible, and did not autoclose when an error ocurred o.O
GReets Rackscha
MY Website with news of my projects: (for example my current Muliplayer Bomberman, GenesisPrecompiler for LiteC and TileMaster, an easy to use Tile editor) Sparetime-Development
|
|
|
Re: Lite-C Compiler and Compiler Output
[Re: Rackscha]
#365685
03/28/11 14:44
03/28/11 14:44
|
Joined: Jan 2011
Posts: 122 GUILIN , CHINA
tzw
Member
|
Member
Joined: Jan 2011
Posts: 122
GUILIN , CHINA
|
WINDOW invisible need pro edition
Full of my eyes are class struggles.....
|
|
|
Re: Lite-C Compiler and Compiler Output
[Re: tzw]
#365686
03/28/11 14:58
03/28/11 14:58
|
Joined: Dec 2008
Posts: 1,218 Germany
Rackscha
OP
Serious User
|
OP
Serious User
Joined: Dec 2008
Posts: 1,218
Germany
|
thout i have read about it that its possible to hide the window if still in devmode, and reapears after publish...
@Quadraxas: thanks
EDIT: and how are WATCH/Step by Step debug and OUTPUT integrated?
Last edited by Rackscha; 03/28/11 15:06.
MY Website with news of my projects: (for example my current Muliplayer Bomberman, GenesisPrecompiler for LiteC and TileMaster, an easy to use Tile editor) Sparetime-Development
|
|
|
Re: Lite-C Compiler and Compiler Output
[Re: tzw]
#365756
03/28/11 22:26
03/28/11 22:26
|
Joined: Oct 2004
Posts: 897 Lgh
rojart
User
|
User
Joined: Oct 2004
Posts: 897
Lgh
|
WINDOW invisible need pro edition API does, like this:
#include <default.c>
#include <windows.h>
void main(){
wait(1);
ShowWindow(hWnd,SW_HIDE);
wait(-5);
ShowWindow(hWnd,SW_SHOW);
}
|
|
|
Re: Lite-C Compiler and Compiler Output
[Re: tzw]
#365837
03/29/11 16:15
03/29/11 16:15
|
Joined: Dec 2008
Posts: 1,218 Germany
Rackscha
OP
Serious User
|
OP
Serious User
Joined: Dec 2008
Posts: 1,218
Germany
|
@Stromausfall: Thanks.
@Rojart: I know this function(fromd elphi :P), but your example is executed AFTER compile. I just need an invisible compiler window during devmode, thats all :|.
Thought that had been possible for devmode even as com user o.o.
Greets Rackscha
MY Website with news of my projects: (for example my current Muliplayer Bomberman, GenesisPrecompiler for LiteC and TileMaster, an easy to use Tile editor) Sparetime-Development
|
|
|
|