summaryrefslogtreecommitdiff
path: root/ext/w32api/w32api.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-04-29 12:59:26 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-04-29 12:59:26 +0000
commite81addb5ca39d1801e9a181df7a9311154bb3bcb (patch)
tree531e71f85eaf2ab62fcd796018453539c1f12048 /ext/w32api/w32api.c
parent4b4fae6aa42a2c182648b9c6a452f4be036fed53 (diff)
downloadphp-git-e81addb5ca39d1801e9a181df7a9311154bb3bcb.tar.gz
C++ comments.
Diffstat (limited to 'ext/w32api/w32api.c')
-rw-r--r--ext/w32api/w32api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/w32api/w32api.c b/ext/w32api/w32api.c
index c3ddb30f9d..4dc52a86f5 100644
--- a/ext/w32api/w32api.c
+++ b/ext/w32api/w32api.c
@@ -819,7 +819,7 @@ static int php_w32api_load_library (char *library_name, w32api_lib_handle **lh T
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
+ MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), /* Default language */
(LPTSTR)&message_buffer,
0,
NULL);
@@ -1162,8 +1162,8 @@ w32api_result php_w32api_do_dynamic_dll_call(w32api_func_handle *fh, int argc, w
int size = 0, i = 0;
FARPROC fp = fh->handle;
- _asm mov stack_pointer, esp // Store stack pointer (esp) in stack_pointer
- _asm sub esp, 0x100 // Give ourselves 256 bytes on the stack
+ _asm mov stack_pointer, esp /* Store stack pointer (esp) in stack_pointer */
+ _asm sub esp, 0x100 /* Give ourselves 256 bytes on the stack */
for(i = (argc - 1); i >= 0; i--)