- Go away STDCALL, time has come for WINAPI and NTAPI

svn path=/trunk/; revision=37763
This commit is contained in:
Stefan Ginsberg 2008-11-30 11:42:05 +00:00
parent b137725c9a
commit 32545494d9
296 changed files with 2595 additions and 2597 deletions

View file

@ -252,7 +252,7 @@ CPlApplet(HWND hwndCPl,
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -199,7 +199,7 @@ CPlApplet(HWND hwndCpl,
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpReserved) LPVOID lpReserved)

View file

@ -99,7 +99,7 @@ CPlApplet(HWND hwndCPl,
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -128,7 +128,7 @@ CPlApplet(HWND hwndCpl,
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpReserved) LPVOID lpReserved)

View file

@ -340,7 +340,7 @@ CPlApplet(HWND hwndCpl,
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpReserved) LPVOID lpReserved)

View file

@ -10,7 +10,7 @@
#include "precomp.h" #include "precomp.h"
typedef BOOL (STDCALL *PDEVMGREXEC)(HWND hWndParent, HINSTANCE hInst, PVOID Unknown, int nCmdShow); typedef BOOL (WINAPI *PDEVMGREXEC)(HWND hWndParent, HINSTANCE hInst, PVOID Unknown, int nCmdShow);
static BOOL static BOOL
LaunchDeviceManager(HWND hWndParent) LaunchDeviceManager(HWND hWndParent)

View file

