 |
CeWriteFile ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
This function writes data to a file on remote Windows CE device. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL CeWriteFile(
HANDLE hFile,
LPCVOID lpBuffer,
DWORD nNumberOfBytesToWrite,
LPDWORD lpNumberOfBytesWritten,
LPOVERLAPPED lpOverlapped
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER CeWriteFile IN rapi;
INTEGER hFile,;
STRING @ lpBuffer,;
INTEGER nBytesToWrite,;
INTEGER @ lpBytesWritten,;
INTEGER lpOverlapped
|
 |
 |
 |
| Parameters: |
 |
hFile
[in] Handle to the file to be written to. The file handle must have been created with GENERIC_WRITE access to the file.
lpBuffer
[in] Pointer to the buffer containing the data to be written to the file.
nNumberOfBytesToWrite
[in] Number of bytes to write to the file.
lpNumberOfBytesWritten
[out] Pointer to the number of bytes written by this function call.
lpOverlapped
[in] Unsupported; set to NULL.
|
 |
 |
| Return value: |
 |
| Nonzero indicates success. |
 |
 |
| My comment: |
 |
| See also CeSetFilePointer, CeReadFile and CeCloseHandle functions. |
 |
 |
| Word Index links for the CeWriteFile : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2004-08-21 15:49:35 | | Modified: | 2004-08-21 15:53:26 | Visited in last 7 days: 17 |