diff --git a/examples/dxdemos/d3d8.c b/examples/dxdemos/d3d8.c
index 2ef08a3..c5d65d9 100644
--- a/examples/dxdemos/d3d8.c
+++ b/examples/dxdemos/d3d8.c
@@ -47,8 +47,8 @@ int main() {
d3d8 = MwCreateWidget(MwD3D8Class, NULL, window, (1024 - 800) / 2, (768 - 600) / 2, 800, 600);
- d3d = MwDirectXGetD3D8(d3d8);
- d3ddev = MwDirectXGetD3Dev8(d3d8);
+ d3d = MwD3D8GetD3D(d3d8);
+ d3ddev = MwD3D8GetD3Dev(d3d8);
// create three vertices using the CUSTOMVERTEX struct built earlier
struct CUSTOMVERTEX vertices[] =
diff --git a/examples/dxdemos/d3d9.c b/examples/dxdemos/d3d9.c
index 9fe685c..86186ae 100644
--- a/examples/dxdemos/d3d9.c
+++ b/examples/dxdemos/d3d9.c
@@ -48,8 +48,8 @@ int main() {
d3d8 = MwCreateWidget(MwD3D9Class, NULL, window, (1024 - 800) / 2, (768 - 600) / 2, 800, 600);
- d3d = MwDirectXGetD3D9(d3d8);
- d3ddev = MwDirectXGetD3Dev9(d3d8);
+ d3d = MwD3D9GetD3D(d3d8);
+ d3ddev = MwD3D9GetD3Dev(d3d8);
// create three vertices using the CUSTOMVERTEX struct built earlier
struct CUSTOMVERTEX vertices[] =
diff --git a/include/Mw/Widget/D3D8.h b/include/Mw/Widget/D3D8.h
index ee1bf05..9b0ae6e 100644
--- a/include/Mw/Widget/D3D8.h
+++ b/include/Mw/Widget/D3D8.h
@@ -39,22 +39,22 @@ extern "C" {
#endif
#ifdef MW_DIRECTX8
-MwInline LPDIRECT3D8 MwDirectXGetD3D8(MwWidget handle) {
+MwInline LPDIRECT3D8 MwD3D8GetD3D(MwWidget handle) {
LPDIRECT3D8 out = NULL;
MwVaWidgetExecute(handle, "mwDirectXGetD3D8", &out, NULL);
return out;
};
-MwInline LPDIRECT3DDEVICE8 MwDirectXGetD3Dev8(MwWidget handle) {
+MwInline LPDIRECT3DDEVICE8 MwD3D8GetD3Dev(MwWidget handle) {
LPDIRECT3DDEVICE8 out = NULL;
MwVaWidgetExecute(handle, "mwDirectXGetD3Dev8", &out);
return out;
};
#else
-MwInline void* MwDirectXGetD3D8(MwWidget handle) {
+MwInline void* MwD3D8GetD3D(MwWidget handle) {
(void)handle;
return NULL;
};
-MwInline void* MwDirectXGetD3Dev8(MwWidget handle) {
+MwInline void* MwD3D8GetD3Dev(MwWidget handle) {
(void)handle;
return NULL;
};
diff --git a/include/Mw/Widget/D3D9.h b/include/Mw/Widget/D3D9.h
index e7a7149..3831301 100644
--- a/include/Mw/Widget/D3D9.h
+++ b/include/Mw/Widget/D3D9.h
@@ -38,22 +38,22 @@ extern "C" {
#endif
#ifdef MW_DIRECTX9
-MwInline LPDIRECT3D9 MwDirectXGetD3D9(MwWidget handle) {
+MwInline LPDIRECT3D9 MwD3D9GetD3D(MwWidget handle) {
LPDIRECT3D9 out = NULL;
MwVaWidgetExecute(handle, "mwDirectXGetD3D9", &out, NULL);
return out;
};
-MwInline LPDIRECT3DDEVICE9 MwDirectXGetD3Dev9(MwWidget handle) {
+MwInline LPDIRECT3DDEVICE9 MwD3D9GetD3Dev(MwWidget handle) {
LPDIRECT3DDEVICE9 out = NULL;
MwVaWidgetExecute(handle, "mwDirectXGetD3Dev9", &out);
return out;
};
#else
-MwInline void* MwDirectXGetD3D9(MwWidget handle) {
+MwInline void* MwD3D9GetD3D(MwWidget handle) {
(void)handle;
return NULL;
};
-MwInline void* MwDirectXGetD3Dev9(MwWidget handle) {
+MwInline void* MwD3D9GetD3Dev(MwWidget handle) {
(void)handle;
return NULL;
};
diff --git a/milsko.xml b/milsko.xml
index 5b90410..2ff60c7 100644
--- a/milsko.xml
+++ b/milsko.xml
@@ -1070,10 +1070,34 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+