diff vidix/sysdep/pci_win32.c @ 34653:958431e2cde0

Make inline keyword handling consistent. Replace __inline__ and __inline by inline and move it after the static keyword.
author diego
date Sun, 19 Feb 2012 15:21:28 +0000
parents d9cf7500b0d8
children
line wrap: on
line diff
--- a/vidix/sysdep/pci_win32.c	Sun Feb 19 15:21:23 2012 +0000
+++ b/vidix/sysdep/pci_win32.c	Sun Feb 19 15:21:28 2012 +0000
@@ -33,7 +33,7 @@
 
 static HANDLE hDriver;
 
-static __inline__ int enable_os_io(void)
+static inline int enable_os_io(void)
 {
     if(IsWinNT()){
       DWORD dwBytesReturned;
@@ -46,7 +46,7 @@
     return 0;
 }
 
-static __inline__ int disable_os_io(void)
+static inline int disable_os_io(void)
 {
     if(IsWinNT()){
       DWORD dwBytesReturned;