17 lines
404 B
C
17 lines
404 B
C
/************************************************************//**
|
|
*
|
|
* @file: wgl_surface.c
|
|
* @author: Martin Fouilleul
|
|
* @date: 28/01/2023
|
|
* @revision:
|
|
*
|
|
*****************************************************************/
|
|
#ifndef __WGL_SURFACE_H_
|
|
#define __WGL_SURFACE_H_
|
|
|
|
#include"graphics_surface.h"
|
|
|
|
mg_surface_data* mg_wgl_surface_create_for_window(mp_window window);
|
|
|
|
#endif // __WIN32_GL_SURFACE_H_
|