Rev | Line | |
---|
[164] | 1 | #pragma once
|
---|
| 2 | #pragma warning(disable : 4996)
|
---|
| 3 |
|
---|
| 4 | #include <vector>
|
---|
| 5 | #include <string>
|
---|
| 6 |
|
---|
| 7 | #include <stdlib.h>
|
---|
| 8 |
|
---|
| 9 | #include <windows.h>
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | namespace Jenga{
|
---|
| 13 | namespace Common{
|
---|
| 14 |
|
---|
| 15 |
|
---|
| 16 | class Environment
|
---|
| 17 | {
|
---|
| 18 | public:
|
---|
| 19 | static const std::string &GetAppDir()
|
---|
| 20 | {
|
---|
| 21 | static std::string appDir;
|
---|
| 22 | if( appDir.size() == 0 )
|
---|
| 23 | {
|
---|
| 24 | char temporary[MAX_PATH];
|
---|
| 25 | char temp2[MAX_PATH];
|
---|
| 26 | char temp3[MAX_PATH];
|
---|
| 27 | GetModuleFileName(GetModuleHandle(0),temporary,MAX_PATH);
|
---|
| 28 | _splitpath(temporary,temp2,temp3,NULL,NULL);
|
---|
| 29 | if( temp3[lstrlen(temp3)-1]=='\\' )
|
---|
| 30 | {
|
---|
| 31 | temp3[lstrlen(temp3)-1] = 0;
|
---|
| 32 | }
|
---|
| 33 | lstrcat(temp2,temp3);
|
---|
| 34 |
|
---|
| 35 | appDir = temp2;
|
---|
| 36 | }
|
---|
| 37 | return appDir;
|
---|
| 38 | }
|
---|
| 39 | };
|
---|
| 40 |
|
---|
| 41 |
|
---|
[205] | 42 | }}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.