summary refs log tree commit diff stats
path: root/lib/windows/shfolder.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/windows/shfolder.nim')
-rw-r--r--lib/windows/shfolder.nim18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/windows/shfolder.nim b/lib/windows/shfolder.nim
index 886d757eb..99cdf6cf5 100644
--- a/lib/windows/shfolder.nim
+++ b/lib/windows/shfolder.nim
@@ -72,22 +72,22 @@ const
   CSIDL_FLAG_CREATE* = 0x00008000 # (force creation of requested folder if it doesn't exist yet)     
                                   # Original entry points 
 
-proc SHGetFolderPathA*(Ahwnd: HWND, Csidl: int, Token: THandle, Flags: DWord, 
+proc SHGetFolderPathA*(Ahwnd: HWND, Csidl: int, Token: Handle, Flags: DWord, 
                        Path: cstring): HRESULT{.stdcall, dynlib: LibName, 
     importc: "SHGetFolderPathA".}
-proc SHGetFolderPathW*(Ahwnd: HWND, Csidl: int, Token: THandle, Flags: DWord, 
+proc SHGetFolderPathW*(Ahwnd: HWND, Csidl: int, Token: Handle, Flags: DWord, 
                        Path: cstring): HRESULT{.stdcall, dynlib: LibName, 
     importc: "SHGetFolderPathW".}
-proc SHGetFolderPath*(Ahwnd: HWND, Csidl: int, Token: THandle, Flags: DWord, 
+proc SHGetFolderPath*(Ahwnd: HWND, Csidl: int, Token: Handle, Flags: DWord, 
                       Path: cstring): HRESULT{.stdcall, dynlib: LibName, 
     importc: "SHGetFolderPathA".}
 type 
-  PFNSHGetFolderPathA* = proc (Ahwnd: HWND, Csidl: int, Token: THandle, 
+  PFNSHGetFolderPathA* = proc (Ahwnd: HWND, Csidl: int, Token: Handle, 
                                Flags: DWord, Path: cstring): HRESULT{.stdcall.}
-  PFNSHGetFolderPathW* = proc (Ahwnd: HWND, Csidl: int, Token: THandle, 
+  PFNSHGetFolderPathW* = proc (Ahwnd: HWND, Csidl: int, Token: Handle, 
                                Flags: DWord, Path: cstring): HRESULT{.stdcall.}
   PFNSHGetFolderPath* = PFNSHGetFolderPathA
-  TSHGetFolderPathA* = PFNSHGetFolderPathA
-  TSHGetFolderPathW* = PFNSHGetFolderPathW
-  TSHGetFolderPath* = TSHGetFolderPathA
-
+  
+{.deprecated: [TSHGetFolderPathA: PFNSHGetFolderPathA,
+              TSHGetFolderPathW: PFNSHGetFolderPathW,
+              TSHGetFolderPath: SHGetFolderPathA].}