summaryrefslogtreecommitdiff
path: root/thirdparty/openssl/uwp.cpp
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2016-11-02 19:22:49 -0200
committerGeorge Marques <george@gmarqu.es>2016-11-03 14:51:08 -0200
commit411faaa6f478f837aa40893eaadf67e2b5d57cec (patch)
treed75d928bb9d244edd7b33f04c8ad31e840802bfe /thirdparty/openssl/uwp.cpp
parentb113c7b7a3e63581ae268b0ae7f827d55e381b82 (diff)
Rename remaining WinRT references to UWP
Diffstat (limited to 'thirdparty/openssl/uwp.cpp')
-rw-r--r--thirdparty/openssl/uwp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/openssl/uwp.cpp b/thirdparty/openssl/uwp.cpp
index 6bb0c22523..dcfd22b77f 100644
--- a/thirdparty/openssl/uwp.cpp
+++ b/thirdparty/openssl/uwp.cpp
@@ -1,7 +1,7 @@
/* Snippets extracted from https://github.com/Microsoft/openssl/blob/ec7e430e06e4e3ac87c183dee33cb216814cf980/ms/winrt.cpp
* Adapted for Godot definitions
*/
-/* winrt.cpp
+/* uwp.cpp
* Copyright 2014 Microsoft Corporation
* C++/CX Entropy/shims for Windows Phone/Windows Store platform
* written by Alejandro Jimenez Martinez
@@ -144,7 +144,7 @@ extern "C"
{
return 0;
}
- int winrt_GetTickCount(void)
+ int uwp_GetTickCount(void)
{
LARGE_INTEGER t;
return(int) (QueryPerformanceCounter(&t) ? t.QuadPart : 0);