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
f65705df
Commit
f65705df
authored
Jul 12, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx10_43: Remove DECLSPEC_HIDDEN usage.
parent
8f360d74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
dxhelpers.h
dlls/d3dx10_43/dxhelpers.h
+7
-7
No files found.
dlls/d3dx10_43/dxhelpers.h
View file @
f65705df
...
...
@@ -16,18 +16,18 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
extern
HRESULT
load_file
(
const
WCHAR
*
path
,
void
**
data
,
DWORD
*
size
)
DECLSPEC_HIDDEN
;
extern
HRESULT
load_file
(
const
WCHAR
*
path
,
void
**
data
,
DWORD
*
size
);
extern
HRESULT
load_resourceA
(
HMODULE
module
,
const
char
*
resource
,
void
**
data
,
DWORD
*
size
)
DECLSPEC_HIDDEN
;
void
**
data
,
DWORD
*
size
);
extern
HRESULT
load_resourceW
(
HMODULE
module
,
const
WCHAR
*
resource
,
void
**
data
,
DWORD
*
size
)
DECLSPEC_HIDDEN
;
void
**
data
,
DWORD
*
size
);
extern
HRESULT
get_image_info
(
const
void
*
data
,
SIZE_T
size
,
D3DX10_IMAGE_INFO
*
img_info
)
DECLSPEC_HIDDEN
;
extern
HRESULT
get_image_info
(
const
void
*
data
,
SIZE_T
size
,
D3DX10_IMAGE_INFO
*
img_info
);
extern
void
init_load_info
(
const
D3DX10_IMAGE_LOAD_INFO
*
load_info
,
D3DX10_IMAGE_LOAD_INFO
*
out
)
DECLSPEC_HIDDEN
;
D3DX10_IMAGE_LOAD_INFO
*
out
);
/* Returns array of D3D10_SUBRESOURCE_DATA structures followed by textures data. */
extern
HRESULT
load_texture_data
(
const
void
*
data
,
SIZE_T
size
,
D3DX10_IMAGE_LOAD_INFO
*
load_info
,
D3D10_SUBRESOURCE_DATA
**
resource_data
)
DECLSPEC_HIDDEN
;
D3D10_SUBRESOURCE_DATA
**
resource_data
);
extern
HRESULT
create_d3d_texture
(
ID3D10Device
*
device
,
D3DX10_IMAGE_LOAD_INFO
*
load_info
,
D3D10_SUBRESOURCE_DATA
*
resource_data
,
ID3D10Resource
**
texture
)
DECLSPEC_HIDDEN
;
D3D10_SUBRESOURCE_DATA
*
resource_data
,
ID3D10Resource
**
texture
);
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