home *** CD-ROM | disk | FTP | other *** search
- /*
- Company: Sensaura
- Copyright: (C) 1999
-
- Software Project: Sensaura DirectSound3D Demo
- File Name: winmain.cpp
- File Description: Source file for implementation of WinMain function
- Author: Adam Philp
- File Version: 1.02.000
- Last Update: 10-FEB-99
-
- Target Compiler: Microsoft Visual C++ Version 5.0
- */
-
- /////////////////////// Included files ////////////////////////////////////////////////////////////
-
- #include <windows.h>
-
- #include "applicat.h"
- #include "debug.h"
-
- /////////////////////// WinMain ///////////////////////////////////////////////////////////////////
-
- int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR pCmdLine, int cmdshow)
- {
- Application app("Sensaura DirectSound3D Demo",
- hInstance, hPrevInstance, pCmdLine, cmdshow);
- return app.Run();
- }
-
-