Skip to content

Commit

Permalink
proto/vjoy: fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
sthalik committed Jul 14, 2016
1 parent 042a87e commit 8fb85f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto-vjoy/ftnoir_protocol_vjoy.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ typedef struct _JOYSTICK_STATE
} JOYSTICK_STATE, * PJOYSTICK_STATE;

#ifndef _MSC_VER
#define VJOY_API extern "C" __declspec(dllimport)
#define VJOY_API extern "C"
VJOY_API BOOL __stdcall VJoy_Initialize(PCHAR name, PCHAR serial);
VJOY_API VOID __stdcall VJoy_Shutdown();
VJOY_API BOOL __stdcall VJoy_UpdateJoyState(int id, PJOYSTICK_STATE pJoyState);
#else
#define VJOY_API __declspec(dllimport)
#define VJOY_API extern "C"
VJOY_API BOOL __stdcall VJoy_Initialize(PCHAR name, PCHAR serial);
VJOY_API VOID __stdcall VJoy_Shutdown();
VJOY_API BOOL __stdcall VJoy_UpdateJoyState(int id, PJOYSTICK_STATE pJoyState);
Expand Down

0 comments on commit 8fb85f8

Please sign in to comment.