Language
Platform
Windows
Remove
License
Any
: hi am a newbie to c++ win32api am very much interested in it plz let
: me know how to get started and which ide to be used any links for a
: good tutorial plz help me!!
Read Petzold +...
: The link you posted brought me to an image of Windows Media Player...
:
: :
: tracker2world( q );
: }
: else
: {
: x /= orthovolume.x;
: y
: }
:
: float3 p( x, x, x )
:...
The link you posted brought me to an image of Windows Media Player...
tracker2world( q );
}
else
{
x /= orthovolume.x;
y
}
float3 p( x, x, x )
p /=zoom;...
: : Can someone tell me how to program SDI using Visual C++. I am planning to create a simple paint program using Visual C++ 6.0 using SDI (Single Dynamic Interface). Thanks a lot!
: :
:
: If...
: Can someone tell me how to program SDI using Visual C++. I am planning to create a simple paint program using Visual C++ 6.0 using SDI (Single Dynamic Interface). Thanks a lot!
:
If you want...
thanks to all of u for the replies!
i'm a hardcore c/c++ fan and i do not know assembly. :-( so i decided to do it using c++ in win32. i'm a novice at win32 programming so i need further help....
you need to install the Windows Platform SDK. See the link posted on this page: http://msdn.microsoft.com/vstudio/express/visualC/default.aspx. There are instructions to show how to manually set up...
: : : I need a little advice.
: : : I would like to start coding using C++ to generate windows for user interfaces. Presently i use C and WIN32 API with DEV CPP compiler. it works but is very long...
: : Hi,
: : I have recentlu installed borland C++ 5.01 on my windows XP machine.It works fine except that when the output window comes up, it closes within a flash even before i can see the output....
This message was edited by DB1 at 2005-7-17 8:14:26
: : : im using win xp
: : : and i want use ansi clours on my console aplications writen in c/c++
: : : how can i do it ???
: : :
: : :...
: : im using win xp
: : and i want use ansi clours on my console aplications writen in c/c++
: : how can i do it ???
: :
: : samelike as here in perl
: : http://www.bot-depot...
: im using win xp
: and i want use ansi clours on my console aplications writen in c/c++
: how can i do it ???
:
: samelike as here in perl
: http://www.bot-depot.com/forums/lofiversion/index...
: Ok, i found what i was looking for...i think.
:
: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/power/base/system_battery_state_str.asp
:
: now my question is, is how do i...
This message was edited by stober at 2004-12-2 4:41:4
: I have created a files under 'C' compiled under MSVC
: I created a SDI appln in VC++ and try to link the 'C' program from
: vc++...
Hi everyone,
I am wondering how to access a constructor located in a DLL.
The class I want to export looks like the following:
class __declspec(dllexport) Sound {
FSOUND_STREAM* MySound;
int...
: Hi,
: I have recentlu installed borland C++ 5.01 on my windows XP machine.It works fine except that when the output window comes up, it closes within a flash even before i can see the output. I...
Hi,
I have recentlu installed borland C++ 5.01 on my windows XP machine.It works fine except that when the output window comes up, it closes within a flash even before i can see the output. I dont...
There is an IDE called KDevelop which runs on the KDE desktop environment in Linux which compiles C/C++ applications.
You can use a program called WINE (WINE is not an Emulator) for linux which...
use the Windows port of GCC compiler http://mingw.org http://gcc.gnu.org
and link OpenGL/DirectX by command line: -lopengl32 -lddraw :-)
Yes,it is possible to use opengl in assembly.you could assemble your asm-code and link it to opengl32.lib or dynamical load opengl32.dll at runtime under win32 and call the functions in it.however...