mirror of https://github.com/roytam1/kmeleon.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
913 B
30 lines
913 B
// stdafx.h : Fichier Include pour les fichiers Include système standard, |
|
// ou les fichiers Include spécifiques aux projets qui sont utilisés fréquemment, |
|
// et sont rarement modifiés |
|
// |
|
|
|
#pragma once |
|
|
|
#define _WIN32_WINNT 0x0500 |
|
#define WIN32_LEAN_AND_MEAN // Exclure les en-têtes Windows rarement utilisés |
|
|
|
#include <windows.h> |
|
#include <stdlib.h> |
|
#define KMELEON_PLUGIN_EXPORTS |
|
#include "kmeleon_plugin.h" |
|
#include "../../app/kmeleonconst.h" |
|
#include "utils.h" |
|
#include "LocalesUtils.h" |
|
#include "strconv.h" |
|
|
|
// This limit to 100 the number of saved session |
|
#define MAX_SAVED_SESSION 100 |
|
|
|
|
|
extern kmeleonPlugin kPlugin; |
|
|
|
std::string itos(int i); |
|
void setIntPref(const char* prefname, int value, bool flush = FALSE); |
|
void setStrPref(const char* prefname, char* value, bool flush = FALSE); |
|
int getIntPref(const char* prefname, int defvalue); |
|
std::string getStrPref(const char* prefname, const char* defvalue);
|
|
|