Mercurial > hg > xemacs-beta
diff src/process-nt.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | 373ced43e288 |
children | fdefd0186b75 |
line wrap: on
line diff
--- a/src/process-nt.c Wed Aug 08 12:15:04 2001 +0000 +++ b/src/process-nt.c Mon Aug 13 04:46:48 2001 +0000 @@ -117,7 +117,7 @@ */ static int -alloc_process_memory (HANDLE h_process, size_t size, +alloc_process_memory (HANDLE h_process, Memory_Count size, process_memory* pmc) { LPTHREAD_START_ROUTINE adr_ExitThread = @@ -189,12 +189,12 @@ static DWORD run_in_other_process (HANDLE h_process, LPTHREAD_START_ROUTINE routine, - LPVOID data, size_t data_size) + LPVOID data, Memory_Count data_size) { process_memory pm; - const size_t code_size = FRAGMENT_CODE_SIZE; + const Memory_Count code_size = FRAGMENT_CODE_SIZE; /* Need at most 3 extra bytes of memory, for data alignment */ - size_t total_size = code_size + data_size + 3; + Memory_Count total_size = code_size + data_size + 3; LPVOID remote_data; HANDLE h_thread; DWORD dw_unused; @@ -1058,7 +1058,7 @@ while (1) { - Lstream_data_count writeret; + Lstream_Data_Count writeret; chunklen = Lstream_read (lstream, chunkbuf, 512); if (chunklen <= 0)