Panda3D
graphicsWindowProc.cxx
1 // Filename: graphicsWindowProc.cxx
2 // Created by: Bei (Mar2010)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #include "graphicsWindowProc.h"
16 
17 ////////////////////////////////////////////////////////////////////
18 // Function: GraphicWindowProc::Constructor
19 // Access: Public
20 // Description: Does nothing.
21 ////////////////////////////////////////////////////////////////////
24 }
25 
26 #if defined(__WIN32__) || defined(_WIN32)
27 
28 ////////////////////////////////////////////////////////////////////
29 // Function: GraphicsWindowProc::wnd_proc
30 // Access: Public, Virtual
31 // Description: A WIN32-specific method that is called when a Window
32 // proc event occurrs. Should be overridden by a derived
33 // class.
34 ////////////////////////////////////////////////////////////////////
35 LONG GraphicsWindowProc::
36 wnd_proc(GraphicsWindow* graphicsWindow, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam){
37  return 0;
38 }
39 
40 #endif
41 //most an empty file.
GraphicsWindowProc()
Does nothing.
A window, fullscreen or on a desktop, into which a graphics device sends its output for interactive d...