Author: sserapion
Date: Sun Apr 11 00:34:29 2010
New Revision: 46828
URL:
http://svn.reactos.org/svn/reactos?rev=46828&view=rev
Log:
Conform to no leading underscores directive.
Modified:
branches/ros-amd64-bringup/reactos/lib/sdk/crt/except/amd64/seh.s
branches/ros-amd64-bringup/reactos/lib/sdk/crt/include/internal/wine/cppexcept.h
Modified: branches/ros-amd64-bringup/reactos/lib/sdk/crt/except/amd64/seh.s
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/s…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/sdk/crt/except/amd64/seh.s [iso-8859-1]
(original)
+++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/except/amd64/seh.s [iso-8859-1] Sun Apr
11 00:34:29 2010
@@ -17,40 +17,40 @@
/* GLOBALS *******************************************************************/
-.globl __global_unwind2
-.globl __local_unwind2
-.globl __abnormal_termination
-.globl __except_handler2
-.globl __except_handler3
+.globl _global_unwind2
+.globl _local_unwind2
+.globl _abnormal_termination
+.globl _except_handler2
+.globl _except_handler3
/* FUNCTIONS *****************************************************************/
-.func unwind_handler
+.func _unwind_handler
_unwind_handler:
ret
.endfunc
.func _global_unwind2
-__global_unwind2:
+_global_unwind2:
ret
.endfunc
.func _abnormal_termination
-__abnormal_termination:
+_abnormal_termination:
ret
.endfunc
.func _local_unwind2
-__local_unwind2:
+_local_unwind2:
ret
.endfunc
.func _except_handler2
-__except_handler2:
+_except_handler2:
ret
.endfunc
.func _except_handler3
-__except_handler3:
+_except_handler3:
ret
.endfunc
Modified:
branches/ros-amd64-bringup/reactos/lib/sdk/crt/include/internal/wine/cppexcept.h
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/s…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/sdk/crt/include/internal/wine/cppexcept.h
[iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/include/internal/wine/cppexcept.h
[iso-8859-1] Sun Apr 11 00:34:29 2010
@@ -26,7 +26,12 @@
/* Macros to define assembler functions somewhat portably */
#define __ASM_FUNC(name) ".def " __ASM_NAME(name) "; .scl 2; .type 32;
.endef"
+
+#ifdef _M_AMD64
+#define __ASM_NAME(name) name
+#else
#define __ASM_NAME(name) "_" name
+#endif
#ifdef __GNUC__
# define __ASM_GLOBAL_FUNC(name,code) \