Merge pull request #2523 from Nexarian/cpitstick/xrdp_h_fix

Adding define guards to xrdp.h
This commit is contained in:
Nexarian 2023-01-30 19:54:22 -05:00 committed by GitHub
commit e119e0f257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,9 @@
* main include file
*/
#ifndef _XRDP_XRDP_H_
#define _XRDP_XRDP_H_
/* include other h files */
#include "arch.h"
#include "parse.h"
@ -595,3 +598,4 @@ server_add_char_alpha(struct xrdp_mod *mod, int font, int character,
int
server_session_info(struct xrdp_mod *mod, const char *data, int data_bytes);
#endif