summaryrefslogtreecommitdiffstats
path: root/tools/globalcode/utility/mayahandles.h
blob: 9e530ba36b5e52e9670b5bfcb84d811cbec0ff38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//-----------------------------------------------------------------------------
// Copyright (C) 2001 Radical Entertainment Ltd.  All rights reserved.
//
// mayahandles.h
//
// Description: Class to store and retrieve maya handles as generic pointers.
//
// Modification History:
//  + Created Oct 15, 2001 -- bkusy 
//-----------------------------------------------------------------------------

//----------------------------------------
// System Includes
//----------------------------------------

//----------------------------------------
// Project Includes
//----------------------------------------

//----------------------------------------
// Forward References
//----------------------------------------

//----------------------------------------
// Constants, Typedefs and Statics
//----------------------------------------

class MayaHandles
{
    public:

        static void SetHInstance( void* hInstance );
        static void* GetHInstance();

        static void* GetHWND();

    private:

        static void* m_hInstance;
        static void* m_HWND;
};