Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9ec9c2b1
Commit
9ec9c2b1
authored
Mar 05, 2001
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 05, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented SetFileApisToOEM, SetFileApisToANSI and AreFileApisANSI.
parent
496f434c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
33 deletions
+31
-33
process.c
scheduler/process.c
+31
-0
file.c
win32/file.c
+0
-33
No files found.
scheduler/process.c
View file @
9ec9c2b1
...
...
@@ -1421,6 +1421,37 @@ UINT WINAPI SetErrorMode( UINT mode )
}
/**************************************************************************
* SetFileApisToOEM (KERNEL32.@)
*/
VOID
WINAPI
SetFileApisToOEM
(
void
)
{
current_process
.
flags
|=
PDB32_FILE_APIS_OEM
;
}
/**************************************************************************
* SetFileApisToANSI (KERNEL32.@)
*/
VOID
WINAPI
SetFileApisToANSI
(
void
)
{
current_process
.
flags
&=
~
PDB32_FILE_APIS_OEM
;
}
/******************************************************************************
* AreFileApisANSI [KERNEL32.@] Determines if file functions are using ANSI
*
* RETURNS
* TRUE: Set of file functions is using ANSI code page
* FALSE: Set of file functions is using OEM code page
*/
BOOL
WINAPI
AreFileApisANSI
(
void
)
{
return
!
(
current_process
.
flags
&
PDB32_FILE_APIS_OEM
);
}
/**********************************************************************
* TlsAlloc [KERNEL32.@] Allocates a TLS index.
*
...
...
win32/file.c
View file @
9ec9c2b1
...
...
@@ -119,36 +119,3 @@ BOOL WINAPI SetFileAttributesW(LPCWSTR lpFileName, DWORD attributes)
HeapFree
(
GetProcessHeap
(),
0
,
afn
);
return
res
;
}
/**************************************************************************
* SetFileApisToOEM (KERNEL32.645)
*/
VOID
WINAPI
SetFileApisToOEM
(
void
)
{
/*FIXME(file,"(): stub!\n");*/
}
/**************************************************************************
* SetFileApisToANSI (KERNEL32.644)
*/
VOID
WINAPI
SetFileApisToANSI
(
void
)
{
/*FIXME(file,"(): stub\n");*/
}
/******************************************************************************
* AreFileApisANSI [KERNEL32.@] Determines if file functions are using ANSI
*
* RETURNS
* TRUE: Set of file functions is using ANSI code page
* FALSE: Set of file functions is using OEM code page
*/
BOOL
WINAPI
AreFileApisANSI
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
TRUE
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment