Panda3D
 All Classes Functions Variables Enumerations
graphicsWindowProc.cxx
00001 // Filename: graphicsWindowProc.cxx
00002 // Created by:  Bei (Mar2010)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 #include "graphicsWindowProc.h"
00016 
00017 ////////////////////////////////////////////////////////////////////
00018 //     Function: GraphicWindowProc::Constructor
00019 //       Access: Public
00020 //  Description: Does nothing.
00021 ////////////////////////////////////////////////////////////////////
00022 GraphicsWindowProc::
00023 GraphicsWindowProc(){
00024 }
00025 
00026 #if defined(__WIN32__) || defined(_WIN32)
00027 
00028 ////////////////////////////////////////////////////////////////////
00029 //     Function: GraphicsWindowProc::wnd_proc
00030 //       Access: Public, Virtual
00031 //  Description: A WIN32-specific method that is called when a Window
00032 //               proc event occurrs. Should be overridden by a derived
00033 //               class.
00034 ////////////////////////////////////////////////////////////////////
00035 LONG GraphicsWindowProc::
00036 wnd_proc(GraphicsWindow* graphicsWindow, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam){
00037   return 0;
00038 }
00039 
00040 #endif
00041 //most an empty file.
 All Classes Functions Variables Enumerations