Eric Pouech : powrprof: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Thu Feb 17 15:33:57 CST 2022


Module: wine
Branch: master
Commit: 790b09406670358b023b86a7117e48e6ee308c64
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=790b09406670358b023b86a7117e48e6ee308c64

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Feb 17 07:10:49 2022 +0100

powrprof: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/powrprof/Makefile.in |  1 -
 dlls/powrprof/powrprof.c  | 18 +++++++++---------
 2 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/dlls/powrprof/Makefile.in b/dlls/powrprof/Makefile.in
index b2e59f6032f..e51fc62e7c0 100644
--- a/dlls/powrprof/Makefile.in
+++ b/dlls/powrprof/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = powrprof.dll
 IMPORTLIB = powrprof
 IMPORTS   = advapi32
diff --git a/dlls/powrprof/powrprof.c b/dlls/powrprof/powrprof.c
index 0fd20b9f29b..c4af8ab9ce1 100644
--- a/dlls/powrprof/powrprof.c
+++ b/dlls/powrprof/powrprof.c
@@ -68,7 +68,7 @@ BOOLEAN WINAPI CanUserWritePwrScheme(VOID)
    r = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szPowerCfgSubKey, 0, KEY_READ | KEY_WRITE, &hKey);
 
    if (r != ERROR_SUCCESS) {
-      TRACE("RegOpenKeyEx failed: %d\n", r);
+      TRACE("RegOpenKeyEx failed: %ld\n", r);
       bSuccess = FALSE;
    }
 
@@ -89,7 +89,7 @@ BOOLEAN WINAPI EnumPwrSchemes(PWRSCHEMESENUMPROC lpfnPwrSchemesEnumProc,
 			LPARAM lParam)
 {
    /* FIXME: See note #1 */
-   FIXME("(%p, %ld) stub!\n", lpfnPwrSchemesEnumProc, lParam);
+   FIXME("(%p, %Id) stub!\n", lpfnPwrSchemesEnumProc, lParam);
    SetLastError(ERROR_FILE_NOT_FOUND);
    return FALSE;
 }
@@ -151,7 +151,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
 
    r = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szPowerCfgSubKey, 0, KEY_READ, &hKey);
    if (r != ERROR_SUCCESS) {
-      TRACE("RegOpenKeyEx failed: %d\n", r);
+      TRACE("RegOpenKeyEx failed: %ld\n", r);
       TRACE("Using defaults: 3600, 3\n");
       *RangeMax = 3600;
       *RangeMin = 3;
@@ -161,7 +161,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
 
    r = RegQueryValueExW(hKey, L"DiskSpindownMax", 0, 0, lpValue, &cbValue);
    if (r != ERROR_SUCCESS) {
-      TRACE("Couldn't open DiskSpinDownMax: %d\n", r);
+      TRACE("Couldn't open DiskSpinDownMax: %ld\n", r);
       TRACE("Using default: 3600\n");
       *RangeMax = 3600;
    } else {
@@ -172,7 +172,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
 
    r = RegQueryValueExW(hKey, L"DiskSpindownMin", 0, 0, lpValue, &cbValue);
    if (r != ERROR_SUCCESS) {
-      TRACE("Couldn't open DiskSpinDownMin: %d\n", r);
+      TRACE("Couldn't open DiskSpinDownMin: %ld\n", r);
       TRACE("Using default: 3\n");
       *RangeMin = 3;
    } else {
@@ -318,21 +318,21 @@ POWER_PLATFORM_ROLE WINAPI PowerDeterminePlatformRole(void)
 
 POWER_PLATFORM_ROLE WINAPI PowerDeterminePlatformRoleEx(ULONG version)
 {
-    FIXME("%u stub.\n", version);
+    FIXME("%lu stub.\n", version);
     return PlatformRoleDesktop;
 }
 
 DWORD WINAPI PowerEnumerate(HKEY key, const GUID *scheme, const GUID *subgroup, POWER_DATA_ACCESSOR flags,
                         ULONG index, UCHAR *buffer, DWORD *buffer_size)
 {
-   FIXME("(%p,%s,%s,%d,%d,%p,%p) stub!\n", key, debugstr_guid(scheme), debugstr_guid(subgroup),
+   FIXME("(%p,%s,%s,%d,%ld,%p,%p) stub!\n", key, debugstr_guid(scheme), debugstr_guid(subgroup),
                 flags, index, buffer, buffer_size);
    return ERROR_CALL_NOT_IMPLEMENTED;
 }
 
 DWORD WINAPI PowerRegisterSuspendResumeNotification(DWORD flags, HANDLE recipient, PHPOWERNOTIFY handle)
 {
-    FIXME("(0x%08x,%p,%p) stub!\n", flags, recipient, handle);
+    FIXME("(0x%08lx,%p,%p) stub!\n", flags, recipient, handle);
     return ERROR_SUCCESS;
 }
 
@@ -362,7 +362,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 
          PPRegSemaphore = CreateSemaphoreW(NULL, 1, 1, L"PowerProfileRegistrySemaphore");
          if (PPRegSemaphore == NULL) {
-            ERR("Couldn't create Semaphore: %d\n", GetLastError());
+            ERR("Couldn't create Semaphore: %ld\n", GetLastError());
             return FALSE;
          }
          break;




More information about the wine-cvs mailing list