Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
OIS
Commits
a2ecfee9
Commit
a2ecfee9
authored
Apr 04, 2010
by
Phillip Castaneda
Browse files
Fixing case sensitivity issues
parent
ce6fcfcd
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
20 additions
and
22 deletions
+20
-22
Win32/ois_vc9.sln
Win32/ois_vc9.sln
+2
-4
includes/win32/Win32ForceFeedback.h
includes/win32/Win32ForceFeedback.h
+1
-1
includes/win32/Win32InputManager.h
includes/win32/Win32InputManager.h
+1
-1
includes/win32/Win32JoyStick.h
includes/win32/Win32JoyStick.h
+1
-1
includes/win32/Win32KeyBoard.h
includes/win32/Win32KeyBoard.h
+1
-1
includes/win32/Win32Mouse.h
includes/win32/Win32Mouse.h
+1
-1
src/win32/Win32ForceFeedback.cpp
src/win32/Win32ForceFeedback.cpp
+2
-2
src/win32/Win32InputManager.cpp
src/win32/Win32InputManager.cpp
+4
-4
src/win32/Win32JoyStick.cpp
src/win32/Win32JoyStick.cpp
+3
-3
src/win32/Win32KeyBoard.cpp
src/win32/Win32KeyBoard.cpp
+2
-2
src/win32/Win32Mouse.cpp
src/win32/Win32Mouse.cpp
+2
-2
No files found.
Win32/ois_vc9.sln
View file @
a2ecfee9
...
@@ -38,12 +38,10 @@ Global
...
@@ -38,12 +38,10 @@ Global
{7AC600E2-2B46-4204-8DEB-9E49A9BAF65F}.Release|x64.Build.0 = Release|x64
{7AC600E2-2B46-4204-8DEB-9E49A9BAF65F}.Release|x64.Build.0 = Release|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|Win32.ActiveCfg = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|Win32.ActiveCfg = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|Win32.Build.0 = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|Win32.Build.0 = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|x64.ActiveCfg = Debug|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|x64.ActiveCfg = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|x64.Build.0 = Debug|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|Win32.ActiveCfg = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|Win32.ActiveCfg = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|Win32.Build.0 = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|Win32.Build.0 = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|x64.ActiveCfg = Release|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|x64.ActiveCfg = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|x64.Build.0 = Release|x64
EndGlobalSection
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
HideSolutionNode = FALSE
...
...
includes/win32/Win32ForceFeedback.h
View file @
a2ecfee9
...
@@ -25,7 +25,7 @@ restrictions:
...
@@ -25,7 +25,7 @@ restrictions:
#include "OISPrereqs.h"
#include "OISPrereqs.h"
#include "OISForceFeedback.h"
#include "OISForceFeedback.h"
#include "
W
in32/Win32Prereqs.h"
#include "
w
in32/Win32Prereqs.h"
namespace
OIS
namespace
OIS
{
{
...
...
includes/win32/Win32InputManager.h
View file @
a2ecfee9
...
@@ -25,7 +25,7 @@ restrictions:
...
@@ -25,7 +25,7 @@ restrictions:
#include "OISInputManager.h"
#include "OISInputManager.h"
#include "OISFactoryCreator.h"
#include "OISFactoryCreator.h"
#include "
W
in32/Win32Prereqs.h"
#include "
w
in32/Win32Prereqs.h"
namespace
OIS
namespace
OIS
{
{
...
...
includes/win32/Win32JoyStick.h
View file @
a2ecfee9
...
@@ -24,7 +24,7 @@ restrictions:
...
@@ -24,7 +24,7 @@ restrictions:
#define _WIN32_JOYSTICK_H_EADER_
#define _WIN32_JOYSTICK_H_EADER_
#include "OISJoyStick.h"
#include "OISJoyStick.h"
#include "
W
in32/Win32Prereqs.h"
#include "
w
in32/Win32Prereqs.h"
namespace
OIS
namespace
OIS
{
{
...
...
includes/win32/Win32KeyBoard.h
View file @
a2ecfee9
...
@@ -24,7 +24,7 @@ restrictions:
...
@@ -24,7 +24,7 @@ restrictions:
#define _WIN32_KEYBOARD_H_EADER_
#define _WIN32_KEYBOARD_H_EADER_
#include "OISKeyboard.h"
#include "OISKeyboard.h"
#include "
W
in32/Win32Prereqs.h"
#include "
w
in32/Win32Prereqs.h"
namespace
OIS
namespace
OIS
{
{
...
...
includes/win32/Win32Mouse.h
View file @
a2ecfee9
...
@@ -24,7 +24,7 @@ restrictions:
...
@@ -24,7 +24,7 @@ restrictions:
#define _WIN32_MOUSE_H_EADER_
#define _WIN32_MOUSE_H_EADER_
#include "OISMouse.h"
#include "OISMouse.h"
#include "
W
in32/Win32Prereqs.h"
#include "
w
in32/Win32Prereqs.h"
namespace
OIS
namespace
OIS
{
{
...
...
src/win32/Win32ForceFeedback.cpp
View file @
a2ecfee9
...
@@ -20,9 +20,9 @@ restrictions:
...
@@ -20,9 +20,9 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
3. This notice may not be removed or altered from any source distribution.
*/
*/
#include "
W
in32/Win32ForceFeedback.h"
#include "
w
in32/Win32ForceFeedback.h"
#include "OISException.h"
#include "OISException.h"
#include <
M
ath.h>
#include <
m
ath.h>
// 0 = No trace; 1 = Important traces; 2 = Debug traces
// 0 = No trace; 1 = Important traces; 2 = Debug traces
#define OIS_WIN32_JOYFF_DEBUG 1
#define OIS_WIN32_JOYFF_DEBUG 1
...
...
src/win32/Win32InputManager.cpp
View file @
a2ecfee9
...
@@ -20,10 +20,10 @@ restrictions:
...
@@ -20,10 +20,10 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
3. This notice may not be removed or altered from any source distribution.
*/
*/
#include "
W
in32/Win32InputManager.h"
#include "
w
in32/Win32InputManager.h"
#include "
W
in32/Win32Key
b
oard.h"
#include "
w
in32/Win32Key
B
oard.h"
#include "
W
in32/Win32Mouse.h"
#include "
w
in32/Win32Mouse.h"
#include "
W
in32/Win32JoyStick.h"
#include "
w
in32/Win32JoyStick.h"
#include "OISException.h"
#include "OISException.h"
using
namespace
OIS
;
using
namespace
OIS
;
...
...
src/win32/Win32JoyStick.cpp
View file @
a2ecfee9
...
@@ -20,9 +20,9 @@ restrictions:
...
@@ -20,9 +20,9 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
3. This notice may not be removed or altered from any source distribution.
*/
*/
#include "
W
in32/Win32JoyStick.h"
#include "
w
in32/Win32JoyStick.h"
#include "
W
in32/Win32InputManager.h"
#include "
w
in32/Win32InputManager.h"
#include "
W
in32/Win32ForceFeedback.h"
#include "
w
in32/Win32ForceFeedback.h"
#include "OISEvents.h"
#include "OISEvents.h"
#include "OISException.h"
#include "OISException.h"
...
...
src/win32/Win32KeyBoard.cpp
View file @
a2ecfee9
...
@@ -20,8 +20,8 @@ restrictions:
...
@@ -20,8 +20,8 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
3. This notice may not be removed or altered from any source distribution.
*/
*/
#include "
W
in32/Win32InputManager.h"
#include "
w
in32/Win32InputManager.h"
#include "
W
in32/Win32KeyBoard.h"
#include "
w
in32/Win32KeyBoard.h"
#include "OISException.h"
#include "OISException.h"
#include "OISEvents.h"
#include "OISEvents.h"
#include <sstream>
#include <sstream>
...
...
src/win32/Win32Mouse.cpp
View file @
a2ecfee9
...
@@ -20,8 +20,8 @@ restrictions:
...
@@ -20,8 +20,8 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
3. This notice may not be removed or altered from any source distribution.
*/
*/
#include "
W
in32/Win32Mouse.h"
#include "
w
in32/Win32Mouse.h"
#include "
W
in32/Win32InputManager.h"
#include "
w
in32/Win32InputManager.h"
#include "OISException.h"
#include "OISException.h"
#include "OISEvents.h"
#include "OISEvents.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment