Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
891d7629
Commit
891d7629
authored
Sep 17, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Mark internal symbols hidden.
parent
dbc4dfc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
d3d10_private.h
dlls/d3d10/d3d10_private.h
+8
-8
No files found.
dlls/d3d10/d3d10_private.h
View file @
891d7629
...
...
@@ -30,13 +30,13 @@
#include "d3d10.h"
/* TRACE helper functions */
const
char
*
debug_d3d10_driver_type
(
D3D10_DRIVER_TYPE
driver_type
);
const
char
*
debug_d3d10_shader_variable_class
(
D3D10_SHADER_VARIABLE_CLASS
c
);
const
char
*
debug_d3d10_shader_variable_type
(
D3D10_SHADER_VARIABLE_TYPE
t
);
const
char
*
debug_d3d10_driver_type
(
D3D10_DRIVER_TYPE
driver_type
)
DECLSPEC_HIDDEN
;
const
char
*
debug_d3d10_shader_variable_class
(
D3D10_SHADER_VARIABLE_CLASS
c
)
DECLSPEC_HIDDEN
;
const
char
*
debug_d3d10_shader_variable_type
(
D3D10_SHADER_VARIABLE_TYPE
t
)
DECLSPEC_HIDDEN
;
void
*
d3d10_rb_alloc
(
size_t
size
);
void
*
d3d10_rb_realloc
(
void
*
ptr
,
size_t
size
);
void
d3d10_rb_free
(
void
*
ptr
);
void
*
d3d10_rb_alloc
(
size_t
size
)
DECLSPEC_HIDDEN
;
void
*
d3d10_rb_realloc
(
void
*
ptr
,
size_t
size
)
DECLSPEC_HIDDEN
;
void
d3d10_rb_free
(
void
*
ptr
)
DECLSPEC_HIDDEN
;
enum
d3d10_effect_object_type
{
...
...
@@ -143,7 +143,7 @@ struct d3d10_effect_technique
};
/* ID3D10Effect */
extern
const
struct
ID3D10EffectVtbl
d3d10_effect_vtbl
;
extern
const
struct
ID3D10EffectVtbl
d3d10_effect_vtbl
DECLSPEC_HIDDEN
;
struct
d3d10_effect
{
const
struct
ID3D10EffectVtbl
*
vtbl
;
...
...
@@ -173,7 +173,7 @@ struct d3d10_effect
struct
d3d10_effect_technique
*
techniques
;
};
HRESULT
d3d10_effect_parse
(
struct
d3d10_effect
*
This
,
const
void
*
data
,
SIZE_T
data_size
);
HRESULT
d3d10_effect_parse
(
struct
d3d10_effect
*
This
,
const
void
*
data
,
SIZE_T
data_size
)
DECLSPEC_HIDDEN
;
/* D3D10Core */
HRESULT
WINAPI
D3D10CoreCreateDevice
(
IDXGIFactory
*
factory
,
IDXGIAdapter
*
adapter
,
...
...
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