@ -186,7 +186,7 @@ CPlApplet(HWND hwndCPl,
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -7,7 +7,6 @@
*/ */
#include "d3d9_common.h" #include "d3d9_common.h"
#include "d3d9_callbacks.h" #include "d3d9_callbacks.h"
#define STDCALL __stdcall
#include <d3d9.h> #include <d3d9.h>
#include <dll/directx/d3d8thk.h> #include <dll/directx/d3d8thk.h>
#include "d3d9_private.h" #include "d3d9_private.h"

View file

@ -1,4 +1,3 @@
#define STDCALL __stdcall
#include <d3d9.h> #include <d3d9.h>
#include <ddraw.h> #include <ddraw.h>
#include <d3dnthal.h> #include <d3dnthal.h>

View file

@ -386,6 +386,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -403,6 +403,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -403,6 +403,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -400,11 +400,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -373,6 +373,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -361,6 +361,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -373,11 +373,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -481,11 +481,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -402,6 +402,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -403,11 +403,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -422,11 +422,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -461,11 +461,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -380,7 +380,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -593,11 +593,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -508,11 +508,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -413,7 +413,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -480,11 +480,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -351,7 +351,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -533,6 +533,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -454,11 +454,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -471,11 +471,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -471,6 +471,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -470,7 +470,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -450,7 +450,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -450,7 +450,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -450,7 +450,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -450,7 +450,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -383,6 +383,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -12,8 +12,8 @@
#include <internal/kbd.h> #include <internal/kbd.h>
#ifdef _MSC_VER #ifdef _MSC_VER
#ifndef STDCALL #ifndef WINAPI
#define STDCALL __stdcall #define WINAPI __stdcall
#endif #endif
#endif//_MSC_VER #endif//_MSC_VER
@ -470,7 +470,7 @@ ROSDATA KBDTABLES keyboard_layout_table =
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) PKBDTABLES WINAPI KbdLayerDescriptor(VOID)
{ {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -351,7 +351,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -462,11 +462,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -399,11 +399,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -394,11 +394,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -399,11 +399,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -399,11 +399,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -395,11 +395,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -427,11 +427,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -411,7 +411,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -365,7 +365,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor() { PKBDTABLES WINAPI KbdLayerDescriptor() {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -358,7 +358,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -448,11 +448,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -389,6 +389,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -439,11 +439,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -384,11 +384,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -466,11 +466,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -480,11 +480,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -362,7 +362,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -618,6 +618,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -383,11 +383,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -391,11 +391,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -391,11 +391,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -480,7 +480,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -463,7 +463,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -463,6 +463,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -476,11 +476,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -388,11 +388,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -378,6 +378,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -378,6 +378,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -377,7 +377,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -378,6 +378,6 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -473,11 +473,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -473,11 +473,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -369,7 +369,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -392,11 +392,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -383,11 +383,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -352,7 +352,7 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }

View file

@ -383,11 +383,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -467,11 +467,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -378,11 +378,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -383,11 +383,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -399,11 +399,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
NULL NULL
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -519,11 +519,11 @@ ROSDATA KBDTABLES keyboard_layout_table = {
(PLIGATURE1)Ligature (PLIGATURE1)Ligature
}; };
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) { PKBDTABLES WINAPI KbdLayerDescriptor(VOID) {
return &keyboard_layout_table; return &keyboard_layout_table;
} }
INT STDCALL INT WINAPI
DllMain( DllMain(
PVOID hinstDll, PVOID hinstDll,
ULONG dwReason, ULONG dwReason,

View file

@ -610,7 +610,7 @@ IDeskDisplayAdapter_Constructor(REFIID riid,
return hRet; return hRet;
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -735,7 +735,7 @@ IDeskMonitor_Constructor(REFIID riid,
return hRet; return hRet;
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -28,7 +28,7 @@ DllGetClassObject(REFCLSID rclsid,
return S_OK; return S_OK;
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -908,7 +908,7 @@ ICompatibilityPage_fnLockServer(LPCOMPATIBILITYPAGE this,
Exported Exported
******************************************************************************/ ******************************************************************************/
HRESULT STDCALL HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid, DllGetClassObject(REFCLSID rclsid,
REFIID iid, REFIID iid,
LPVOID *ppv) LPVOID *ppv)
@ -936,7 +936,7 @@ DllGetClassObject(REFCLSID rclsid,
return CLASS_E_CLASSNOTAVAILABLE; return CLASS_E_CLASSNOTAVAILABLE;
} }
HRESULT STDCALL HRESULT WINAPI
DllCanUnloadNow(VOID) DllCanUnloadNow(VOID)
{ {
return ((dllrefs == 0) ? S_OK : S_FALSE); return ((dllrefs == 0) ? S_OK : S_FALSE);
@ -955,7 +955,7 @@ UnregisterPropSheetHandler(LPTSTR szType)
szKey); szKey);
} }
HRESULT STDCALL HRESULT WINAPI
DllUnregisterServer(VOID) DllUnregisterServer(VOID)
{ {
LONG e; LONG e;
@ -1037,7 +1037,7 @@ RegisterPropSheetHandler(LPTSTR szType,
return e; return e;
} }
HRESULT STDCALL HRESULT WINAPI
DllRegisterServer(VOID) DllRegisterServer(VOID)
{ {
LONG e = E_ACCESSDENIED; LONG e = E_ACCESSDENIED;
@ -1125,7 +1125,7 @@ DllRegisterServer(VOID)
return ((e == ERROR_SUCCESS) ? S_OK : E_ACCESSDENIED); return ((e == ERROR_SUCCESS) ? S_OK : E_ACCESSDENIED);
} }
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DllMain(HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,
LPVOID lpvReserved) LPVOID lpvReserved)

View file

@ -36,7 +36,7 @@
HINSTANCE hDllInstance; HINSTANCE hDllInstance;
BOOL STDCALL BOOL WINAPI
DllMain( DllMain(
HINSTANCE hinstDLL, HINSTANCE hinstDLL,
DWORD dwReason, DWORD dwReason,

View file

@ -72,7 +72,7 @@ typedef struct _NTMARTA
/* 2E8 */PVOID GetAccessForTrustee; /* 2E8 */PVOID GetAccessForTrustee;
/* 2EC */PVOID GetExplicitEntries; /* 2EC */PVOID GetExplicitEntries;
/* 2F0 */ /* 2F0 */
DWORD (STDCALL *RewriteGetNamedRights)(LPWSTR pObjectName, DWORD (WINAPI *RewriteGetNamedRights)(LPWSTR pObjectName,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
PSID* ppsidOwner, PSID* ppsidOwner,
@ -82,13 +82,13 @@ typedef struct _NTMARTA
PSECURITY_DESCRIPTOR* ppSecurityDescriptor); PSECURITY_DESCRIPTOR* ppSecurityDescriptor);
/* 2F4 */ /* 2F4 */
DWORD (STDCALL *RewriteSetNamedRights)(LPWSTR pObjectName, DWORD (WINAPI *RewriteSetNamedRights)(LPWSTR pObjectName,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
PSECURITY_DESCRIPTOR pSecurityDescriptor); PSECURITY_DESCRIPTOR pSecurityDescriptor);
/*2F8*/ /*2F8*/
DWORD (STDCALL *RewriteGetHandleRights)(HANDLE handle, DWORD (WINAPI *RewriteGetHandleRights)(HANDLE handle,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
PSID* ppsidOwner, PSID* ppsidOwner,
@ -98,24 +98,24 @@ typedef struct _NTMARTA
PSECURITY_DESCRIPTOR* ppSecurityDescriptor); PSECURITY_DESCRIPTOR* ppSecurityDescriptor);
/* 2FC */ /* 2FC */
DWORD (STDCALL *RewriteSetHandleRights)(HANDLE handle, DWORD (WINAPI *RewriteSetHandleRights)(HANDLE handle,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
PSECURITY_DESCRIPTOR pSecurityDescriptor); PSECURITY_DESCRIPTOR pSecurityDescriptor);
/* 300 */ /* 300 */
DWORD (STDCALL *RewriteSetEntriesInAcl)(ULONG cCountOfExplicitEntries, DWORD (WINAPI *RewriteSetEntriesInAcl)(ULONG cCountOfExplicitEntries,
PEXPLICIT_ACCESS_W pListOfExplicitEntries, PEXPLICIT_ACCESS_W pListOfExplicitEntries,
PACL OldAcl, PACL OldAcl,
PACL* NewAcl); PACL* NewAcl);
/* 304 */ /* 304 */
DWORD (STDCALL *RewriteGetExplicitEntriesFromAcl)(PACL pacl, DWORD (WINAPI *RewriteGetExplicitEntriesFromAcl)(PACL pacl,
PULONG pcCountOfExplicitEntries, PULONG pcCountOfExplicitEntries,
PEXPLICIT_ACCESS_W* pListOfExplicitEntries); PEXPLICIT_ACCESS_W* pListOfExplicitEntries);
/* 308 */ /* 308 */
DWORD (STDCALL *TreeResetNamedSecurityInfo)(LPWSTR pObjectName, DWORD (WINAPI *TreeResetNamedSecurityInfo)(LPWSTR pObjectName,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
PSID pOwner, PSID pOwner,
@ -127,7 +127,7 @@ typedef struct _NTMARTA
PROG_INVOKE_SETTING ProgressInvokeSetting, PROG_INVOKE_SETTING ProgressInvokeSetting,
PVOID Args); PVOID Args);
/* 30C */ /* 30C */
DWORD (STDCALL *GetInheritanceSource)(LPWSTR pObjectName, DWORD (WINAPI *GetInheritanceSource)(LPWSTR pObjectName,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
BOOL Container, BOOL Container,
@ -139,7 +139,7 @@ typedef struct _NTMARTA
PINHERITED_FROMW pInheritArray); PINHERITED_FROMW pInheritArray);
/* 310 */ /* 310 */
DWORD (STDCALL *FreeIndexArray)(PINHERITED_FROMW pInheritArray, DWORD (WINAPI *FreeIndexArray)(PINHERITED_FROMW pInheritArray,
USHORT AceCnt, USHORT AceCnt,
PFN_OBJECT_MGR_FUNCTS pfnArray OPTIONAL); PFN_OBJECT_MGR_FUNCTS pfnArray OPTIONAL);
} NTMARTA, *PNTMARTA; } NTMARTA, *PNTMARTA;

View file

@ -17,7 +17,7 @@ extern BOOL RegInitialize(VOID);
extern BOOL RegCleanup(VOID); extern BOOL RegCleanup(VOID);
extern VOID UnloadNtMarta(VOID); extern VOID UnloadNtMarta(VOID);
BOOL STDCALL BOOL WINAPI
DllMain(HINSTANCE hinstDll, DllMain(HINSTANCE hinstDll,
DWORD dwReason, DWORD dwReason,
LPVOID reserved) LPVOID reserved)

View file

@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(advapi);
* *
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
GetCurrentHwProfileA(LPHW_PROFILE_INFOA lpHwProfileInfo) GetCurrentHwProfileA(LPHW_PROFILE_INFOA lpHwProfileInfo)
{ {
HW_PROFILE_INFOW ProfileInfo; HW_PROFILE_INFOW ProfileInfo;
@ -83,7 +83,7 @@ GetCurrentHwProfileA(LPHW_PROFILE_INFOA lpHwProfileInfo)
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
GetCurrentHwProfileW(LPHW_PROFILE_INFOW lpHwProfileInfo) GetCurrentHwProfileW(LPHW_PROFILE_INFOW lpHwProfileInfo)
{ {
WCHAR szKeyName[256]; WCHAR szKeyName[256];

View file

@ -17,7 +17,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(advapi);
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
CreateProcessAsUserA(HANDLE hToken, CreateProcessAsUserA(HANDLE hToken,
LPCSTR lpApplicationName, LPCSTR lpApplicationName,
LPSTR lpCommandLine, LPSTR lpCommandLine,
@ -75,7 +75,7 @@ CreateProcessAsUserA(HANDLE hToken,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
CreateProcessAsUserW(HANDLE hToken, CreateProcessAsUserW(HANDLE hToken,
LPCWSTR lpApplicationName, LPCWSTR lpApplicationName,
LPWSTR lpCommandLine, LPWSTR lpCommandLine,
@ -133,7 +133,7 @@ CreateProcessAsUserW(HANDLE hToken,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
LogonUserA(LPSTR lpszUsername, LogonUserA(LPSTR lpszUsername,
LPSTR lpszDomain, LPSTR lpszDomain,
LPSTR lpszPassword, LPSTR lpszPassword,
@ -198,7 +198,7 @@ UsernameDone:
} }
static BOOL STDCALL static BOOL WINAPI
SamGetUserSid(LPCWSTR UserName, SamGetUserSid(LPCWSTR UserName,
PSID *Sid) PSID *Sid)
{ {
@ -294,7 +294,7 @@ SamGetUserSid(LPCWSTR UserName,
} }
static BOOL STDCALL static BOOL WINAPI
SamGetDomainSid(PSID *Sid) SamGetDomainSid(PSID *Sid)
{ {
PSID lpSid; PSID lpSid;
@ -595,7 +595,7 @@ FreeGroupSids(PTOKEN_GROUPS TokenGroups)
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
LogonUserW(LPWSTR lpszUsername, LogonUserW(LPWSTR lpszUsername,
LPWSTR lpszDomain, LPWSTR lpszDomain,
LPWSTR lpszPassword, LPWSTR lpszPassword,

View file

@ -20,7 +20,7 @@
* *
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AbortSystemShutdownW(LPCWSTR lpMachineName) AbortSystemShutdownW(LPCWSTR lpMachineName)
{ {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@ -33,7 +33,7 @@ AbortSystemShutdownW(LPCWSTR lpMachineName)
* *
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AbortSystemShutdownA(LPCSTR lpMachineName) AbortSystemShutdownA(LPCSTR lpMachineName)
{ {
ANSI_STRING MachineNameA; ANSI_STRING MachineNameA;
@ -61,7 +61,7 @@ AbortSystemShutdownA(LPCSTR lpMachineName)
* *
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
InitiateSystemShutdownW(LPWSTR lpMachineName, InitiateSystemShutdownW(LPWSTR lpMachineName,
LPWSTR lpMessage, LPWSTR lpMessage,
DWORD dwTimeout, DWORD dwTimeout,
@ -94,7 +94,7 @@ InitiateSystemShutdownW(LPWSTR lpMachineName,
* @unimplemented * @unimplemented
*/ */
BOOL BOOL
STDCALL WINAPI
InitiateSystemShutdownA(LPSTR lpMachineName, InitiateSystemShutdownA(LPSTR lpMachineName,
LPSTR lpMessage, LPSTR lpMessage,
DWORD dwTimeout, DWORD dwTimeout,

View file

@ -323,7 +323,7 @@ RegDisablePredefinedCache(VOID)
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDisablePredefinedCacheEx(VOID) RegDisablePredefinedCacheEx(VOID)
{ {
RtlEnterCriticalSection(&HandleTableCS); RtlEnterCriticalSection(&HandleTableCS);
@ -339,7 +339,7 @@ RegDisablePredefinedCacheEx(VOID)
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOverridePredefKey(IN HKEY hKey, RegOverridePredefKey(IN HKEY hKey,
IN HKEY hNewHKey OPTIONAL) IN HKEY hNewHKey OPTIONAL)
{ {
@ -397,7 +397,7 @@ RegOverridePredefKey(IN HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCloseKey(HKEY hKey) RegCloseKey(HKEY hKey)
{ {
NTSTATUS Status; NTSTATUS Status;
@ -705,7 +705,7 @@ RegpCopyTree(IN HKEY hKeySrc,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCopyTreeW(IN HKEY hKeySrc, RegCopyTreeW(IN HKEY hKeySrc,
IN LPCWSTR lpSubKey OPTIONAL, IN LPCWSTR lpSubKey OPTIONAL,
IN HKEY hKeyDest) IN HKEY hKeyDest)
@ -781,7 +781,7 @@ Cleanup2:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCopyTreeA(IN HKEY hKeySrc, RegCopyTreeA(IN HKEY hKeySrc,
IN LPCSTR lpSubKey OPTIONAL, IN LPCSTR lpSubKey OPTIONAL,
IN HKEY hKeyDest) IN HKEY hKeyDest)
@ -811,7 +811,7 @@ RegCopyTreeA(IN HKEY hKeySrc,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegConnectRegistryA(IN LPCSTR lpMachineName, RegConnectRegistryA(IN LPCSTR lpMachineName,
IN HKEY hKey, IN HKEY hKey,
OUT PHKEY phkResult) OUT PHKEY phkResult)
@ -841,7 +841,7 @@ RegConnectRegistryA(IN LPCSTR lpMachineName,
* *
* @unimplemented * @unimplemented
*/ */
LONG STDCALL LONG WINAPI
RegConnectRegistryW(LPCWSTR lpMachineName, RegConnectRegistryW(LPCWSTR lpMachineName,
HKEY hKey, HKEY hKey,
PHKEY phkResult) PHKEY phkResult)
@ -1001,7 +1001,7 @@ CreateNestedKey(PHKEY KeyHandle,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCreateKeyExA(HKEY hKey, RegCreateKeyExA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
DWORD Reserved, DWORD Reserved,
@ -1075,7 +1075,7 @@ RegCreateKeyExA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCreateKeyExW(HKEY hKey, RegCreateKeyExW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
DWORD Reserved, DWORD Reserved,
@ -1140,7 +1140,7 @@ RegCreateKeyExW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCreateKeyA(HKEY hKey, RegCreateKeyA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
PHKEY phkResult) PHKEY phkResult)
@ -1162,7 +1162,7 @@ RegCreateKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegCreateKeyW(HKEY hKey, RegCreateKeyW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
PHKEY phkResult) PHKEY phkResult)
@ -1184,7 +1184,7 @@ RegCreateKeyW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteKeyA(HKEY hKey, RegDeleteKeyA(HKEY hKey,
LPCSTR lpSubKey) LPCSTR lpSubKey)
{ {
@ -1245,7 +1245,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteKeyW(HKEY hKey, RegDeleteKeyW(HKEY hKey,
LPCWSTR lpSubKey) LPCWSTR lpSubKey)
{ {
@ -1338,7 +1338,7 @@ RegDeleteKeyExW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteKeyValueW(IN HKEY hKey, RegDeleteKeyValueW(IN HKEY hKey,
IN LPCWSTR lpSubKey OPTIONAL, IN LPCWSTR lpSubKey OPTIONAL,
IN LPCWSTR lpValueName OPTIONAL) IN LPCWSTR lpValueName OPTIONAL)
@ -1409,7 +1409,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteKeyValueA(IN HKEY hKey, RegDeleteKeyValueA(IN HKEY hKey,
IN LPCSTR lpSubKey OPTIONAL, IN LPCSTR lpSubKey OPTIONAL,
IN LPCSTR lpValueName OPTIONAL) IN LPCSTR lpValueName OPTIONAL)
@ -1653,7 +1653,7 @@ SubKeyFailureNoFree:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteTreeW(IN HKEY hKey, RegDeleteTreeW(IN HKEY hKey,
IN LPCWSTR lpSubKey OPTIONAL) IN LPCWSTR lpSubKey OPTIONAL)
{ {
@ -1824,7 +1824,7 @@ cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteTreeA(IN HKEY hKey, RegDeleteTreeA(IN HKEY hKey,
IN LPCSTR lpSubKey OPTIONAL) IN LPCSTR lpSubKey OPTIONAL)
{ {
@ -2157,7 +2157,7 @@ RegGetValueA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetKeyValueW(IN HKEY hKey, RegSetKeyValueW(IN HKEY hKey,
IN LPCWSTR lpSubKey OPTIONAL, IN LPCWSTR lpSubKey OPTIONAL,
IN LPCWSTR lpValueName OPTIONAL, IN LPCWSTR lpValueName OPTIONAL,
@ -2228,7 +2228,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetKeyValueA(IN HKEY hKey, RegSetKeyValueA(IN HKEY hKey,
IN LPCSTR lpSubKey OPTIONAL, IN LPCSTR lpSubKey OPTIONAL,
IN LPCSTR lpValueName OPTIONAL, IN LPCSTR lpValueName OPTIONAL,
@ -2306,7 +2306,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteValueA(HKEY hKey, RegDeleteValueA(HKEY hKey,
LPCSTR lpValueName) LPCSTR lpValueName)
{ {
@ -2343,7 +2343,7 @@ RegDeleteValueA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegDeleteValueW(HKEY hKey, RegDeleteValueW(HKEY hKey,
LPCWSTR lpValueName) LPCWSTR lpValueName)
{ {
@ -2380,7 +2380,7 @@ RegDeleteValueW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegEnumKeyA(HKEY hKey, RegEnumKeyA(HKEY hKey,
DWORD dwIndex, DWORD dwIndex,
LPSTR lpName, LPSTR lpName,
@ -2405,7 +2405,7 @@ RegEnumKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegEnumKeyW(HKEY hKey, RegEnumKeyW(HKEY hKey,
DWORD dwIndex, DWORD dwIndex,
LPWSTR lpName, LPWSTR lpName,
@ -2430,7 +2430,7 @@ RegEnumKeyW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegEnumKeyExA(HKEY hKey, RegEnumKeyExA(HKEY hKey,
DWORD dwIndex, DWORD dwIndex,
LPSTR lpName, LPSTR lpName,
@ -2600,7 +2600,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegEnumKeyExW(HKEY hKey, RegEnumKeyExW(HKEY hKey,
DWORD dwIndex, DWORD dwIndex,
LPWSTR lpName, LPWSTR lpName,
@ -2748,7 +2748,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegEnumValueA(HKEY hKey, RegEnumValueA(HKEY hKey,
DWORD index, DWORD index,
LPSTR value, LPSTR value,
@ -2884,7 +2884,7 @@ RegEnumValueA(HKEY hKey,
* Success: ERROR_SUCCESS * Success: ERROR_SUCCESS
* Failure: nonzero error code from Winerror.h * Failure: nonzero error code from Winerror.h
*/ */
LONG STDCALL LONG WINAPI
RegEnumValueW(HKEY hKey, RegEnumValueW(HKEY hKey,
DWORD index, DWORD index,
LPWSTR value, LPWSTR value,
@ -2986,7 +2986,7 @@ RegEnumValueW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegFlushKey(HKEY hKey) RegFlushKey(HKEY hKey)
{ {
HANDLE KeyHandle; HANDLE KeyHandle;
@ -3022,7 +3022,7 @@ RegFlushKey(HKEY hKey)
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegGetKeySecurity(HKEY hKey, RegGetKeySecurity(HKEY hKey,
SECURITY_INFORMATION SecurityInformation, SECURITY_INFORMATION SecurityInformation,
PSECURITY_DESCRIPTOR pSecurityDescriptor, PSECURITY_DESCRIPTOR pSecurityDescriptor,
@ -3069,7 +3069,7 @@ RegGetKeySecurity(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegLoadKeyA(HKEY hKey, RegLoadKeyA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
LPCSTR lpFile) LPCSTR lpFile)
@ -3099,7 +3099,7 @@ RegLoadKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegLoadKeyW(HKEY hKey, RegLoadKeyW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
LPCWSTR lpFile) LPCWSTR lpFile)
@ -3173,7 +3173,7 @@ Cleanup:
* *
* @unimplemented * @unimplemented
*/ */
LONG STDCALL LONG WINAPI
RegNotifyChangeKeyValue(HKEY hKey, RegNotifyChangeKeyValue(HKEY hKey,
BOOL bWatchSubtree, BOOL bWatchSubtree,
DWORD dwNotifyFilter, DWORD dwNotifyFilter,
@ -3230,7 +3230,7 @@ RegNotifyChangeKeyValue(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOpenCurrentUser(IN REGSAM samDesired, RegOpenCurrentUser(IN REGSAM samDesired,
OUT PHKEY phkResult) OUT PHKEY phkResult)
{ {
@ -3255,7 +3255,7 @@ RegOpenCurrentUser(IN REGSAM samDesired,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOpenKeyA(HKEY hKey, RegOpenKeyA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
PHKEY phkResult) PHKEY phkResult)
@ -3291,7 +3291,7 @@ RegOpenKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOpenKeyW(HKEY hKey, RegOpenKeyW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
PHKEY phkResult) PHKEY phkResult)
@ -3323,7 +3323,7 @@ RegOpenKeyW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOpenKeyExA(HKEY hKey, RegOpenKeyExA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
DWORD ulOptions, DWORD ulOptions,
@ -3374,7 +3374,7 @@ RegOpenKeyExA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOpenKeyExW(HKEY hKey, RegOpenKeyExW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
DWORD ulOptions, DWORD ulOptions,
@ -3426,7 +3426,7 @@ RegOpenKeyExW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegOpenUserClassesRoot(IN HANDLE hToken, RegOpenUserClassesRoot(IN HANDLE hToken,
IN DWORD dwOptions, IN DWORD dwOptions,
IN REGSAM samDesired, IN REGSAM samDesired,
@ -3568,7 +3568,7 @@ ReadTokenSid:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryInfoKeyA(HKEY hKey, RegQueryInfoKeyA(HKEY hKey,
LPSTR lpClass, LPSTR lpClass,
LPDWORD lpcbClass, LPDWORD lpcbClass,
@ -3629,7 +3629,7 @@ RegQueryInfoKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryInfoKeyW(HKEY hKey, RegQueryInfoKeyW(HKEY hKey,
LPWSTR lpClass, LPWSTR lpClass,
LPDWORD lpcbClass, LPDWORD lpcbClass,
@ -3813,7 +3813,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryMultipleValuesA(HKEY hKey, RegQueryMultipleValuesA(HKEY hKey,
PVALENTA val_list, PVALENTA val_list,
DWORD num_vals, DWORD num_vals,
@ -3877,7 +3877,7 @@ RegQueryMultipleValuesA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryMultipleValuesW(HKEY hKey, RegQueryMultipleValuesW(HKEY hKey,
PVALENTW val_list, PVALENTW val_list,
DWORD num_vals, DWORD num_vals,
@ -3956,7 +3956,7 @@ RegQueryReflectionKey(IN HKEY hBase,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryValueExA(HKEY hKey, RegQueryValueExA(HKEY hKey,
LPCSTR lpValueName, LPCSTR lpValueName,
LPDWORD lpReserved, LPDWORD lpReserved,
@ -4154,7 +4154,7 @@ RegQueryValueExW(HKEY hkeyorg,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryValueA(HKEY hKey, RegQueryValueA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
LPSTR lpValue, LPSTR lpValue,
@ -4249,7 +4249,7 @@ RegQueryValueA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegQueryValueW(HKEY hKey, RegQueryValueW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
LPWSTR lpValue, LPWSTR lpValue,
@ -4323,7 +4323,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegReplaceKeyA(HKEY hKey, RegReplaceKeyA(HKEY hKey,
LPCSTR lpSubKey, LPCSTR lpSubKey,
LPCSTR lpNewFile, LPCSTR lpNewFile,
@ -4359,7 +4359,7 @@ RegReplaceKeyA(HKEY hKey,
* *
* @unimplemented * @unimplemented
*/ */
LONG STDCALL LONG WINAPI
RegReplaceKeyW(HKEY hKey, RegReplaceKeyW(HKEY hKey,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
LPCWSTR lpNewFile, LPCWSTR lpNewFile,
@ -4494,7 +4494,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegRestoreKeyA(HKEY hKey, RegRestoreKeyA(HKEY hKey,
LPCSTR lpFile, LPCSTR lpFile,
DWORD dwFlags) DWORD dwFlags)
@ -4520,7 +4520,7 @@ RegRestoreKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegRestoreKeyW(HKEY hKey, RegRestoreKeyW(HKEY hKey,
LPCWSTR lpFile, LPCWSTR lpFile,
DWORD dwFlags) DWORD dwFlags)
@ -4595,7 +4595,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSaveKeyA(HKEY hKey, RegSaveKeyA(HKEY hKey,
LPCSTR lpFile, LPCSTR lpFile,
LPSECURITY_ATTRIBUTES lpSecurityAttributes) LPSECURITY_ATTRIBUTES lpSecurityAttributes)
@ -4619,7 +4619,7 @@ RegSaveKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSaveKeyW(HKEY hKey, RegSaveKeyW(HKEY hKey,
LPCWSTR lpFile, LPCWSTR lpFile,
LPSECURITY_ATTRIBUTES lpSecurityAttributes) LPSECURITY_ATTRIBUTES lpSecurityAttributes)
@ -4698,7 +4698,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetKeySecurity(HKEY hKey, RegSetKeySecurity(HKEY hKey,
SECURITY_INFORMATION SecurityInformation, SECURITY_INFORMATION SecurityInformation,
PSECURITY_DESCRIPTOR pSecurityDescriptor) PSECURITY_DESCRIPTOR pSecurityDescriptor)
@ -4738,7 +4738,7 @@ RegSetKeySecurity(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetValueExA(HKEY hKey, RegSetValueExA(HKEY hKey,
LPCSTR lpValueName, LPCSTR lpValueName,
DWORD Reserved, DWORD Reserved,
@ -4826,7 +4826,7 @@ RegSetValueExA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetValueExW(HKEY hKey, RegSetValueExW(HKEY hKey,
LPCWSTR lpValueName, LPCWSTR lpValueName,
DWORD Reserved, DWORD Reserved,
@ -4889,7 +4889,7 @@ RegSetValueExW(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetValueA(HKEY hKeyOriginal, RegSetValueA(HKEY hKeyOriginal,
LPCSTR lpSubKey, LPCSTR lpSubKey,
DWORD dwType, DWORD dwType,
@ -4935,7 +4935,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegSetValueW(HKEY hKeyOriginal, RegSetValueW(HKEY hKeyOriginal,
LPCWSTR lpSubKey, LPCWSTR lpSubKey,
DWORD dwType, DWORD dwType,
@ -4984,7 +4984,7 @@ Cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegUnLoadKeyA(HKEY hKey, RegUnLoadKeyA(HKEY hKey,
LPCSTR lpSubKey) LPCSTR lpSubKey)
{ {
@ -5008,7 +5008,7 @@ RegUnLoadKeyA(HKEY hKey,
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegUnLoadKeyW(HKEY hKey, RegUnLoadKeyW(HKEY hKey,
LPCWSTR lpSubKey) LPCWSTR lpSubKey)
{ {
@ -5099,7 +5099,7 @@ static int load_string(HINSTANCE hModule, UINT resId, LPWSTR pwszBuffer, INT cMa
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegLoadMUIStringW(IN HKEY hKey, RegLoadMUIStringW(IN HKEY hKey,
IN LPCWSTR pszValue OPTIONAL, IN LPCWSTR pszValue OPTIONAL,
OUT LPWSTR pszOutBuf, OUT LPWSTR pszOutBuf,
@ -5199,7 +5199,7 @@ cleanup:
* *
* @implemented * @implemented
*/ */
LONG STDCALL LONG WINAPI
RegLoadMUIStringA(IN HKEY hKey, RegLoadMUIStringA(IN HKEY hKey,
IN LPCSTR pszValue OPTIONAL, IN LPCSTR pszValue OPTIONAL,
OUT LPSTR pszOutBuf, OUT LPSTR pszOutBuf,

View file

@ -17,7 +17,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(advapi);
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
GetAclInformation(PACL pAcl, GetAclInformation(PACL pAcl,
LPVOID pAclInformation, LPVOID pAclInformation,
DWORD nAclInformationLength, DWORD nAclInformationLength,
@ -43,7 +43,7 @@ GetAclInformation(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
InitializeAcl(PACL pAcl, InitializeAcl(PACL pAcl,
DWORD nAclLength, DWORD nAclLength,
DWORD dwAclRevision) DWORD dwAclRevision)
@ -67,7 +67,7 @@ InitializeAcl(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
IsValidAcl(PACL pAcl) IsValidAcl(PACL pAcl)
{ {
return RtlValidAcl (pAcl); return RtlValidAcl (pAcl);
@ -78,7 +78,7 @@ IsValidAcl(PACL pAcl)
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
SetAclInformation(PACL pAcl, SetAclInformation(PACL pAcl,
LPVOID pAclInformation, LPVOID pAclInformation,
DWORD nAclInformationLength, DWORD nAclInformationLength,
@ -106,7 +106,7 @@ SetAclInformation(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAccessAllowedAce(PACL pAcl, AddAccessAllowedAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AccessMask, DWORD AccessMask,
@ -131,7 +131,7 @@ AddAccessAllowedAce(PACL pAcl,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
AddAccessAllowedAceEx(PACL pAcl, AddAccessAllowedAceEx(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AceFlags, DWORD AceFlags,
@ -159,7 +159,7 @@ AddAccessAllowedAceEx(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAccessAllowedObjectAce(PACL pAcl, AddAccessAllowedObjectAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AceFlags, DWORD AceFlags,
@ -191,7 +191,7 @@ AddAccessAllowedObjectAce(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAccessDeniedAce(PACL pAcl, AddAccessDeniedAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AccessMask, DWORD AccessMask,
@ -216,7 +216,7 @@ AddAccessDeniedAce(PACL pAcl,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
AddAccessDeniedAceEx(PACL pAcl, AddAccessDeniedAceEx(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AceFlags, DWORD AceFlags,
@ -244,7 +244,7 @@ AddAccessDeniedAceEx(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAccessDeniedObjectAce(PACL pAcl, AddAccessDeniedObjectAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AceFlags, DWORD AceFlags,
@ -276,7 +276,7 @@ AddAccessDeniedObjectAce(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAce(PACL pAcl, AddAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD dwStartingAceIndex, DWORD dwStartingAceIndex,
@ -304,7 +304,7 @@ AddAce(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAuditAccessAce(PACL pAcl, AddAuditAccessAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD dwAccessMask, DWORD dwAccessMask,
@ -333,7 +333,7 @@ AddAuditAccessAce(PACL pAcl,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
AddAuditAccessAceEx(PACL pAcl, AddAuditAccessAceEx(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AceFlags, DWORD AceFlags,
@ -365,7 +365,7 @@ AddAuditAccessAceEx(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
AddAuditAccessObjectAce(PACL pAcl, AddAuditAccessObjectAce(PACL pAcl,
DWORD dwAceRevision, DWORD dwAceRevision,
DWORD AceFlags, DWORD AceFlags,
@ -430,7 +430,7 @@ AddMandatoryAce(IN OUT PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
DeleteAce(PACL pAcl, DeleteAce(PACL pAcl,
DWORD dwAceIndex) DWORD dwAceIndex)
{ {
@ -452,7 +452,7 @@ DeleteAce(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
FindFirstFreeAce(PACL pAcl, FindFirstFreeAce(PACL pAcl,
LPVOID *pAce) LPVOID *pAce)
{ {
@ -465,7 +465,7 @@ FindFirstFreeAce(PACL pAcl,
* @implemented * @implemented
*/ */
BOOL BOOL
STDCALL WINAPI
GetAce(PACL pAcl, GetAce(PACL pAcl,
DWORD dwAceIndex, DWORD dwAceIndex,
LPVOID *pAce) LPVOID *pAce)
@ -489,7 +489,7 @@ GetAce(PACL pAcl,
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetInheritanceSourceW(LPWSTR pObjectName, GetInheritanceSourceW(LPWSTR pObjectName,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
@ -527,7 +527,7 @@ GetInheritanceSourceW(LPWSTR pObjectName,
* @unimplemented * @unimplemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetInheritanceSourceA(LPSTR pObjectName, GetInheritanceSourceA(LPSTR pObjectName,
SE_OBJECT_TYPE ObjectType, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, SECURITY_INFORMATION SecurityInfo,
@ -549,7 +549,7 @@ GetInheritanceSourceA(LPSTR pObjectName,
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
FreeInheritedFromArray(PINHERITED_FROMW pInheritArray, FreeInheritedFromArray(PINHERITED_FROMW pInheritArray,
USHORT AceCnt, USHORT AceCnt,
PFN_OBJECT_MGR_FUNCTS pfnArray OPTIONAL) PFN_OBJECT_MGR_FUNCTS pfnArray OPTIONAL)
@ -573,7 +573,7 @@ FreeInheritedFromArray(PINHERITED_FROMW pInheritArray,
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
SetEntriesInAclW(ULONG cCountOfExplicitEntries, SetEntriesInAclW(ULONG cCountOfExplicitEntries,
PEXPLICIT_ACCESS_W pListOfExplicitEntries, PEXPLICIT_ACCESS_W pListOfExplicitEntries,
PACL OldAcl, PACL OldAcl,
@ -980,7 +980,7 @@ RawTrusteeCopy:
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
SetEntriesInAclA(ULONG cCountOfExplicitEntries, SetEntriesInAclA(ULONG cCountOfExplicitEntries,
PEXPLICIT_ACCESS_A pListOfExplicitEntries, PEXPLICIT_ACCESS_A pListOfExplicitEntries,
PACL OldAcl, PACL OldAcl,
@ -1013,7 +1013,7 @@ SetEntriesInAclA(ULONG cCountOfExplicitEntries,
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetExplicitEntriesFromAclW(PACL pacl, GetExplicitEntriesFromAclW(PACL pacl,
PULONG pcCountOfExplicitEntries, PULONG pcCountOfExplicitEntries,
PEXPLICIT_ACCESS_W *pListOfExplicitEntries) PEXPLICIT_ACCESS_W *pListOfExplicitEntries)
@ -1037,7 +1037,7 @@ GetExplicitEntriesFromAclW(PACL pacl,
* @unimplemented * @unimplemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetEffectiveRightsFromAclW(IN PACL pacl, GetEffectiveRightsFromAclW(IN PACL pacl,
IN PTRUSTEE_W pTrustee, IN PTRUSTEE_W pTrustee,
OUT PACCESS_MASK pAccessRights) OUT PACCESS_MASK pAccessRights)
@ -1051,7 +1051,7 @@ GetEffectiveRightsFromAclW(IN PACL pacl,
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetEffectiveRightsFromAclA(IN PACL pacl, GetEffectiveRightsFromAclA(IN PACL pacl,
IN PTRUSTEE_A pTrustee, IN PTRUSTEE_A pTrustee,
OUT PACCESS_MASK pAccessRights) OUT PACCESS_MASK pAccessRights)
@ -1081,7 +1081,7 @@ GetEffectiveRightsFromAclA(IN PACL pacl,
* @unimplemented * @unimplemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetAuditedPermissionsFromAclW(IN PACL pacl, GetAuditedPermissionsFromAclW(IN PACL pacl,
IN PTRUSTEE_W pTrustee, IN PTRUSTEE_W pTrustee,
OUT PACCESS_MASK pSuccessfulAuditedRights, OUT PACCESS_MASK pSuccessfulAuditedRights,
@ -1096,7 +1096,7 @@ GetAuditedPermissionsFromAclW(IN PACL pacl,
* @implemented * @implemented
*/ */
DWORD DWORD
STDCALL WINAPI
GetAuditedPermissionsFromAclA(IN PACL pacl, GetAuditedPermissionsFromAclA(IN PACL pacl,
IN PTRUSTEE_A pTrustee, IN PTRUSTEE_A pTrustee,
OUT PACCESS_MASK pSuccessfulAuditedRights, OUT PACCESS_MASK pSuccessfulAuditedRights,

View file

@ -21,7 +21,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(advapi);
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckAndAuditAlarmA(LPCSTR SubsystemName, AccessCheckAndAuditAlarmA(LPCSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
LPSTR ObjectTypeName, LPSTR ObjectTypeName,
@ -87,7 +87,7 @@ AccessCheckAndAuditAlarmA(LPCSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckAndAuditAlarmW(LPCWSTR SubsystemName, AccessCheckAndAuditAlarmW(LPCWSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
LPWSTR ObjectTypeName, LPWSTR ObjectTypeName,
@ -150,7 +150,7 @@ AccessCheckAndAuditAlarmW(LPCWSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectCloseAuditAlarmA(LPCSTR SubsystemName, ObjectCloseAuditAlarmA(LPCSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
BOOL GenerateOnClose) BOOL GenerateOnClose)
@ -183,7 +183,7 @@ ObjectCloseAuditAlarmA(LPCSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectCloseAuditAlarmW(LPCWSTR SubsystemName, ObjectCloseAuditAlarmW(LPCWSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
BOOL GenerateOnClose) BOOL GenerateOnClose)
@ -210,7 +210,7 @@ ObjectCloseAuditAlarmW(LPCWSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectDeleteAuditAlarmA(LPCSTR SubsystemName, ObjectDeleteAuditAlarmA(LPCSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
BOOL GenerateOnClose) BOOL GenerateOnClose)
@ -243,7 +243,7 @@ ObjectDeleteAuditAlarmA(LPCSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectDeleteAuditAlarmW(LPCWSTR SubsystemName, ObjectDeleteAuditAlarmW(LPCWSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
BOOL GenerateOnClose) BOOL GenerateOnClose)
@ -270,7 +270,7 @@ ObjectDeleteAuditAlarmW(LPCWSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectOpenAuditAlarmA(LPCSTR SubsystemName, ObjectOpenAuditAlarmA(LPCSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
LPSTR ObjectTypeName, LPSTR ObjectTypeName,
@ -324,7 +324,7 @@ ObjectOpenAuditAlarmA(LPCSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectOpenAuditAlarmW(LPCWSTR SubsystemName, ObjectOpenAuditAlarmW(LPCWSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
LPWSTR ObjectTypeName, LPWSTR ObjectTypeName,
@ -375,7 +375,7 @@ ObjectOpenAuditAlarmW(LPCWSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectPrivilegeAuditAlarmA(LPCSTR SubsystemName, ObjectPrivilegeAuditAlarmA(LPCSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
HANDLE ClientToken, HANDLE ClientToken,
@ -409,7 +409,7 @@ ObjectPrivilegeAuditAlarmA(LPCSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
ObjectPrivilegeAuditAlarmW(LPCWSTR SubsystemName, ObjectPrivilegeAuditAlarmW(LPCWSTR SubsystemName,
LPVOID HandleId, LPVOID HandleId,
HANDLE ClientToken, HANDLE ClientToken,
@ -442,7 +442,7 @@ ObjectPrivilegeAuditAlarmW(LPCWSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
PrivilegedServiceAuditAlarmA(LPCSTR SubsystemName, PrivilegedServiceAuditAlarmA(LPCSTR SubsystemName,
LPCSTR ServiceName, LPCSTR ServiceName,
HANDLE ClientToken, HANDLE ClientToken,
@ -478,7 +478,7 @@ PrivilegedServiceAuditAlarmA(LPCSTR SubsystemName,
/* /*
* @implemented * @implemented
*/ */
BOOL STDCALL BOOL WINAPI
PrivilegedServiceAuditAlarmW(LPCWSTR SubsystemName, PrivilegedServiceAuditAlarmW(LPCWSTR SubsystemName,
LPCWSTR ServiceName, LPCWSTR ServiceName,
HANDLE ClientToken, HANDLE ClientToken,
@ -512,7 +512,7 @@ PrivilegedServiceAuditAlarmW(LPCWSTR SubsystemName,
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckByTypeResultListAndAuditAlarmByHandleW(IN LPCWSTR SubsystemName, AccessCheckByTypeResultListAndAuditAlarmByHandleW(IN LPCWSTR SubsystemName,
IN LPVOID HandleId, IN LPVOID HandleId,
IN HANDLE ClientToken, IN HANDLE ClientToken,
@ -540,7 +540,7 @@ AccessCheckByTypeResultListAndAuditAlarmByHandleW(IN LPCWSTR SubsystemName,
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckByTypeResultListAndAuditAlarmByHandleA(IN LPCSTR SubsystemName, AccessCheckByTypeResultListAndAuditAlarmByHandleA(IN LPCSTR SubsystemName,
IN LPVOID HandleId, IN LPVOID HandleId,
IN HANDLE ClientToken, IN HANDLE ClientToken,
@ -568,7 +568,7 @@ AccessCheckByTypeResultListAndAuditAlarmByHandleA(IN LPCSTR SubsystemName,
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckByTypeResultListAndAuditAlarmW(IN LPCWSTR SubsystemName, AccessCheckByTypeResultListAndAuditAlarmW(IN LPCWSTR SubsystemName,
IN LPVOID HandleId, IN LPVOID HandleId,
IN LPCWSTR ObjectTypeName, IN LPCWSTR ObjectTypeName,
@ -595,7 +595,7 @@ AccessCheckByTypeResultListAndAuditAlarmW(IN LPCWSTR SubsystemName,
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckByTypeResultListAndAuditAlarmA(IN LPCSTR SubsystemName, AccessCheckByTypeResultListAndAuditAlarmA(IN LPCSTR SubsystemName,
IN LPVOID HandleId, IN LPVOID HandleId,
IN LPCSTR ObjectTypeName, IN LPCSTR ObjectTypeName,
@ -622,7 +622,7 @@ AccessCheckByTypeResultListAndAuditAlarmA(IN LPCSTR SubsystemName,
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckByTypeAndAuditAlarmW(IN LPCWSTR SubsystemName, AccessCheckByTypeAndAuditAlarmW(IN LPCWSTR SubsystemName,
IN LPVOID HandleId, IN LPVOID HandleId,
IN LPCWSTR ObjectTypeName, IN LPCWSTR ObjectTypeName,
@ -649,7 +649,7 @@ AccessCheckByTypeAndAuditAlarmW(IN LPCWSTR SubsystemName,
/* /*
* @unimplemented * @unimplemented
*/ */
BOOL STDCALL BOOL WINAPI
AccessCheckByTypeAndAuditAlarmA(IN LPCSTR SubsystemName, AccessCheckByTypeAndAuditAlarmA(IN LPCSTR SubsystemName,
IN LPVOID HandleId, IN LPVOID HandleId,
IN LPCSTR ObjectTypeName, IN LPCSTR ObjectTypeName,

Some files were not shown because too many files have changed in this diff Show more